mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add colors to LESS file.
This commit is contained in:
parent
6d7f4e9e6a
commit
74ddd33bd9
1 changed files with 21 additions and 4 deletions
|
@ -1,4 +1,20 @@
|
||||||
@review-panel-width: 230px;
|
@rp-bg-blue : #dadfed;
|
||||||
|
@rp-bg-dim-blue : #fafafa;
|
||||||
|
@rp-highlight-blue : #8a96b5;
|
||||||
|
|
||||||
|
@rp-border-grey : #d9d9d9;
|
||||||
|
|
||||||
|
@rp-green : #2c8e30;
|
||||||
|
@rp-dim-green : #cae3cb;
|
||||||
|
@rp-red : #c5060b;
|
||||||
|
@rp-dim-red : #f3cdce;
|
||||||
|
@rp-yellow : #f3b111;
|
||||||
|
@rp-dim-yellow : #ffe9b2;
|
||||||
|
|
||||||
|
@rp-type-blue : #6b7797;
|
||||||
|
@rp-type-darkgrey : #3f3f3f;
|
||||||
|
|
||||||
|
@review-panel-width : 230px;
|
||||||
|
|
||||||
#review-panel {
|
#review-panel {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -6,7 +22,8 @@
|
||||||
top: 0px;
|
top: 0px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
background-color: #eee;
|
background-color: @rp-bg-blue;
|
||||||
|
border-left: solid 1px @rp-border-grey;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -14,8 +31,8 @@
|
||||||
.review-panel-toolbar {
|
.review-panel-toolbar {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
border-bottom: 1px solid grey;
|
border-bottom: 1px solid @rp-border-grey;
|
||||||
background-color: #eee;
|
background-color: @rp-bg-dim-blue;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
Loading…
Reference in a new issue