diff options
author | Surinna Curtis <ekiru.0@gmail.com> | 2017-07-01 21:51:28 -0500 |
---|---|---|
committer | Gô Shoemake <marrus-sh@users.noreply.github.com> | 2017-07-04 21:33:53 -0700 |
commit | cb7f54891f8a531180fc849a13b9069c138c3bb7 (patch) | |
tree | 62fed2a6b575eb5cf230af7df343d18740a96fc6 /app | |
parent | f6ce1a9592d265fd3ccdf761fa918b161413c33b (diff) |
Revert "change active/hover display on advanced options"
This reverts commit ade773cb0a8c0c4b862074f7ee8e607023bc8bbe.
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/components.scss | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index ddf214ed2..c9d5a2841 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -2897,18 +2897,11 @@ button.icon-button.active i.fa-retweet { padding: 10px; cursor: pointer; display: flex; - border-style: solid; - border-color: $simple-background-color; - border-width: 5px; - - &:hover { - border-color: $ui-highlight-color; - } + &:hover, &.active { background: $ui-highlight-color; color: $primary-text-color; - border-color: $ui-highlight-color; .advanced-options-dropdown__option__content { color: $primary-text-color; @@ -2920,7 +2913,7 @@ button.icon-button.active i.fa-retweet { } &.active:hover { - border-color: $simple-background-color; + background: lighten($ui-highlight-color, 4%); } } |