kl. Text?nderung
3 // --------------------------------------------------
7 // --------------------------------------------------
11 padding-left: 0; // Override default ul/ol
22 padding: @nav-link-padding;
25 text-decoration: none;
26 background-color: @nav-link-hover-bg;
30 // Disabled state sets text to gray and nukes hover/tab effects
32 color: @nav-disabled-link-color;
36 color: @nav-disabled-link-hover-color;
37 text-decoration: none;
38 background-color: transparent;
49 background-color: @nav-link-hover-bg;
50 border-color: @link-color;
54 // Nav dividers (deprecated with v3.0.1)
56 // This should have been removed in v3 with the dropping of `.nav-list`, but
57 // we missed it. We don't currently support this anywhere, but in the interest
58 // of maintaining backward compatibility in case you use it, it's deprecated.
63 // Prevent IE8 from misplacing imgs
65 // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
73 // -------------------------
75 // Give the tabs something to sit on
77 border-bottom: 1px solid @nav-tabs-border-color;
80 // Make the list-items overlay the bottom border
83 // Actual tabs (as links)
86 line-height: @line-height-base;
87 border: 1px solid transparent;
88 border-radius: @border-radius-base @border-radius-base 0 0;
90 border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;
94 // Active state, and it's :hover to override normal :hover
99 color: @nav-tabs-active-link-hover-color;
100 background-color: @nav-tabs-active-link-hover-bg;
101 border: 1px solid @nav-tabs-active-link-hover-border-color;
102 border-bottom-color: transparent;
107 // pulling this in mainly for less shorthand
110 .nav-tabs-justified();
116 // -------------------------
121 // Links rendered as pills
123 border-radius: @nav-pills-border-radius;
134 color: @nav-pills-active-link-hover-color;
135 background-color: @nav-pills-active-link-hover-bg;
148 margin-left: 0; // no need for this gap between nav items
155 // --------------------------------------------------
157 // Justified nav links
158 // -------------------------
171 > .dropdown .dropdown-menu {
176 @media (min-width: @screen-sm-min) {
187 // Move borders to anchors instead of bottom of list
189 // Mixin for adding on top the shared `.nav-justified` styles for our tabs
190 .nav-tabs-justified {
194 // Override margin from .nav-tabs
196 border-radius: @border-radius-base;
201 > .active > a:focus {
202 border: 1px solid @nav-tabs-justified-link-border-color;
205 @media (min-width: @screen-sm-min) {
207 border-bottom: 1px solid @nav-tabs-justified-link-border-color;
208 border-radius: @border-radius-base @border-radius-base 0 0;
212 > .active > a:focus {
213 border-bottom-color: @nav-tabs-justified-active-link-border-color;
220 // -------------------------
222 // Hide tabbable panes to start, show them when `.active`
234 // -------------------------
236 // Specific dropdowns
237 .nav-tabs .dropdown-menu {
238 // make dropdown border overlap tab border
240 // Remove the top rounded corners here since there is a hard edge above the menu
241 .border-top-radius(0);