Merge pull request #640 from devmark/patch-1

navs add different color
pull/648/head
Abdullah Almsaeed 2015-08-21 11:29:38 -04:00
commit fc9554f866
1 changed files with 44 additions and 1 deletions

View File

@ -166,6 +166,49 @@
color: #999;
}
}
// Tab color variations
&.tab-primary {
> .nav-tabs {
> li.active {
border-top-color: @light-blue;
}
}
}
&.tab-info {
> .nav-tabs {
> li.active {
border-top-color: @aqua;
}
}
}
&.tab-danger {
> .nav-tabs {
> li.active {
border-top-color: @red;
}
}
}
&.tab-warning {
> .nav-tabs {
> li.active {
border-top-color: @yellow;
}
}
}
&.tab-success {
> .nav-tabs {
> li.active {
border-top-color: @green;
}
}
}
&.tab-default {
> .nav-tabs {
> li.active {
border-top-color: @gray;
}
}
}
}
/* PAGINATION */
@ -179,4 +222,4 @@
.border-radius(0)!important;
}
}
}
}