aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2011-08-21 11:53:06 -0700
committerJacob Thornton <[email protected]>2011-08-21 11:53:06 -0700
commit2203ba3df1724a14ef948bd714e76e8d6c4a1929 (patch)
tree42cd4447d92ae4d0b1cc518d23ab2d55a06803eb /lib
parent3d73e674dd4f27159b2f3968c83547da4e7cb225 (diff)
downloadbootstrap-2203ba3df1724a14ef948bd714e76e8d6c4a1929.tar.xz
bootstrap-2203ba3df1724a14ef948bd714e76e8d6c4a1929.zip
ie Xp
Diffstat (limited to 'lib')
-rw-r--r--lib/patterns.less3
-rw-r--r--lib/preboot.less4
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/patterns.less b/lib/patterns.less
index c189e6271..c767df63c 100644
--- a/lib/patterns.less
+++ b/lib/patterns.less
@@ -8,7 +8,10 @@
// Topbar for Branding and Nav
div.topbar {
+ background:#222;
#gradient > .vertical(#333, #222);
+ filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
height: 40px;
position: fixed;
top: 0;
diff --git a/lib/preboot.less b/lib/preboot.less
index 74f0f48d5..b90021ebe 100644
--- a/lib/preboot.less
+++ b/lib/preboot.less
@@ -223,8 +223,8 @@
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
- filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE6 & IE7
-ms-filter: %("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor); // IE8+
+ filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE6 & IE7
background-image: linear-gradient(left, @startColor, @endColor); // Le standard
}
.vertical (@startColor: #555, @endColor: #333) {
@@ -236,8 +236,8 @@
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(@startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(@startColor, @endColor); // Opera 11.10
- filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE6 & IE7
-ms-filter: %("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor); // IE8+
+ filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE6 & IE7
background-image: linear-gradient(@startColor, @endColor); // The standard
}
.directional (@startColor: #555, @endColor: #333, @deg: 45deg) {