diff options
Diffstat (limited to 'WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss b/WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss index 2b627df3e7..f24a40f5b6 100644 --- a/WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss +++ b/WebContent/VAADIN/themes/valo/util/_bevel-and-shadow.scss @@ -42,10 +42,10 @@ // If the shadow-list only contains one shadow // (we can't use the recursive replace function because that will mess up the list delimeters) - @if last($shadow-list) == hilite { - @return replace($shadow-list, hilite, $hilite); - } @else if last($shadow-list) == shade { - @return replace($shadow-list, shade, $shade); + @if last($shadow-list) == v-hilite { + @return replace($shadow-list, v-hilite, $hilite); + } @else if last($shadow-list) == v-shade { + @return replace($shadow-list, v-shade, $shade); } // If there are multiple shadows in a list, recurse and separate lists with a comma |