summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/liferay
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-01-08 08:52:05 +0000
committerVaadin Code Review <review@vaadin.com>2013-01-08 08:52:05 +0000
commit81a16d4a746dc128073200b52f30851a259281bc (patch)
tree2dfc5c582e5569e993a5844516b4f4fd09866241 /WebContent/VAADIN/themes/liferay
parent2757ff26ee0a20f95f7a43a8309791a3d2939869 (diff)
parent991dcf9fa63273e15b38abaca5f4ac792ca94b7e (diff)
downloadvaadin-framework-81a16d4a746dc128073200b52f30851a259281bc.tar.gz
vaadin-framework-81a16d4a746dc128073200b52f30851a259281bc.zip
Merge "Fixed ComboBox width problems in all themes (#10484)"
Diffstat (limited to 'WebContent/VAADIN/themes/liferay')
-rw-r--r--WebContent/VAADIN/themes/liferay/select/select.scss10
1 files changed, 8 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/liferay/select/select.scss b/WebContent/VAADIN/themes/liferay/select/select.scss
index d62bb43242..5ae302be9a 100644
--- a/WebContent/VAADIN/themes/liferay/select/select.scss
+++ b/WebContent/VAADIN/themes/liferay/select/select.scss
@@ -1,5 +1,8 @@
@mixin liferay-select {
+$select-button-width : 24px;
+$select-button-negative-width : -24px;
+
&.v-app select,
.v-window select {
padding: 1px;
@@ -8,9 +11,12 @@
select {
background-color: #fff;
}
-
+.v-filterselect {
+ padding-right: $select-button-width; /* Space for the button */
+}
.v-filterselect-button {
- width: 24px;
+ width: $select-button-width;
+ margin-right: $select-button-negative-width;
height: 24px;
background: transparent url(../common/buttons_sprites.png) no-repeat 0 0;
}