diff options
author | Henri Sara <hesara@vaadin.com> | 2014-06-30 09:17:50 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2014-06-30 09:17:50 +0300 |
commit | be0fd9bd74dfe597980017ac2174cb0027960527 (patch) | |
tree | ff56f51e0fa08bfe16c0b502ebf0de4e5030dd58 /WebContent/VAADIN/themes/valo/components/_tabsheet.scss | |
parent | cb13502c2255bf3435a9b144b59a0e7f76cd92f1 (diff) | |
download | vaadin-framework-be0fd9bd74dfe597980017ac2174cb0027960527.tar.gz vaadin-framework-be0fd9bd74dfe597980017ac2174cb0027960527.zip |
Fix !important handling in opacity mixin
This change makes the mixin opacity() compatible with both the
sass-lang implementation and our compiler.
Change-Id: I29923cb3cf6d876fcf39696608fe3a5e3222374d
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_tabsheet.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_tabsheet.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_tabsheet.scss b/WebContent/VAADIN/themes/valo/components/_tabsheet.scss index 3b7687bc8d..2e28174fa7 100644 --- a/WebContent/VAADIN/themes/valo/components/_tabsheet.scss +++ b/WebContent/VAADIN/themes/valo/components/_tabsheet.scss @@ -311,7 +311,7 @@ $v-tabsheet-content-animation-enabled: $v-animations-enabled !default; [class*="disabled"] { cursor: default; color: inherit !important; - @include opacity(.1 !important); + @include opacity(.1, true); } } |