fix
This commit is contained in:
parent
d2f4e11390
commit
95e62c2d77
17 changed files with 288 additions and 16 deletions
|
|
@ -256,6 +256,35 @@ a {
|
|||
font-size: 11px;
|
||||
}
|
||||
|
||||
.sidebar-server-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.sidebar-server-action {
|
||||
flex: 1 1 0;
|
||||
min-width: 0;
|
||||
font-size: 12.5px;
|
||||
color: var(--sidebar-text);
|
||||
background: transparent;
|
||||
border-color: var(--sidebar-line);
|
||||
}
|
||||
|
||||
.sidebar-server-action:hover:not(:disabled) {
|
||||
background: var(--sidebar-line);
|
||||
}
|
||||
|
||||
.sidebar-server-action:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.sidebar-server-action-error {
|
||||
padding: 0 4px;
|
||||
color: var(--danger, #e5484d);
|
||||
font-size: 11.5px;
|
||||
}
|
||||
|
||||
.sidebar-label {
|
||||
padding: 0 8px;
|
||||
color: var(--sidebar-faint);
|
||||
|
|
|
|||
|
|
@ -63,6 +63,33 @@
|
|||
gap: 8px;
|
||||
}
|
||||
|
||||
.add-server-link-modal {
|
||||
width: min(920px, 100%);
|
||||
max-height: min(880px, calc(100vh - 48px));
|
||||
}
|
||||
|
||||
.add-server-link-field {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding: 14px;
|
||||
background: var(--panel-subtle);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-md);
|
||||
}
|
||||
|
||||
.add-server-link-field textarea {
|
||||
font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
|
||||
font-size: 12px;
|
||||
word-break: break-all;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.add-server-link-hint {
|
||||
margin: 0;
|
||||
color: var(--muted-2);
|
||||
font-size: 12.5px;
|
||||
}
|
||||
|
||||
.command-body {
|
||||
display: grid;
|
||||
min-height: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue