diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-11-04 15:42:02 -0200 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-11-04 15:42:13 -0200 |
commit | 4be8c5dbb1a84058dc8f411783dd5decda3ff2a2 (patch) | |
tree | 377d8ffb2474d6ac3ef945431c911bfc6c6beac2 | |
parent | 1b34317dcdc39b779e6506b1ad4e51ea4365bf7f (diff) |
#504 - Adding element focus using 'important' while we figure out why there's an inline style being added to recipients-input elements
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index f29b92ee..17067263 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -268,13 +268,13 @@ } } } - } -} - - input.recipients-input:focus { - background: #fafafa !important; + input.recipients-input:focus { + background-color: #fafafa !important; border-color: #999999; outline: none; } + } +} + @include tt-hint; |