diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-01-08 08:52:05 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-01-08 08:52:05 +0000 |
commit | 81a16d4a746dc128073200b52f30851a259281bc (patch) | |
tree | 2dfc5c582e5569e993a5844516b4f4fd09866241 /WebContent/VAADIN/themes/runo | |
parent | 2757ff26ee0a20f95f7a43a8309791a3d2939869 (diff) | |
parent | 991dcf9fa63273e15b38abaca5f4ac792ca94b7e (diff) | |
download | vaadin-framework-81a16d4a746dc128073200b52f30851a259281bc.tar.gz vaadin-framework-81a16d4a746dc128073200b52f30851a259281bc.zip |
Merge "Fixed ComboBox width problems in all themes (#10484)"
Diffstat (limited to 'WebContent/VAADIN/themes/runo')
-rw-r--r-- | WebContent/VAADIN/themes/runo/select/select.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/runo/select/select.scss b/WebContent/VAADIN/themes/runo/select/select.scss index fc203a35fa..39eb0c9bde 100644 --- a/WebContent/VAADIN/themes/runo/select/select.scss +++ b/WebContent/VAADIN/themes/runo/select/select.scss @@ -1,5 +1,8 @@ @mixin runo-select($primaryStyleName : v-filterselect) { +$select-button-width: 25px; +$select-button-negative-width: -25px; + .v-select-select { font-size: 13px; } @@ -18,6 +21,7 @@ height: 23px; background: transparent url(img/bg-left-filter.png) no-repeat; padding-left: 4px; + padding-right: $select-button-width; /* Space for the button */ } &.v-app .#{$primaryStyleName} .#{$primaryStyleName}-input, .v-window .#{$primaryStyleName} .#{$primaryStyleName}-input, @@ -46,7 +50,8 @@ outline-offset: -4px; } .#{$primaryStyleName}-button { - width: 25px; + width: $select-button-width; + margin-right: $select-button-negative-width; height: 23px; background: transparent url(img/bg-right-filter.png); } |