diff options
-rw-r--r-- | public/css/theme6.css | 20 | ||||
-rw-r--r-- | themes/theme6.less | 20 |
2 files changed, 30 insertions, 10 deletions
diff --git a/public/css/theme6.css b/public/css/theme6.css index 585b4086..c30379fb 100644 --- a/public/css/theme6.css +++ b/public/css/theme6.css @@ -6918,23 +6918,33 @@ body { color: #fff; } .text-primary, -.text-primary:hover { +.text-primary:hover, +a.text-primary, +a.text-primary:hover { color: #a41c31; } .text-success, -.text-success:hover { +.text-success:hover, +a.text-success, +a.text-success:hover { color: #99cc00; } .text-danger, -.text-danger:hover { +.text-danger:hover, +a.text-danger, +a.text-danger:hover { color: #ff6600; } .text-warning, -.text-warning:hover { +.text-warning:hover, +a.text-warning, +a.text-warning:hover { color: #ffff33; } .text-info, -.text-info:hover { +.text-info:hover, +a.text-info, +a.text-info:hover { color: #00ccff; } table, 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; } |