diff options
| author | Andreas Cederstròˆm <[email protected]> | 2012-12-03 14:20:14 +0100 |
|---|---|---|
| committer | Andreas Cederstròˆm <[email protected]> | 2012-12-03 14:20:14 +0100 |
| commit | 68cbba347bc1e6edd8c2812f37236a622a6d3672 (patch) | |
| tree | cbd7c1a6e93e153d51afe1a798c3231cb99df4d8 /less | |
| parent | eca23e9b0fc6265f570f5b8f8ac063b52ec5e57f (diff) | |
| download | bootstrap-68cbba347bc1e6edd8c2812f37236a622a6d3672.tar.xz bootstrap-68cbba347bc1e6edd8c2812f37236a622a6d3672.zip | |
Fixing header color for success, error and info alerts
Diffstat (limited to 'less')
| -rw-r--r-- | less/alerts.less | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/less/alerts.less b/less/alerts.less index 37e50f903..633b6591e 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 |
