Commit f9be7a03 authored by Randall Leeds's avatar Randall Leeds

make highlight color a variable

parent 0daf8cb5
...@@ -71,6 +71,7 @@ $negative: #d11c2b; ...@@ -71,6 +71,7 @@ $negative: #d11c2b;
$neutral: #0171ba; $neutral: #0171ba;
//OTHER VARIABLES //OTHER VARIABLES
$highlightColor: rgba(201, 215, 241, .5);
$thread-padding: 1em; $thread-padding: 1em;
$threadexp-width: 10px; $threadexp-width: 10px;
$score-width: 40px; $score-width: 40px;
......
...@@ -75,18 +75,18 @@ ...@@ -75,18 +75,18 @@
} }
.annotator-hl-active, .annotator-hl-temporary { .annotator-hl-active, .annotator-hl-temporary {
background: #c9d7f1; background: $highlightColor;
color: black; color: black;
&::-moz-selection { &::-moz-selection {
background: #c9d7f1; background: $highlightColor;
color: black; color: black;
} }
&::-moz-selection, &::-moz-window-inactive, &::window-inactive { &::-moz-selection, &::-moz-window-inactive, &::window-inactive {
background: #c9d7f1; background: $highlightColor;
color: black; color: black;
} }
&::selection, &::selection:window-inactive { &::selection, &::selection:window-inactive {
background: #c9d7f1; background: $highlightColor;
color: black; color: black;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment