]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #5725: hover state for a.muted; also reformatted CSS
authorMark Otto <otto@github.com>
Wed, 31 Oct 2012 17:46:04 +0000 (10:46 -0700)
committerMark Otto <otto@github.com>
Wed, 31 Oct 2012 17:46:04 +0000 (10:46 -0700)
docs/assets/css/bootstrap.css
less/type.less

index 1b519e220009e9277ca53574d82660666b812fd8..4789e34d22f73a0258aea2f8a3356f4bb2a4f5ab 100644 (file)
@@ -615,6 +615,10 @@ cite {
   color: #999999;
 }
 
+a.muted:hover {
+  color: #808080;
+}
+
 .text-warning {
   color: #c09853;
 }
index 3b428e79de6d6e3c13c5873500aa4a13c9c76d64..d0538fef24b23ffdf70e146725afe55c51a5c5fe 100644 (file)
@@ -20,33 +20,27 @@ p {
 // Emphasis & misc
 // -------------------------
 
-small {
-  font-size: 85%; // Ex: 14px base font * 85% = about 12px
-}
-strong {
-  font-weight: bold;
-}
-em {
-  font-style: italic;
-}
-cite {
-  font-style: normal;
-}
+// Ex: 14px base font * 85% = about 12px
+small   { font-size: 85%; }
+
+strong  { font-weight: bold; }
+em      { font-style: italic; }
+cite    { font-style: normal; }
 
 // Utility classes
-.muted {
-  color: @grayLight;
-}
-.text-warning { color: @warningText; }
+.muted               { color: @grayLight; }
+a.muted:hover        { color: darken(@grayLight, 10%); }
+
+.text-warning        { color: @warningText; }
 a.text-warning:hover { color: darken(@warningText, 10%); }
 
-.text-error { color: @errorText; }
-a.text-error:hover { color: darken(@errorText, 10%); }
+.text-error          { color: @errorText; }
+a.text-error:hover   { color: darken(@errorText, 10%); }
 
-.text-info { color: @infoText; }
-a.text-info:hover { color: darken(@infoText, 10%); }
+.text-info           { color: @infoText; }
+a.text-info:hover    { color: darken(@infoText, 10%); }
 
-.text-success { color: @successText; }
+.text-success        { color: @successText; }
 a.text-success:hover { color: darken(@successText, 10%); }