diff options
| author | Mark Otto <[email protected]> | 2013-02-04 11:12:09 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-04 11:12:09 -0800 |
| commit | 0a3e3a50fe78dab1ce6e2359a78b6aa5246e3c50 (patch) | |
| tree | d5a7aaaa7cfab8ff436fc71fe6ff44ad3fb210f4 /less/tests/css-tests.css | |
| parent | 1f6a988190d61128279250a444b9f028c35088c1 (diff) | |
| parent | db8a78fae6aed5ecced5f20df65cea352af32bb9 (diff) | |
| download | bootstrap-0a3e3a50fe78dab1ce6e2359a78b6aa5246e3c50.tar.xz bootstrap-0a3e3a50fe78dab1ce6e2359a78b6aa5246e3c50.zip | |
Merge branch '2.3.0-wip' into 3.0.0-wip
Conflicts:
docs/assets/css/bootstrap.css
less/type.less
Diffstat (limited to 'less/tests/css-tests.css')
| -rw-r--r-- | less/tests/css-tests.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/less/tests/css-tests.css b/less/tests/css-tests.css index 8ab487db2..2ca377002 100644 --- a/less/tests/css-tests.css +++ b/less/tests/css-tests.css @@ -114,4 +114,15 @@ body { background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -}
\ No newline at end of file +} + +.gradient-horizontal-three { + background-color: #00b3ee; + background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f)); + background-image: -webkit-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f); + background-image: -moz-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f); + background-image: -o-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f); + background-image: linear-gradient(to right, #00b3ee, #7a43b6 50%, #c3325f); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b3ee', endColorstr='#c3325f', GradientType=0); +} |
