Created
September 18, 2013 15:21
-
-
Save lavoiesl/6610753 to your computer and use it in GitHub Desktop.
Add tabs-left, tabs-right and tabs-below in bootstrap 3 Credit: http://stackoverflow.com/questions/18432577/stacked-tabs-in-bootstrap-3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/questions/18432577/stacked-tabs-in-bootstrap-3 | |
.tabs-below, .tabs-right, .tabs-left { | |
.nav-tabs { | |
border-bottom: 0; | |
} | |
} | |
.tab-content > .tab-pane, | |
.pill-content > .pill-pane { | |
display: none; | |
} | |
.tab-content > .active, | |
.pill-content > .active { | |
display: block; | |
} | |
.tabs-below { | |
> .nav-tabs { | |
border-top: 1px solid #ddd; | |
> li { | |
margin-top: -1px; | |
margin-bottom: 0; | |
> a { | |
-webkit-border-radius: 0 0 4px 4px; | |
-moz-border-radius: 0 0 4px 4px; | |
border-radius: 0 0 4px 4px; | |
&:hover, &:focus { | |
border-top-color: #ddd; | |
border-bottom-color: transparent; | |
} | |
} | |
} | |
> .active a { | |
&, &:hover, &:focus { | |
border-color: transparent #ddd #ddd #ddd; | |
} | |
} | |
} | |
} | |
.tabs-left, .tabs-right { | |
> .nav-tabs > li { | |
float: none; | |
> a { | |
min-width: 74px; | |
margin-right: 0; | |
margin-bottom: 3px; | |
} | |
} | |
} | |
.tabs-left > .nav-tabs { | |
float: left; | |
margin-right: 19px; | |
border-right: 1px solid #ddd; | |
> li > a { | |
margin-right: -1px; | |
-webkit-border-radius: 4px 0 0 4px; | |
-moz-border-radius: 4px 0 0 4px; | |
border-radius: 4px 0 0 4px; | |
&:hover, &:focus { | |
border-color: #eee #ddd #eee #eee; | |
} | |
} | |
> .active a { | |
&, &:hover, &:focus { | |
border-color: #ddd transparent #ddd #ddd; | |
*border-right-color: #fff; | |
} | |
} | |
} | |
.tabs-right > .nav-tabs { | |
float: right; | |
margin-left: 19px; | |
border-left: 1px solid #ddd; | |
> li > a { | |
margin-left: -1px; | |
-webkit-border-radius: 0 4px 4px 0; | |
-moz-border-radius: 0 4px 4px 0; | |
border-radius: 0 4px 4px 0; | |
&:hover, &:focus { | |
border-color: #eee #eee #eee #ddd; | |
} | |
} | |
> .active a { | |
&, &:hover, &:focus { | |
border-color: #ddd #ddd #ddd transparent; | |
*border-left-color: #fff; | |
} | |
} | |
} |
Thats great, can we have something like this here
http://jsfiddle.net/996Bw/
Basically the top, right and bottom border to cover the pane
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have problems with content height inside the tab-content. The trick above resolved my issue: