diff options
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_richtextarea.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_richtextarea.scss b/WebContent/VAADIN/themes/valo/components/_richtextarea.scss index 44f3df327c..702bda2ac4 100644 --- a/WebContent/VAADIN/themes/valo/components/_richtextarea.scss +++ b/WebContent/VAADIN/themes/valo/components/_richtextarea.scss @@ -66,8 +66,10 @@ $valo-richtextarea-use-font-awesome: true !default; } @each $pair in $icons { - div[title="#{first($pair)}"]:before { - content: "#{last($pair)}"; + $first-of-pair: first($pair); + $last-of-pair: last($pair); + div[title="#{$first-of-pair}"]:before { + content: "#{$last-of-pair}"; } } } |