diff options
| author | Mark Otto <[email protected]> | 2013-05-16 20:53:59 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-16 20:53:59 -0700 |
| commit | 9762f95bde0fc251aa42d2e843cf5885f264cca3 (patch) | |
| tree | 94d30c84a0ff06316a89b3b6b18f9ef2276cf18c /docs/assets/css | |
| parent | 0f4b4acce1df7f2cdfc6e0ad6dca59480868bd8d (diff) | |
| download | bootstrap-9762f95bde0fc251aa42d2e843cf5885f264cca3.tar.xz bootstrap-9762f95bde0fc251aa42d2e843cf5885f264cca3.zip | |
Change up link alerts
* No more children selectors to set all links in alerts as a special color because buttons and more wrongly inherited color
* Adds .alert-link for easy styling in any alert
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 4542376d8..04b72bd43 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4410,8 +4410,7 @@ button.close { border-top-color: #f8e5be; } -.alert > a, -.alert > p > a { +.alert .alert-link { font-weight: 500; color: #a47e3c; } @@ -4433,8 +4432,7 @@ button.close { border-top-color: #c9e2b3; } -.alert-success > a, -.alert-success > p > a { +.alert-success .alert-link { color: #356635; } @@ -4448,8 +4446,7 @@ button.close { border-top-color: #e6c1c7; } -.alert-danger > a, -.alert-danger > p > a { +.alert-danger .alert-link { color: #953b39; } @@ -4463,8 +4460,7 @@ button.close { border-top-color: #a6e1ec; } -.alert-info > a, -.alert-info > p > a { +.alert-info .alert-link { color: #2d6987; } |
