Commit 4b409753 authored by Randall Leeds's avatar Randall Leeds

Use variables for hover styles in inject

parent 98e5b736
...@@ -9,7 +9,7 @@ $base-font-size: 14px; ...@@ -9,7 +9,7 @@ $base-font-size: 14px;
//ADDER//////////////////////////////// //ADDER////////////////////////////////
.annotator-adder { .annotator-adder {
$border: $gray; $border: $gray;
$hoverborder: $gray-dark; $border-hover: $gray-dark;
@include box-sizing(border-box); @include box-sizing(border-box);
direction: ltr; direction: ltr;
height: 35px; height: 35px;
...@@ -53,19 +53,13 @@ $base-font-size: 14px; ...@@ -53,19 +53,13 @@ $base-font-size: 14px;
background: $white !important; background: $white !important;
color: $gray-light !important; color: $gray-light !important;
&.h-icon-mode-comment, &.h-icon-border-color { &:hover {
&:hover { color: $border-hover !important;
color: $gray-dark !important;
}
} }
} }
&:hover { &:hover, &:before:hover {
border-color: $hoverborder; border-color: $border-hover;
&:before {
border-color: $hoverborder;
}
} }
} }
......
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