From f161599054807d126b05589ce6b22de88c0d4307 Mon Sep 17 00:00:00 2001 From: George Drummond Date: Thu, 31 Jan 2019 11:05:03 -0500 Subject: [PATCH] Fix issue with caret sticking on scrollable table --- styles/elements/_tables.scss | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/styles/elements/_tables.scss b/styles/elements/_tables.scss index 448e378c..f5d35f81 100644 --- a/styles/elements/_tables.scss +++ b/styles/elements/_tables.scss @@ -32,9 +32,20 @@ display: table-cell; } } + } - .sorting-direction { - position: absolute; + thead { + tr th { + .sorting-direction { + position: inherit; + margin-right: -16px; + width: 16px; + .icon { + height: 14px; + width: 16px; + margin: 0; + } + } } }