Merge pull request #3736 from overleaf/ab-review-icon-light

Invert review icon color when selected

GitOrigin-RevId: e6e0d76c969d52e1632ea486042c353a0c77d0b4
This commit is contained in:
Alexandre Bourdin 2021-03-10 10:21:03 +01:00 committed by Copybot
parent 9415a1dd8d
commit cb19041b7f

View file

@ -950,9 +950,19 @@
}
}
.review-icon when (@is-overleaf-light = true) {
background: url('/img/ol-icons/review-icon-light-theme.svg') top/30px
no-repeat;
a when (@is-overleaf-light = true) {
.review-icon {
background: url('/img/ol-icons/review-icon-light-theme.svg') top/30px
no-repeat;
}
&.active,
&:active {
.review-icon {
background: url('/img/ol-icons/review-icon-dark-theme.svg') top/30px
no-repeat;
}
}
}
.resolved-comments-toggle {