29 lines
534 B
CSS
29 lines
534 B
CSS
/* Inline Umbrella graph mounted into Hermes WebUI's Workspace right panel. */
|
|
|
|
.svrnty-graph-btn.active {
|
|
background: var(--accent-bg);
|
|
color: var(--accent-text);
|
|
}
|
|
|
|
.svrnty-umbrella-inline-surface {
|
|
display: none;
|
|
flex: 1;
|
|
min-height: 0;
|
|
background: var(--bg, #0f1115);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.svrnty-umbrella-inline-surface[data-open="true"] {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.svrnty-umbrella-inline-frame {
|
|
width: 100%;
|
|
height: 100%;
|
|
flex: 1;
|
|
min-height: 0;
|
|
border: 0;
|
|
background: #0f1115;
|
|
}
|