diff options
| -rw-r--r-- | web-ui/app/scss/mixins/_tags.scss | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/web-ui/app/scss/mixins/_tags.scss b/web-ui/app/scss/mixins/_tags.scss index 44a939bc..15fca61e 100644 --- a/web-ui/app/scss/mixins/_tags.scss +++ b/web-ui/app/scss/mixins/_tags.scss @@ -51,13 +51,8 @@ $tags-font-size: 0.6rem;      }      &-name-input { -        opacity: 0.6;          transition: background-color 150ms ease-out; -        &:hover { -            opacity: 1; -        } -          // twitter typeahead classes. those are set via JS, with relatively high specificity,          // hence box-model-related properties are repeated          // https://github.com/twitter/typeahead.js/blob/master/doc/jquery_typeahead.md#class-names @@ -67,10 +62,15 @@ $tags-font-size: 0.6rem;          $input-field-margin: 2px;          & * .tt-input { +            opacity: 0.6;              border-radius: $input-field-margin;              padding: $input-field-padding;              margin: 2px 0;              font-size: $tags-font-size; + +          &:hover { +              opacity: 1; +          }          }          & * .tt-hint { | 
