diff options
| author | Mark Otto <[email protected]> | 2012-11-28 01:48:34 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-28 01:48:34 -0800 |
| commit | 014d3cedf5f92e9b9f246cef2c639b2845e6741f (patch) | |
| tree | 9105b14ae74ff6d9d72c430d96e6a84f1b9e4b5a /docs/assets/css/bootstrap.css | |
| parent | bfc97fdaf6cefceb4091e745977b5bac2ffda1c7 (diff) | |
| download | bootstrap-014d3cedf5f92e9b9f246cef2c639b2845e6741f.tar.xz bootstrap-014d3cedf5f92e9b9f246cef2c639b2845e6741f.zip | |
Fixes #5940: Prevent @headingsColor from changing alert colors
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 9eee6fa0c..9c343dc17 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3803,7 +3803,6 @@ input[type="submit"].btn.btn-mini { .alert { padding: 8px 35px 8px 14px; margin-bottom: 20px; - color: #c09853; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); background-color: #fcf8e3; border: 1px solid #fbeed5; @@ -3812,6 +3811,11 @@ input[type="submit"].btn.btn-mini { border-radius: 4px; } +.alert, +.alert h4 { + color: #c09853; +} + .alert h4 { margin: 0; } |
