1
Is it possible to create CSS classes containing other Bootstrap classes? I have searched but found nothing about it.
Something like:
.minhaclasse {
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
cursor: default;
background-color: #dff0d8;
border-bottom-color: transparent;
}
}
.minhaclasse2 {
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
cursor: default;
background-color: #dff3d8;
border-bottom-color: transparent;
}
}
But it’s not like that. :/
Has as?