74 lines
1.1 KiB
CSS
74 lines
1.1 KiB
CSS
html, body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
|
|
.vcd-sidebar {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 0px;
|
|
background-color: var(--sidebar);
|
|
border: solid 1px var(--sidebar-border);
|
|
min-width: var(--sidebar-min-width);
|
|
}
|
|
|
|
.vcd-sidebar-item {
|
|
color: var(--sidebar-item-text);
|
|
}
|
|
|
|
.vcd-toolbar {
|
|
|
|
}
|
|
|
|
.vcd-render {
|
|
|
|
}
|
|
|
|
.vcd-treeview {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 10px;
|
|
height: 500px;
|
|
background-color: var(--sidebar);
|
|
padding: 10px;
|
|
height: fit-content;
|
|
display: flex;
|
|
box-shadow: 0 0 15px 1px rgb(16, 16, 16);
|
|
border-radius: 1.0em;
|
|
}
|
|
|
|
.vcd-signal-info {
|
|
height: 500px;
|
|
width: 300px;
|
|
padding-right: 5px;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.vcd-signal-wires {
|
|
height: 500px;
|
|
width: 300px;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--sidebar);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #3D4450;
|
|
border-radius: .3em;
|
|
}
|
|
|
|
::-webkit-scrollbar-button {
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background: none;
|
|
display: none;
|
|
} |