diff options
| author | Mark Otto <[email protected]> | 2013-08-18 20:10:14 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-18 20:10:14 -0700 |
| commit | 2e9184366129139bb9b64b679a0e75a3c556465e (patch) | |
| tree | df224538a837a3701f088d1283caa0afaf10c074 /dist/css/bootstrap-theme.css | |
| parent | 93887f4bd001005e75ef636ef7600c6bcc9a61f4 (diff) | |
| parent | e6ff75bcea01a75306e7a747103b0647bec909af (diff) | |
| download | bootstrap-2e9184366129139bb9b64b679a0e75a3c556465e.tar.xz bootstrap-2e9184366129139bb9b64b679a0e75a3c556465e.zip | |
Merge pull request #9818 from twbs/bs3_alert_base_class
BS3: Refactor alerts to require a modifier class
Diffstat (limited to 'dist/css/bootstrap-theme.css')
| -rw-r--r-- | dist/css/bootstrap-theme.css | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/dist/css/bootstrap-theme.css b/dist/css/bootstrap-theme.css index d8bf7e102..cfe301c8c 100644 --- a/dist/css/bootstrap-theme.css +++ b/dist/css/bootstrap-theme.css @@ -199,16 +199,6 @@ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); } -.alert { - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0)); - background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%); - background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); - background-repeat: repeat-x; - border-color: #f5e79e; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); -} - .alert-success { background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc)); background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #c8e5bc, 100%); @@ -229,6 +219,16 @@ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); } +.alert-warning { + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0)); + background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%); + background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); + background-repeat: repeat-x; + border-color: #f5e79e; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); +} + .alert-danger { background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3)); background-image: -webkit-linear-gradient(top, #f2dede, 0%, #e7c3c3, 100%); |
