Fix for alert box gradients in IE7/8
This commit is contained in:
parent
48c3c6f1b6
commit
c3143b4729
3 changed files with 9 additions and 6 deletions
|
|
@ -285,9 +285,12 @@ div.page-header {
|
|||
|
||||
// One-liner alert bars
|
||||
div.alert-message {
|
||||
|
||||
// TODO: Ask cloudhead how to do this fany filter elegantly. Less eval is returning strings with quotes ;_;
|
||||
#gradient > .vertical(transparent, rgba(0,0,0,0.15));
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)"; // no gradient IE8+
|
||||
filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)"; // no gradient IE6 & IE7
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#15000000')";
|
||||
filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#15000000')";
|
||||
|
||||
background-color: @grayLighter;
|
||||
margin-bottom: @baseline;
|
||||
padding: 8px 15px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue