90 lines
1.6 KiB
CSS
90 lines
1.6 KiB
CSS
:root {
|
|
--display-signal-info-height: 50px;
|
|
--signal-default-color: #4CAF50;
|
|
--main-color: #CB81DA;
|
|
--sidebar-width: 280px;
|
|
--right-nav-width: 60px;
|
|
--time-scale-height: 50px;
|
|
}
|
|
|
|
html, body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
overflow: hidden;
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
* hr {
|
|
border: none;
|
|
background-color: var(--vscode-focusBorder);
|
|
height: 2px;
|
|
width: 95%;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--sidebar);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--scrollbar-background);
|
|
border-radius: .3em;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--scrollbar-hover);
|
|
border-radius: .3em;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: var(--scrollbar-active);
|
|
border-radius: .3em;
|
|
}
|
|
|
|
::-webkit-scrollbar-button {
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background: none;
|
|
display: none;
|
|
}
|
|
|
|
.el-select__wrapper {
|
|
background-color: transparent !important;
|
|
width: 50% !important;
|
|
min-width: 200px !important;
|
|
padding: 13px !important;
|
|
font-size: 16px !important;
|
|
color: var(--sidebar-item-text) !important;
|
|
}
|
|
|
|
.el-select__placeholder {
|
|
color: var(--sidebar-item-text) !important;
|
|
}
|
|
|
|
.el-select-dropdown {
|
|
min-width: 300px !important;
|
|
background-color: var(--sidebar);
|
|
border: 1.0px solid var(--main-color);
|
|
outline: none;
|
|
}
|
|
|
|
.el-checkbox-button__inner {
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
.el-select {
|
|
width: fit-content !important;
|
|
}
|
|
|
|
a {
|
|
color: var(--main-color);
|
|
} |