diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-05-24 16:46:27 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2018-05-24 16:46:27 +0100 |
commit | d41d6628649c7c6479639dc50390a8c142deeff2 (patch) | |
tree | 503ec54883d3f6455b7ef882dee85a34bf3a70e7 | |
parent | 28f327e7d55c92f134dcc2b8754376919bf10b66 (diff) |
Fix CSS specificity bug with new nicetable hover styles
-rw-r--r-- | web/cobrands/sass/_base.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index b6a20517c..9abaf4d28 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -2433,7 +2433,7 @@ $nicetable-hover-background: rgba($primary, 0.15) !default; background: $nicetable-hover-background; } - thead tr { + thead tr:hover { background: transparent; } } |