From 24473c8deac75d9ac229252a81b534ba0e62b31c Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Thu, 10 Aug 2017 14:39:17 +0300 Subject: [PATCH] Remove margin-left for FontAwesome icons in ComboBox (#9805) --- all/src/main/templates/release-notes.html | 1 + .../main/themes/VAADIN/themes/valo/components/_combobox.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/all/src/main/templates/release-notes.html b/all/src/main/templates/release-notes.html index 20744c0234..afc82cc67d 100644 --- a/all/src/main/templates/release-notes.html +++ b/all/src/main/templates/release-notes.html @@ -115,6 +115,7 @@
  • The HasValue interface now has an additional method getDefaultValidator() with a default implementation.
  • TreeGrid.createColumn() has an additional parameter.
  • LocalDateTimeToDateConverter now uses ZoneId instead of ZoneOffset.
  • +
  • FontAwesome icon alignment in ComboBox has changed in the theme.
  • For incompatible or behaviour-altering changes in 8.0, please see 8.0 release notes

    diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_combobox.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_combobox.scss index e7f837d4c8..4069415985 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_combobox.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_combobox.scss @@ -18,6 +18,10 @@ position: absolute; pointer-events: none; } + + .v-icon.FontAwesome { + margin-left: 0px; + } } .#{$primary-stylename}-error { -- 2.39.5