Commit b86e1fb6 authored by Mark Otto's avatar Mark Otto

additional navbar contrast: add inset shadow since we nuked the border

parent b8715ddf
...@@ -4171,9 +4171,9 @@ input[type="submit"].btn.btn-mini { ...@@ -4171,9 +4171,9 @@ input[type="submit"].btn.btn-mini {
} }
.navbar-fixed-top .navbar-inner { .navbar-fixed-top .navbar-inner {
-webkit-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: 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: 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 { .navbar-fixed-bottom {
...@@ -4181,9 +4181,9 @@ input[type="submit"].btn.btn-mini { ...@@ -4181,9 +4181,9 @@ input[type="submit"].btn.btn-mini {
} }
.navbar-fixed-bottom .navbar-inner { .navbar-fixed-bottom .navbar-inner {
-webkit-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: 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: 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 { .navbar .nav {
......
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
.navbar-fixed-top { .navbar-fixed-top {
top: 0; top: 0;
.navbar-inner { .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 @@ ...@@ -180,7 +180,7 @@
.navbar-fixed-bottom { .navbar-fixed-bottom {
bottom: 0; bottom: 0;
.navbar-inner { .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)");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment