diff options
author | Heikki Ohinmaa <heikki@vaadin.com> | 2014-09-04 15:26:00 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-09-05 05:54:13 +0000 |
commit | 51bd03c8295c974344775d9d5cc1914ed68a3290 (patch) | |
tree | 6d19259214148a160fc15ab8b8493ffb076ab24c /WebContent/VAADIN/themes | |
parent | d6853c436e5acc0374cd73ce32d8e51c5b44f553 (diff) | |
download | vaadin-framework-51bd03c8295c974344775d9d5cc1914ed68a3290.tar.gz vaadin-framework-51bd03c8295c974344775d9d5cc1914ed68a3290.zip |
Fix Valo DateField rendering in read-only FieldGroups (#14603)
Change-Id: Icb05cffe68b948777036e282a2055e3343de9252
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_datefield.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_datefield.scss b/WebContent/VAADIN/themes/valo/components/_datefield.scss index b1d5dcce5b..48977d4d20 100644 --- a/WebContent/VAADIN/themes/valo/components/_datefield.scss +++ b/WebContent/VAADIN/themes/valo/components/_datefield.scss @@ -154,14 +154,14 @@ @include valo-textfield-prompt-style($background-color); } - [class$="button"] { + [class*="button"] { @include valo-datefield-button-style($unit-size: $unit-size, $bevel: $bevel, $background-color: $background-color, $border-radius: $border-radius, $border: $border); } &.v-disabled { @include opacity($v-disabled-opacity); - [class$="button"] { + [class*="button"] { cursor: default; pointer-events: none; &:active:after { @@ -175,7 +175,7 @@ @include valo-textfield-readonly-style; } - [class$="button"] { + [class*="button"] { cursor: default; pointer-events: none; &:active:after { |