Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeonghwan <ej88ej@gmail.com>2013-10-16 18:20:34 +0400
committerjeonghwan <ej88ej@gmail.com>2013-10-16 18:20:34 +0400
commit976f6dfdad663e43237a3da07cb64a41932f264e (patch)
treeb3a3b252861c9f9071935829c68911b2f2daf4d3 /less/navbar.less
parente317e116fda3b43a79cca672e120f5930a612ee1 (diff)
Fixes issue #11122 -- navbar-fixed-bottom border
Enable border-top in .navbar-fixed-bottom
Diffstat (limited to 'less/navbar.less')
-rw-r--r--less/navbar.less3
1 files changed, 2 insertions, 1 deletions
diff --git a/less/navbar.less b/less/navbar.less
index d054b400d0..cc3e1f2134 100644
--- a/less/navbar.less
+++ b/less/navbar.less
@@ -128,7 +128,6 @@
position: fixed;
right: 0;
left: 0;
- border-width: 0 0 1px;
// Undo the rounded corners
@media (min-width: @grid-float-breakpoint) {
@@ -138,10 +137,12 @@
.navbar-fixed-top {
z-index: @zindex-navbar-fixed;
top: 0;
+ border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0; // override .navbar defaults
+ border-width: 1px 0 0;
}