diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-23 14:16:02 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-12-04 08:11:17 +0000 |
commit | e8868a225504dd90dbecaceb1d6eb9df40116355 (patch) | |
tree | 96cc899f89efcecad82e48146c28a6618a5b8a29 /WebContent/VAADIN | |
parent | 3c59a1f08d6e2288c4bcd0ac74273ae14c4d4e0b (diff) | |
download | vaadin-framework-e8868a225504dd90dbecaceb1d6eb9df40116355.tar.gz vaadin-framework-e8868a225504dd90dbecaceb1d6eb9df40116355.zip |
Fix opacity for disabled links in Valo. (#15253)
Change-Id: I865526499a6d55a835758f0194a977c36c10304a
Diffstat (limited to 'WebContent/VAADIN')
-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); + } } |