This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new a93219f [cosmetic] Align table sort icons to the left (#6754)
a93219f is described below
commit a93219f291b297da8ca13278778e093754de2b3e
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Fri Jan 25 14:25:41 2019 -0800
[cosmetic] Align table sort icons to the left (#6754)
---
superset/assets/stylesheets/superset.less | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/superset/assets/stylesheets/superset.less
b/superset/assets/stylesheets/superset.less
index 7ab9d5a..e2954a0 100644
--- a/superset/assets/stylesheets/superset.less
+++ b/superset/assets/stylesheets/superset.less
@@ -475,20 +475,17 @@ g.annotation-container {
position:relative;
padding-right: 40px;
}
-
-.reactable-header-sortable::before{
+.reactable-header-sortable::after {
font: normal normal normal 14px/1 FontAwesome;
content: "\f0dc";
- position: absolute;
- top: 6px;
- right: 5px;
+ margin-left: 10px;
color: @brand-primary;
}
-.reactable-header-sort-asc::before{
+.reactable-header-sort-asc::after{
content: "\f0de";
color: @brand-primary;
}
-.reactable-header-sort-desc::before{
+.reactable-header-sort-desc::after{
content: "\f0dd";
color: @brand-primary;
}