update tabs border color

This commit is contained in:
Mads Rasmussen
2017-02-22 10:52:39 +01:00
parent 9c4eacf330
commit 86971179ee

View File

@@ -123,7 +123,7 @@
// Give the tabs something to sit on
.nav-tabs {
border-bottom: 1px solid #ddd;
border-bottom: 1px solid @purple-l3;
}
// Make the list-items overlay the bottom border
.nav-tabs > li {
@@ -142,7 +142,7 @@
}
&:hover,
&:focus {
border-color: @grayLighter @grayLighter #ddd;
border-color: transparent transparent @purple-l3;
}
}
// Active state, and it's :hover/:focus to override normal :hover/:focus
@@ -151,7 +151,7 @@
.nav-tabs > .active > a:focus {
color: @black;
background-color: @bodyBackground;
border: 1px solid #ddd;
border: 1px solid @purple-l3;
border-bottom-color: transparent;
cursor: default;
}