diff options
| author | Jacob Thornton <[email protected]> | 2011-07-01 23:21:11 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-07-01 23:21:11 -0700 |
| commit | 52dfbe65006e1be7df88d1c1d39dc151ebc672aa (patch) | |
| tree | 9a1ad410971096915a113691ef9a4b4ff0552fea /bootstrap-1.0.0.css | |
| parent | 26f9e8c4e8580c2d41f31a4fb504ee8c0fdeb145 (diff) | |
| download | bootstrap-52dfbe65006e1be7df88d1c1d39dc151ebc672aa.tar.xz bootstrap-52dfbe65006e1be7df88d1c1d39dc151ebc672aa.zip | |
add "make watch" to auto watch less files - change patterns.less to use opacity method
Diffstat (limited to 'bootstrap-1.0.0.css')
| -rw-r--r-- | bootstrap-1.0.0.css | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/bootstrap-1.0.0.css b/bootstrap-1.0.0.css index 3046626e7..7a74227ab 100644 --- a/bootstrap-1.0.0.css +++ b/bootstrap-1.0.0.css @@ -1128,8 +1128,11 @@ div.topbar a.logo img { div.topbar form { float: left; margin: 5px 0 0 0; - opacity: 1; position: relative; + filter: alpha(opacity=100); + -khtml-opacity: 1; + -moz-opacity: 1; + opacity: 1; } div.topbar form input { background-color: #bfbfbf; @@ -1225,7 +1228,10 @@ div.topbar ul li.menu a.menu:after { vertical-align: top; margin-top: 8px; margin-left: 4px; - opacity: .5; + filter: alpha(opacity=50); + -khtml-opacity: 0.5; + -moz-opacity: 0.5; + opacity: 0.5; } div.topbar ul li.menu.open a.menu, div.topbar ul li.menu.open a:hover { background-color: #00b4eb; @@ -1359,18 +1365,24 @@ div.alert-message.info { div.alert-message a.close { float: right; margin-top: -2px; - opacity: .5; color: #fff; font-size: 20px; font-weight: bold; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); + filter: alpha(opacity=50); + -khtml-opacity: 0.5; + -moz-opacity: 0.5; + opacity: 0.5; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } div.alert-message a.close:hover { - opacity: 1; text-decoration: none; + filter: alpha(opacity=50); + -khtml-opacity: 0.5; + -moz-opacity: 0.5; + opacity: 0.5; } div.block-message { margin-bottom: 18px; |
