diff options
| author | Mark Otto <[email protected]> | 2012-08-17 11:31:21 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-17 11:31:21 -0700 |
| commit | b86e1fb62a25fcd955b1dbe5764788f2de36b735 (patch) | |
| tree | 581feb074855f77fe1f8bd556b98e67fcea9c877 | |
| parent | b8715ddfd03514da7fd56c46204d460cbb95dfcf (diff) | |
| download | bootstrap-b86e1fb62a25fcd955b1dbe5764788f2de36b735.tar.xz bootstrap-b86e1fb62a25fcd955b1dbe5764788f2de36b735.zip | |
additional navbar contrast: add inset shadow since we nuked the border
| -rw-r--r-- | docs/assets/css/bootstrap.css | 12 | ||||
| -rw-r--r-- | less/navbar.less | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 2418692df..b658de19a 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4171,9 +4171,9 @@ input[type="submit"].btn.btn-mini { } .navbar-fixed-top .navbar-inner { - -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); - box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); } .navbar-fixed-bottom { @@ -4181,9 +4181,9 @@ input[type="submit"].btn.btn-mini { } .navbar-fixed-bottom .navbar-inner { - -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); - box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); } .navbar .nav { diff --git a/less/navbar.less b/less/navbar.less index f97afa697..8d82bec31 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -172,7 +172,7 @@ .navbar-fixed-top { top: 0; .navbar-inner { - .box-shadow(0 1px 10px rgba(0,0,0,.1)); + .box-shadow(~"inset 0 -1px 0 rgba(0,0,0,.1), 0 1px 10px rgba(0,0,0,.1)"); } } @@ -180,7 +180,7 @@ .navbar-fixed-bottom { bottom: 0; .navbar-inner { - .box-shadow(0 -1px 10px rgba(0,0,0,.1)); + .box-shadow(~"inset 0 1px 0 rgba(0,0,0,.1), 0 -1px 10px rgba(0,0,0,.1)"); } } |
