Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions less/navs.less
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,13 @@

// Links rendered as pills
> a {
border-radius: 5px;
border-radius: 0;
border-left: 1px solid @nav-tabs-border-color;
border-top: 1px solid @nav-tabs-border-color;
border-bottom: 1px solid @nav-tabs-border-color;
}
+ li {
margin-left: 2px;
margin-left: 0px;
}

// Active state
Expand All @@ -137,6 +140,15 @@
}
}
}

> li:nth-of-type(1) > a {
border-radius: @nav-pills-border-radius 0 0 @nav-pills-border-radius;
}

> li:nth-last-of-type(1) > a {
border-radius: 0 @nav-pills-border-radius @nav-pills-border-radius 0;
border-right: 1px solid @nav-tabs-border-color;
}
}


Expand Down