Merge pull request #454 from sharelatex/ja-show-overlapping-ranges

Add opacity to comment and insert ranges so they can be seen overlapping
This commit is contained in:
James Allen 2017-03-20 13:50:06 +00:00 committed by GitHub
commit 1d927e5eb1

View file

@ -9,13 +9,10 @@
@rp-border-grey : #d9d9d9;
@rp-green : #2c8e30;
@rp-dim-green : #cae3cb;
@rp-green-on-dark : rgba(37, 107, 41, 0.5);
@rp-red : #c5060b;
@rp-dim-red : #f3cdce;
@rp-yellow : #f3b111;
@rp-yellow-on-dark : rgba(194, 93, 11, 0.5);
@rp-dim-yellow : #ffe9b2;
@rp-grey : #aaaaaa;
@rp-type-blue : #6b7797;
@ -748,13 +745,16 @@
.rp-loading-threads & {
display: none;
}
z-index: 6 // Appear above text selection
}
.track-changes-comment-marker {
background-color: @rp-dim-yellow;
background-color: @rp-yellow;
opacity: 0.3;
}
.track-changes-added-marker {
background-color: @rp-dim-green;
background-color: @rp-green;
opacity: 0.3;
}
.track-changes-deleted-marker {
border-left: 2px dotted @rp-red;