diff options
author | Anastasia Smirnova <anasmi@utu.fi> | 2019-06-25 08:37:08 +0300 |
---|---|---|
committer | Zhe Sun <31067185+ZheSun88@users.noreply.github.com> | 2019-06-25 15:58:20 +0300 |
commit | daaa16baacd6e9d08d2e8f8388b5a959325a3667 (patch) | |
tree | be4c30b310b964125eeeaaf6a653074a418ca01e /themes/src | |
parent | 1863bbb7620f14e14c81b94801e78bca68114859 (diff) | |
download | vaadin-framework-8.8.4.tar.gz vaadin-framework-8.8.4.zip |
Clicking on DateField pop-up should select Month/Year (#11531)8.8.4
* Clicking on DateField pop-up should select Month/Year
In Year/Month Resolution DateField should select the value, when user clicks on pop-up
Fixes #8447
Diffstat (limited to 'themes/src')
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_datefield.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_datefield.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_datefield.scss index e92c9ce436..58baa5d6f7 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_datefield.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_datefield.scss @@ -477,8 +477,12 @@ td.#{$primary-stylename}-month { width: round($v-unit-size * 4); + cursor:default; @include valo-datefield-calendarpanel-month-style; } + td.#{$primary-stylename}-month.header-month-year{ + cursor:pointer; + } .#{$primary-stylename}-year td.#{$primary-stylename}-month { width: round($v-unit-size * 2); |