diff options
| author | Mark Otto <[email protected]> | 2011-08-21 20:47:24 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-08-21 20:47:24 -0700 |
| commit | a98d2cccb8076b106e08e7ca76e59af013ab2851 (patch) | |
| tree | 2ccfcdd3f3adf195ba49a80fe9a832bfaa2320a8 /lib/preboot.less | |
| parent | 5cc933ccccfdc56b3cc0e440ea0022e43a1c3f84 (diff) | |
| download | bootstrap-a98d2cccb8076b106e08e7ca76e59af013ab2851.tar.xz bootstrap-a98d2cccb8076b106e08e7ca76e59af013ab2851.zip | |
merge in master, resolve conflicts
Diffstat (limited to 'lib/preboot.less')
| -rw-r--r-- | lib/preboot.less | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/preboot.less b/lib/preboot.less index 8b913604a..bf20b53fe 100644 --- a/lib/preboot.less +++ b/lib/preboot.less @@ -20,6 +20,7 @@ // Accent Colors @blue: #049CDB; +@blueDark: #0064CD; @green: #46a546; @red: #9d261d; @yellow: #ffc40d; @@ -188,8 +189,9 @@ color: @textColor; font-size: @fontSize; line-height: @baseline; - border: 1px solid darken(@color, 10%); - border-bottom-color: fadein(@borderColor, 15%); + border: 1px solid; + border-color: #ccc #ccc #bbb; + border-color: borderColor borderColor fadein(@borderColor, 15%); .border-radius(@borderRadius); @shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); .box-shadow(@shadow); @@ -222,8 +224,6 @@ 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 - -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) { @@ -235,8 +235,6 @@ 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 - -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) { |
