mirror of https://github.com/twbs/bootstrap.git
fixes #5725: hover state for a.muted; also reformatted CSS
This commit is contained in:
parent
d5697fcf6b
commit
64326322b4
|
@ -615,6 +615,10 @@ cite {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.muted:hover {
|
||||||
|
color: #808080;
|
||||||
|
}
|
||||||
|
|
||||||
.text-warning {
|
.text-warning {
|
||||||
color: #c09853;
|
color: #c09853;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,23 +20,17 @@ p {
|
||||||
// Emphasis & misc
|
// Emphasis & misc
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
small {
|
// Ex: 14px base font * 85% = about 12px
|
||||||
font-size: 85%; // Ex: 14px base font * 85% = about 12px
|
small { font-size: 85%; }
|
||||||
}
|
|
||||||
strong {
|
strong { font-weight: bold; }
|
||||||
font-weight: bold;
|
em { font-style: italic; }
|
||||||
}
|
cite { font-style: normal; }
|
||||||
em {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
cite {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Utility classes
|
// Utility classes
|
||||||
.muted {
|
.muted { color: @grayLight; }
|
||||||
color: @grayLight;
|
a.muted:hover { color: darken(@grayLight, 10%); }
|
||||||
}
|
|
||||||
.text-warning { color: @warningText; }
|
.text-warning { color: @warningText; }
|
||||||
a.text-warning:hover { color: darken(@warningText, 10%); }
|
a.text-warning:hover { color: darken(@warningText, 10%); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue