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/_textfield.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/_textfield.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_textfield.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_textfield.scss b/WebContent/VAADIN/themes/valo/components/_textfield.scss index 4a63004b3c..3ed553b1fa 100644 --- a/WebContent/VAADIN/themes/valo/components/_textfield.scss +++ b/WebContent/VAADIN/themes/valo/components/_textfield.scss @@ -42,6 +42,13 @@ $v-textfield-disabled-opacity: $v-disabled-opacity !default; height: $unit-size; border-radius: $border-radius; + .v-ie8 &, + .v-ie9 & { + line-height: $unit-size; + padding-top: 0; + padding-bottom: 0; + } + @if type-of($padding) == number or type-of($padding) == list { padding: $padding; } @else { |