Skip to content

Commit

Permalink
Tables: Changed sort icons (fixes #5209)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjackson28 committed Apr 23, 2014
1 parent bbb5ccf commit 8679b6f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/plugins/tables/tables.scss
Expand Up @@ -6,7 +6,7 @@
content: " ";
display: inline-block;
font-family: "Glyphicons Halflings";
font-size: 0.9em;
font-weight: 400;
}

%tables-clear-both {
Expand Down Expand Up @@ -270,34 +270,40 @@ table {
position: absolute;
}

%tables-sorting-active {
background: #e7e7e7;
}

.sorting {
@extend %tables-cursor-pointer;

&:after {
@extend %table_icons;
@extend %tables-sorting-margin-left-5-position-absolute;
color: #757575;
content: "\e150";
content: "\e151";
}
}

.sorting_asc {
@extend %tables-cursor-pointer;
@extend %tables-sorting-active;

&:after {
@extend %table_icons;
@extend %tables-sorting-margin-left-5-position-absolute;
content: "\e093";
content: "\e152";
}
}

.sorting_desc {
@extend %tables-cursor-pointer;
@extend %tables-sorting-active;

&:after {
@extend %table_icons;
@extend %tables-sorting-margin-left-5-position-absolute;
content: "\e094";
content: "\e151";
}
}

Expand Down

0 comments on commit 8679b6f

Please sign in to comment.