summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-12-06 19:32:52 +0100
committermsquare <msquare@notrademark.de>2017-12-06 19:32:52 +0100
commitf2972af591b8fc90115c98b4936518deb1644d5a (patch)
treeaf40bbc8c4d4b23adfcd848a0a2dd9078d42e38a /themes
parente5880c51a20006e612c9289b6b77b37050601546 (diff)
fix #377: .text-warning:hover for theme6 is #000000
Diffstat (limited to 'themes')
-rw-r--r--themes/theme6.less20
1 files changed, 15 insertions, 5 deletions
diff --git a/themes/theme6.less b/themes/theme6.less
index 6ff1b09a..9c8b2080 100644
--- a/themes/theme6.less
+++ b/themes/theme6.less
@@ -897,27 +897,37 @@ THE SOFTWARE.
// Typography =================================================================
.text-primary,
-.text-primary:hover {
+.text-primary:hover,
+a.text-primary,
+a.text-primary:hover {
color: @brand-primary;
}
.text-success,
-.text-success:hover {
+.text-success:hover,
+a.text-success,
+a.text-success:hover {
color: @brand-success;
}
.text-danger,
-.text-danger:hover {
+.text-danger:hover,
+a.text-danger,
+a.text-danger:hover {
color: @brand-danger;
}
.text-warning,
-.text-warning:hover {
+.text-warning:hover,
+a.text-warning,
+a.text-warning:hover {
color: @brand-warning;
}
.text-info,
-.text-info:hover {
+.text-info:hover,
+a.text-info,
+a.text-info:hover {
color: @brand-info;
}