mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 04:07:55 +03:00
32 lines
679 B
Plaintext
32 lines
679 B
Plaintext
// main: material.less
|
|
|
|
.nav-tabs {
|
|
background: @navbar-default-bg;
|
|
> li {
|
|
> a {
|
|
color: #FFFFFF;
|
|
border: 0;
|
|
margin: 0;
|
|
&:hover {
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
}
|
|
&.active > a,
|
|
&.active >
|
|
a:hover,
|
|
&.open > a,
|
|
&.open >
|
|
&:hover {
|
|
background-color: transparent !important;
|
|
border: 0 !important;
|
|
color: #FFFFFF !important;
|
|
font-weight: 500;
|
|
}
|
|
&.disabled > a, &.disabled > a:hover {
|
|
color: rgba(255,255,255,0.5);
|
|
}
|
|
}
|
|
|
|
}
|