From fd1edf083fe369e926fbf463b51b57af710182a3 Mon Sep 17 00:00:00 2001 From: Iris Scholten Date: Tue, 19 Jun 2018 16:19:15 -0700 Subject: [PATCH 1/2] Change Ascending arrows to point up instead of down --- ui/src/style/components/table-graph.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/style/components/table-graph.scss b/ui/src/style/components/table-graph.scss index e5052dfc7..b79d9a584 100644 --- a/ui/src/style/components/table-graph.scss +++ b/ui/src/style/components/table-graph.scss @@ -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); } } From 5a4781dd58f5b9ffdd5de0eca73a031701527dc7 Mon Sep 17 00:00:00 2001 From: Iris Scholten Date: Tue, 19 Jun 2018 16:25:06 -0700 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d941200d..e8b3a6d1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]