mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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:
commit
1d927e5eb1
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue