mirror of https://github.com/Nevysha/Cozy-Nest.git
66 lines
1.4 KiB
CSS
66 lines
1.4 KiB
CSS
.main-btn-label {
|
|
writing-mode: vertical-rl;
|
|
width: 25px;
|
|
min-width: 25px !important;
|
|
}
|
|
|
|
.cozy-extra-network {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100% - 20px);
|
|
}
|
|
|
|
.cozy-extra-network > div > .tabs > .tabitem {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.cozy-extra-network > div > .tabs {
|
|
height: 100%;
|
|
}
|
|
|
|
#extra_networks_wrapper {
|
|
position: fixed;
|
|
top: calc(75px + var(--menu-top-height));
|
|
height: calc(100% - (100px + var(--menu-top-height)));
|
|
right: 0;
|
|
|
|
z-index: 9999;
|
|
padding-right: 15px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: var(--block-background-fill) !important;
|
|
}
|
|
|
|
.ExtraNetworkTab {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
}
|
|
.ExtraNetworkTab::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
.ExtraNetworkTab::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.ExtraNetworkTab::-webkit-scrollbar-thumb {
|
|
background-color: var(--ae-primary-color);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.cozy-extra-network > div > .tabs > .tabitem::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
.cozy-extra-network > div > .tabs > .tabitem::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.cozy-extra-network > div > .tabs > .tabitem::-webkit-scrollbar-thumb {
|
|
background-color: var(--ae-primary-color);
|
|
border-radius: 20px;
|
|
} |