40 lines
1.2 KiB
CSS
40 lines
1.2 KiB
CSS
.sub-tab-container {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
display: flex !important;
|
|
justify-content: flex-start !important;
|
|
border-bottom: 1px solid #ddd !important;
|
|
}
|
|
|
|
.sub-tab-container .sub-tab {
|
|
margin: 0 !important;
|
|
background: none !important;
|
|
border: none !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.sub-tab-container .sub-tab a {
|
|
text-decoration: none !important;
|
|
display: block !important;
|
|
padding: 10px 15px !important;
|
|
color: #555 !important;
|
|
border: none !important;
|
|
font-size: 14px !important;
|
|
font-weight: normal !important;
|
|
margin: 0 !important;
|
|
background: transparent !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.sub-tab-container .sub-tab a:hover {
|
|
color: #000 !important; /* Цвет текста при наведении */
|
|
}
|
|
|
|
.sub-tab-container .sub-tab.active a {
|
|
color: #000 !important; /* Черный текст для активного таба */
|
|
font-weight: 600 !important; /* Жирный шрифт */
|
|
border-bottom: 1px solid #000 !important; /* Черная активная полоска снизу */
|
|
background-color: transparent !important; /* Без фона */
|
|
border-radius: 0 !important; /* Без скруглений */
|
|
}
|