summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-12-28 17:47:54 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-12-28 17:47:54 +0100
commit97bab8e0636f399e1b2401bf2aab67cff1f67fd0 (patch)
tree1a1e9285c42afc8e06f897f3c848ac3d7115cfe1 /resources
parent0150aca6ad71bb7b000a377b297f5c739773a316 (diff)
styling: Fix colored links text hover on dark theme
closes #547 (Text-success hover on dark theme)
Diffstat (limited to 'resources')
-rw-r--r--resources/assets/themes/theme7.less15
1 files changed, 10 insertions, 5 deletions
diff --git a/resources/assets/themes/theme7.less b/resources/assets/themes/theme7.less
index 3ef81fd3..26afeb8c 100644
--- a/resources/assets/themes/theme7.less
+++ b/resources/assets/themes/theme7.less
@@ -900,27 +900,32 @@ THE SOFTWARE.
// Typography =================================================================
.text-primary,
-.text-primary:hover {
+.text-primary:hover,
+a.text-primary:hover {
color: @brand-primary;
}
.text-success,
-.text-success:hover {
+.text-success:hover,
+a.text-success:hover {
color: @brand-success;
}
.text-danger,
-.text-danger:hover {
+.text-danger:hover,
+a.text-danger:hover {
color: @brand-danger;
}
.text-warning,
-.text-warning:hover {
+.text-warning:hover,
+a.text-warning:hover {
color: @brand-warning;
}
.text-info,
-.text-info:hover {
+.text-info:hover,
+a.text-info:hover {
color: @brand-info;
}