summaryrefslogtreecommitdiff
path: root/web-ui/app/scss
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2016-12-14 17:21:14 -0200
committerAnike Arni <aarni@thoughtworks.com>2016-12-14 17:21:14 -0200
commit92e3f76033d9bca2c91a56fa66b0e12a17d81fc4 (patch)
tree44afe84145189f87b2fce452164d5a7630205830 /web-ui/app/scss
parentecd5eb22ba5ec653e2ebbbd0656e612694899d47 (diff)
[#845] Removes transparency from tag suggestions
With @thaissiqueira.
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r--web-ui/app/scss/mixins/_tags.scss10
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 {