Merge pull request #3733 from influxdata/fix/sorting-arrow-directions
Change Ascending arrows to point up instead of downpull/3662/head^2
commit
61f9f47cb6
|
@ -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]
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue