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/less
diff options
context:
space:
mode:
authorAndreas Cederstròˆm <andreas@klydd.se>2012-12-03 17:20:14 +0400
committerAndreas Cederstròˆm <andreas@klydd.se>2012-12-03 17:20:14 +0400
commit68cbba347bc1e6edd8c2812f37236a622a6d3672 (patch)
treecbd7c1a6e93e153d51afe1a798c3231cb99df4d8 /less
parenteca23e9b0fc6265f570f5b8f8ac063b52ec5e57f (diff)
Fixing header color for success, error and info alerts
Diffstat (limited to 'less')
-rw-r--r--less/alerts.less13
1 files changed, 13 insertions, 0 deletions
diff --git a/less/alerts.less b/less/alerts.less
index 37e50f9038..633b6591e6 100644
--- a/less/alerts.less
+++ b/less/alerts.less
@@ -40,17 +40,30 @@
border-color: @successBorder;
color: @successText;
}
+.alert-success h4 {
+ // Specified for the h4 to prevent conflicts of changing @headingsColor
+ color: @successText;
+}
.alert-danger,
.alert-error {
background-color: @errorBackground;
border-color: @errorBorder;
color: @errorText;
}
+.alert-danger h4,
+.alert-error h4 {
+ // Specified for the h4 to prevent conflicts of changing @headingsColor
+ color: @errorText;
+}
.alert-info {
background-color: @infoBackground;
border-color: @infoBorder;
color: @infoText;
}
+.alert-info h4 {
+ // Specified for the h4 to prevent conflicts of changing @headingsColor
+ color: @infoText;
+}
// Block alerts