Files
meanTorrent/modules/core/client/less/mt-responsive-tabs.less
2017-09-18 16:17:38 +08:00

102 lines
2.4 KiB
Plaintext

@import (reference) "mt-var.less";
.mt-responsive-tabs-xs {
li {
a {
@media (max-width: @screen-xs-max) {
i {
display: inline-block !important;
}
.tab-title {
display: none !important;
}
.badge {
display: none !important;
}
}
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
i {
display: none !important;;
}
.tab-title {
display: inline-block !important;
}
}
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
i {
display: none !important;;
}
.tab-title {
display: inline-block !important;
}
}
@media (min-width: @screen-lg) {
i {
display: none !important;;
}
.tab-title {
display: inline-block !important;
}
}
}
}
}
.mt-responsive-tabs-sm {
li {
a {
@media (max-width: @screen-xs-max) {
i {
display: inline-block !important;
}
.tab-title {
display: none !important;
}
.badge {
display: none !important;
}
}
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
i {
display: inline-block !important;;
}
.tab-title {
display: none !important;
}
}
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
i {
display: none !important;;
}
.tab-title {
display: inline-block !important;
}
}
@media (min-width: @screen-lg) {
i {
display: none !important;;
}
.tab-title {
display: inline-block !important;
}
}
}
}
}