diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-01 14:04:39 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-11-03 10:11:46 +0000 |
commit | dda24122a7a0a0491fc5cac69792fe37a826803e (patch) | |
tree | 46dd4a4e9e2298a0a0976d5c6f418f464a2673d4 /WebContent | |
parent | 77bb7ac886bd9f82e5295323254cd9fbb8ea8a10 (diff) | |
download | vaadin-framework-dda24122a7a0a0491fc5cac69792fe37a826803e.tar.gz vaadin-framework-dda24122a7a0a0491fc5cac69792fe37a826803e.zip |
Reverse asc and desc table sorting indicators for Valo. (#15123)
Change-Id: If649d7ab0b4257cfaa1488dfff88afa8ef122f67
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_table.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_table.scss b/WebContent/VAADIN/themes/valo/components/_table.scss index d8a673294d..a70532ccfd 100644 --- a/WebContent/VAADIN/themes/valo/components/_table.scss +++ b/WebContent/VAADIN/themes/valo/components/_table.scss @@ -612,7 +612,7 @@ $v-table-background-color: null !default; * @group table */ @mixin valo-table-sort-asc-icon-style { - content: '\f0dd'; + content: '\f0de'; font-family: FontAwesome; } @@ -623,7 +623,7 @@ $v-table-background-color: null !default; * @group table */ @mixin valo-table-sort-desc-icon-style { - content: '\f0de'; + content: '\f0dd'; font-family: FontAwesome; } |