diff options
author | Heikki Ohinmaa <heikki@vaadin.com> | 2014-09-04 15:26:00 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-09-12 16:49:14 +0300 |
commit | 2de5284bd3280a5103b75ad7a59d8c4002c2cd3c (patch) | |
tree | 55baaff83eb63775982191f573460fb66a2b4f99 /WebContent/VAADIN | |
parent | 8c59ee01de36464ed0abac523d76db118a85d610 (diff) | |
download | vaadin-framework-2de5284bd3280a5103b75ad7a59d8c4002c2cd3c.tar.gz vaadin-framework-2de5284bd3280a5103b75ad7a59d8c4002c2cd3c.zip |
Fix Valo DateField rendering in read-only FieldGroups (#14603)
Change-Id: Icb05cffe68b948777036e282a2055e3343de9252
Diffstat (limited to 'WebContent/VAADIN')
-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 { |