aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-10-03 22:36:51 -0700
committerMark Otto <[email protected]>2011-10-03 22:36:51 -0700
commit1b245ffdf8f4bdc8d5845ae86aa78569dfb03cad (patch)
tree97a8e9f45ea17188713b9b7cb94951c5be151ac7 /lib
parentc843e202b53502f8e973419bc5ea9c62f87f9c89 (diff)
downloadbootstrap-1b245ffdf8f4bdc8d5845ae86aa78569dfb03cad.tar.xz
bootstrap-1b245ffdf8f4bdc8d5845ae86aa78569dfb03cad.zip
make links in error messages not be blue, but instead match the text color and be bold:
Diffstat (limited to 'lib')
-rw-r--r--lib/patterns.less20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/patterns.less b/lib/patterns.less
index c4469e539..9d9586bbf 100644
--- a/lib/patterns.less
+++ b/lib/patterns.less
@@ -646,6 +646,18 @@ input[type=submit].btn {
*margin-top: 3px; /* IE7 spacing */
}
+ // Make links same color as text and stand out more
+ a {
+ font-weight: bold;
+ color: @grayDark;
+ }
+ &.danger p a,
+ &.error p a,
+ &.success p a,
+ &.info p a {
+ color: @white;
+ }
+
// Remove extra margin from content
h5 {
line-height: @baseline;
@@ -700,6 +712,14 @@ input[type=submit].btn {
background-color: lighten(#6bd0ee, 25%);
border-color: lighten(#6bd0ee, 20%);
}
+ // Change link color back
+ &.danger p a,
+ &.error p a,
+ &.success p a,
+ &.info p a {
+ color: @grayDark;
+ }
+
}
}