diff options
Diffstat (limited to 'WebContent/VAADIN/themes/liferay')
-rw-r--r-- | WebContent/VAADIN/themes/liferay/select/select.scss | 10 |
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; } |