diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-23 14:16:02 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-12-09 12:15:10 +0200 |
commit | f6ff9172302d89fedd96ce3506a6e1739af5ff6c (patch) | |
tree | bab657b4f95d69610da2bf31a7bf18cc902b261b /WebContent | |
parent | 0cdaf28d282134413910971cdeb7ed71cacdc6e3 (diff) | |
download | vaadin-framework-f6ff9172302d89fedd96ce3506a6e1739af5ff6c.tar.gz vaadin-framework-f6ff9172302d89fedd96ce3506a6e1739af5ff6c.zip |
Fix opacity for disabled links in Valo. (#15253)
Change-Id: I865526499a6d55a835758f0194a977c36c10304a
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_link.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_link.scss b/WebContent/VAADIN/themes/valo/components/_link.scss index b568df1d7b..270de1aace 100644 --- a/WebContent/VAADIN/themes/valo/components/_link.scss +++ b/WebContent/VAADIN/themes/valo/components/_link.scss @@ -20,8 +20,8 @@ $v-link-cursor: pointer !default; /** * * - * @param {string} $primary-stylename (v-link) - - * @param {bool} $include-additional-styles - + * @param {string} $primary-stylename (v-link) - + * @param {bool} $include-additional-styles - * * @group link */ @@ -74,4 +74,8 @@ $v-link-cursor: pointer !default; &:hover { color: lighten($v-link-font-color, 10%); } + + &.v-disabled { + @include opacity($v-disabled-opacity); + } } |