Skip to content

Commit

Permalink
Merge pull request #709 from rfcx/bug/CE-1004-arbimon-spectrograms-ar…
Browse files Browse the repository at this point in the history
…e-pixilated-in-safari

CE-1004 Fixed issue with pixelated ROI boxes in Safari browser
  • Loading branch information
rassokhina-e authored Jul 22, 2021
2 parents 72b7e1a + dd04857 commit f49ed71
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Resolved issues:

- CE-1160 The opacity of PM' results is decreased on the Visualizer page

Resolved issues:

- CE-1004 Fixed issue with pixelated ROI boxes in Safari browser

## v3.0.31 - July 14, 2021

New features:
Expand Down
2 changes: 2 additions & 0 deletions TEST_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Test Notes are used to list what pages / components / features / user flows are
- CNN list page: all data is still shown correctly and table loads quickly
- CE-1069 CNN job details loads quicker
- CNN details page: all data is still shown correctly and default filter works quicker
- CE-1004 Fixed issue with pixelated ROI boxes in Safari browser
- PM details page: all boxes are not pixelated in Safari browser
- CE-1046 The synchronization to work in transactions between Arbimon and RFCx is updated
- Projects page/Sites page: When the user creates/edits/deleted a new project/site and the issue (authentication, validation issues, etc) is happened it is not add/change the db data in the Arbimon/Core API side.
- Test that user is still able to create / update / delete projects and create / update / delete sites.
Expand Down
11 changes: 10 additions & 1 deletion assets/less/a2-components/audiodata.less
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@
}

.roi-img {
image-rendering: -webkit-optimize-contrast;
width:125px;
height:125px;
margin:2px;
Expand All @@ -211,6 +210,16 @@
}
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
.roi-img {
image-rendering: -webkit-optimize-contrast;
}
_::-webkit-full-page-media, _:future, :root, .roi-img {
image-rendering: optimizeQuality; // Safari
}
}


.roi-img-cnn {
height: 125px;
width: 242px; //todo, make dynamic
Expand Down

0 comments on commit f49ed71

Please sign in to comment.