diff options
| author | Mark Otto <[email protected]> | 2012-07-29 16:25:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-29 16:25:20 -0700 |
| commit | 87ce3489d37ffa58c18de985808757785df8c7cc (patch) | |
| tree | fae7302323425a7c27c6908713a634093edb139d | |
| parent | 761429d88a0716b27c2c78d27dd1da467a8318e3 (diff) | |
| download | bootstrap-87ce3489d37ffa58c18de985808757785df8c7cc.tar.xz bootstrap-87ce3489d37ffa58c18de985808757785df8c7cc.zip | |
remove gradient, border, and box-shadow from .breadcrumb to differentiate from nav and buttons
| -rw-r--r-- | docs/assets/css/bootstrap.css | 21 | ||||
| -rw-r--r-- | less/breadcrumbs.less | 8 |
2 files changed, 8 insertions, 21 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index adfba9b5d..10a955507 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4449,24 +4449,13 @@ input[type="submit"].btn.btn-mini { } .breadcrumb { - padding: 7px 14px; + padding: 8px 15px; margin: 0 0 20px; list-style: none; - background-color: #fbfbfb; - background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5)); - background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); - background-image: linear-gradient(to bottom, #ffffff, #f5f5f5); - background-repeat: repeat-x; - border: 1px solid #ddd; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff5f5f5', GradientType=0); - -webkit-box-shadow: inset 0 1px 0 #ffffff; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 #ffffff; + background-color: #f5f5f5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; } .breadcrumb li { diff --git a/less/breadcrumbs.less b/less/breadcrumbs.less index c8a3807de..80291e82e 100644 --- a/less/breadcrumbs.less +++ b/less/breadcrumbs.less @@ -4,13 +4,11 @@ .breadcrumb { - padding: 7px 14px; + padding: 8px 15px; margin: 0 0 @baseLineHeight; list-style: none; - #gradient > .vertical(@white, #f5f5f5); - border: 1px solid #ddd; - .border-radius(3px); - .box-shadow(inset 0 1px 0 @white); + background-color: #f5f5f5; + .border-radius(4px); li { display: inline-block; .ie7-inline-block(); |
