mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
add inactive color border to inactive tabs
This commit is contained in:
parent
526f52aa85
commit
74682de85a
|
@ -241,3 +241,20 @@ td {
|
|||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
.tabs__item {
|
||||
border-bottom-color: var(--ifm-tabs-color-inactive-border);
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.tabs__item--active {
|
||||
border-bottom-color: var(--ifm-tabs-color-active-border);
|
||||
}
|
||||
.tabs__item:hover {
|
||||
background-color: var(--ifm-hover-overlay);
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
Loading…
Reference in a new issue