diff options
| author | Mark Otto <[email protected]> | 2012-07-23 23:56:13 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-23 23:56:13 -0700 |
| commit | cd441e082f25836be85ecc14f0bed4d8e74965b2 (patch) | |
| tree | 2f668aed3f42fb561e9401754b6717fa155e3364 /less | |
| parent | 6245886b269cdba7e8006ebf59165d7558492ec3 (diff) | |
| download | bootstrap-cd441e082f25836be85ecc14f0bed4d8e74965b2.tar.xz bootstrap-cd441e082f25836be85ecc14f0bed4d8e74965b2.zip | |
fixes #4156: don't override border radius if stacked nav has one child
Diffstat (limited to 'less')
| -rw-r--r-- | less/navs.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/navs.less b/less/navs.less index 96723ffc9..4c38f7dbf 100644 --- a/less/navs.less +++ b/less/navs.less @@ -171,10 +171,10 @@ .border-radius(0); } .nav-tabs.nav-stacked > li:first-child > a { - .border-radius(4px 4px 0 0); + .border-top-radius(4px); } .nav-tabs.nav-stacked > li:last-child > a { - .border-radius(0 0 4px 4px); + .border-bottom-radius(4px); } .nav-tabs.nav-stacked > li > a:hover { border-color: #ddd; |
