fix #377: .text-warning:hover for theme6 is #000000

This commit is contained in:
msquare 2017-12-06 19:32:52 +01:00
parent e5880c51a2
commit f2972af591
2 changed files with 30 additions and 10 deletions

View File

@ -6918,23 +6918,33 @@ body {
color: #fff; color: #fff;
} }
.text-primary, .text-primary,
.text-primary:hover { .text-primary:hover,
a.text-primary,
a.text-primary:hover {
color: #a41c31; color: #a41c31;
} }
.text-success, .text-success,
.text-success:hover { .text-success:hover,
a.text-success,
a.text-success:hover {
color: #99cc00; color: #99cc00;
} }
.text-danger, .text-danger,
.text-danger:hover { .text-danger:hover,
a.text-danger,
a.text-danger:hover {
color: #ff6600; color: #ff6600;
} }
.text-warning, .text-warning,
.text-warning:hover { .text-warning:hover,
a.text-warning,
a.text-warning:hover {
color: #ffff33; color: #ffff33;
} }
.text-info, .text-info,
.text-info:hover { .text-info:hover,
a.text-info,
a.text-info:hover {
color: #00ccff; color: #00ccff;
} }
table, table,

View File

@ -897,27 +897,37 @@ THE SOFTWARE.
// Typography ================================================================= // Typography =================================================================
.text-primary, .text-primary,
.text-primary:hover { .text-primary:hover,
a.text-primary,
a.text-primary:hover {
color: @brand-primary; color: @brand-primary;
} }
.text-success, .text-success,
.text-success:hover { .text-success:hover,
a.text-success,
a.text-success:hover {
color: @brand-success; color: @brand-success;
} }
.text-danger, .text-danger,
.text-danger:hover { .text-danger:hover,
a.text-danger,
a.text-danger:hover {
color: @brand-danger; color: @brand-danger;
} }
.text-warning, .text-warning,
.text-warning:hover { .text-warning:hover,
a.text-warning,
a.text-warning:hover {
color: @brand-warning; color: @brand-warning;
} }
.text-info, .text-info,
.text-info:hover { .text-info:hover,
a.text-info,
a.text-info:hover {
color: @brand-info; color: @brand-info;
} }