diff options
author | Artur <artur@vaadin.com> | 2017-02-16 12:44:10 +0200 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-02-16 12:44:10 +0200 |
commit | 674063b3004f82610aec7c81faed0e16a746d9aa (patch) | |
tree | 48abb7dcfd3dd077f85c0a996cda8955471639e3 /themes | |
parent | 4f047f06fad8882ac81e6770d6ebf022a8331196 (diff) | |
download | vaadin-framework-674063b3004f82610aec7c81faed0e16a746d9aa.tar.gz vaadin-framework-674063b3004f82610aec7c81faed0e16a746d9aa.zip |
Do not show an "active" effect on buttons with "borderless" style (#8586)
* Do not show an "active" effect on buttons with "borderless" style
A disabled button should not react to clicks in any way
Diffstat (limited to 'themes')
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_button.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_button.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_button.scss index c7674f1c8f..82ab35e2c9 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_button.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_button.scss @@ -364,7 +364,7 @@ } } - &:active { + &:active:not(.v-disabled) { @include opacity(.7); &:after { |