Repository: tez Updated Branches: refs/heads/master 3d3d04c6f -> 8f61c515d
TEZ-3836. Tez UI task page sort does not work on RHEL7/Fedora. Contributed by Sreenath Somarajapuram Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/8f61c515 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/8f61c515 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/8f61c515 Branch: refs/heads/master Commit: 8f61c515d6882a99efebf5473b1d23985d3a1d49 Parents: 3d3d04c Author: Jason Lowe <[email protected]> Authored: Mon Sep 25 08:51:05 2017 -0500 Committer: Jason Lowe <[email protected]> Committed: Mon Sep 25 08:51:05 2017 -0500 ---------------------------------------------------------------------- tez-ui/src/main/webapp/app/styles/shared.less | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/8f61c515/tez-ui/src/main/webapp/app/styles/shared.less ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/app/styles/shared.less b/tez-ui/src/main/webapp/app/styles/shared.less index 24da150..b93875b 100644 --- a/tez-ui/src/main/webapp/app/styles/shared.less +++ b/tez-ui/src/main/webapp/app/styles/shared.less @@ -60,4 +60,47 @@ b { margin-top: 10px; } } + + .table-body .table-scroll-body .table-column .header-body { + .sort-icon { + right: 7px; + top: 50%; + margin-top: -10px; + width: 5px; + height: 20px; + + &:before { + top: .3em; + } + &:after { + top: 1.2em; + } + + &.asc{ + &:after { + top: .3em; + } + } + &.desc { + &:before { + top: .3em; + } + } + } + + .resize-column { + position: absolute; + right: 0px; + top: 50%; + margin-top: -10px; + width: 5px; + + &:after { + content: "\F142"; + font: normal normal normal 13px/1 FontAwesome; + position: absolute; + top: .3em; + } + } + } }
