Merge pull request #3733 from influxdata/fix/sorting-arrow-directions

Change Ascending arrows to point up instead of down
pull/3662/head^2
Iris Scholten 2018-06-19 17:35:51 -07:00 committed by GitHub
commit 61f9f47cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -22,6 +22,7 @@
1. [#3649](https://github.com/influxdata/chronograf/pull/3649): Fix erroneous icons in Date Picker widget
1. [#3697](https://github.com/influxdata/chronograf/pull/3697): Fix allowing hyphens in basepath
1. [#3698](https://github.com/influxdata/chronograf/pull/3698): Fix error in cell when tempVar returns no values
1. [#3733](https://github.com/influxdata/chronograf/pull/3733): Change arrows in table columns so that ascending sort points up and descending points down
## v1.5.0.0 [2018-05-15-RC]

View File

@ -86,7 +86,7 @@
position: absolute;
top: 50%;
right: 6px;
transform: translateY(-50%);
transform: translateY(-50%) rotate(180deg);
font-size: 13px;
opacity: 0;
transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
@ -107,10 +107,10 @@
}
}
&__sort-asc:before {
transform: translateY(-50%) rotate(0deg);
transform: translateY(-50%) rotate(180deg);
}
&__sort-desc:before {
transform: translateY(-50%) rotate(180deg);
transform: translateY(-50%) rotate(0deg);
}
}