Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2013-03-17 02:31:03 +0400
committerMark Otto <otto@github.com>2013-03-17 02:31:03 +0400
commitfe2658ed6154b7b2be71f6582671ee13ebb59dc5 (patch)
treefa503691d8f3478020f9c2e4e2d2631d6a7b2e30 /docs
parent7e933db2dd3409f2107518d8700581a0be1c9392 (diff)
Fixes #7150: colorize links in alerts
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/css/bootstrap.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 118aa49235..469d946b9e 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1721,6 +1721,7 @@ select:focus:invalid:focus {
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
+ pointer-events: none;
cursor: default;
opacity: 0.65;
filter: alpha(opacity=65);
@@ -4261,6 +4262,12 @@ button.close {
border-top-color: #f8e5be;
}
+.alert > a,
+.alert > p > a {
+ font-weight: 500;
+ color: #a47e3c;
+}
+
.close {
position: relative;
top: -2px;
@@ -4279,6 +4286,11 @@ button.close {
border-top-color: #c9e2b3;
}
+.alert-success > a,
+.alert-success > p > a {
+ color: #356635;
+}
+
.alert-danger,
.alert-error {
color: #b94a48;
@@ -4291,6 +4303,13 @@ button.close {
border-top-color: #e6c1c7;
}
+.alert-danger > a,
+.alert-error > a,
+.alert-danger > p > a,
+.alert-error > p > a {
+ color: #953b39;
+}
+
.alert-info {
color: #3a87ad;
background-color: #d9edf7;
@@ -4301,6 +4320,11 @@ button.close {
border-top-color: #a6e1ec;
}
+.alert-info > a,
+.alert-info > p > a {
+ color: #2d6987;
+}
+
.alert-block {
padding-top: 14px;
padding-bottom: 14px;