diff options
author | Jouni Koivuviita <jouni@vaadin.com> | 2014-06-12 15:53:06 +0300 |
---|---|---|
committer | Jouni Koivuviita <jouni@vaadin.com> | 2014-06-18 10:17:14 +0300 |
commit | 3c4aba8a796da518feda8dab8c04502ef492241b (patch) | |
tree | a2c74ddd7ceef02304f7c80e958aa6e003a87b90 /WebContent/VAADIN/themes/valo/components/_combobox.scss | |
parent | 825564cf7887383428608c4a11c9d0157b2cd08f (diff) | |
download | vaadin-framework-3c4aba8a796da518feda8dab8c04502ef492241b.tar.gz vaadin-framework-3c4aba8a796da518feda8dab8c04502ef492241b.zip |
Various fixes and tweaks to Valo
- Added a new “quiet” style button, and an “icon-align-top” style, and
added an additional parameter for the borderless button style
- PopupView now has a proper animation-in and animation-out, with a
spinner showing the loading state
- Small fix to slider minimum size
- Fixed TextField text centering for IE8 and IE9
- Fixed Tree expand/collapse arrow clicking in IE10
- Tweaked Window shadow and modality curtain style
Change-Id: I48dab61c648363b8eb0c03dc3b3cbbc1289b94ed
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_combobox.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_combobox.scss | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_combobox.scss b/WebContent/VAADIN/themes/valo/components/_combobox.scss index a8756a50e4..9fc1f7fe9d 100644 --- a/WebContent/VAADIN/themes/valo/components/_combobox.scss +++ b/WebContent/VAADIN/themes/valo/components/_combobox.scss @@ -254,15 +254,12 @@ @include animation($v-overlay-animate-in); } } - @if $v-overlay-animate-out { - &[class*="animate-out"] { - @include animation($v-overlay-animate-out); - } - } + // No animate-out since that will currently prevent the dropdown from + // closing when the user selects an item } .#{$primary-stylename}-suggestmenu { - @include valo-selection-overlay-style; + @include valo-selection-overlay-style($animate-in: false, $animate-out: false); box-sizing: border-box; position: relative; z-index: 1; |