feat: bind public vestibules to domain login gates
This commit is contained in:
parent
2c50b28557
commit
b24d5b5452
6 changed files with 147 additions and 22 deletions
|
|
@ -3142,6 +3142,28 @@ select:focus-visible {
|
|||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.domain-target-picker {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
gap: 6px;
|
||||
padding: 14px 20px 0;
|
||||
}
|
||||
|
||||
.domain-target-picker button {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
min-height: 52px;
|
||||
padding: 8px 6px;
|
||||
border: 1px solid var(--lake-border-soft);
|
||||
border-radius: 9px;
|
||||
background: rgba(7, 17, 29, .62);
|
||||
color: var(--lake-text-soft);
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
.domain-target-picker button span { color: var(--lake-muted); }
|
||||
.domain-target-picker button[data-selected="true"] { border-color: var(--lake-accent); background: var(--lake-accent-soft); color: var(--lake-text); }
|
||||
|
||||
.domain-node-modes {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
|
|
@ -3149,15 +3171,19 @@ select:focus-visible {
|
|||
padding: 16px 20px;
|
||||
}
|
||||
|
||||
.domain-node-modes article {
|
||||
.domain-node-modes button {
|
||||
display: flex;
|
||||
gap: 11px;
|
||||
padding: 13px;
|
||||
border: 1px solid var(--lake-border-soft);
|
||||
border-radius: 11px;
|
||||
background: rgba(7, 17, 29, .62);
|
||||
color: var(--lake-text);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.domain-node-modes button[data-selected="true"] { border-color: var(--lake-accent); background: var(--lake-accent-soft); }
|
||||
|
||||
.domain-node-modes svg {
|
||||
width: 19px;
|
||||
color: var(--lake-accent);
|
||||
|
|
@ -3224,6 +3250,7 @@ select:focus-visible {
|
|||
}
|
||||
|
||||
@media (max-width: 660px) {
|
||||
.domain-target-picker { grid-template-columns: 1fr 1fr; }
|
||||
.domain-node-modes { grid-template-columns: 1fr; }
|
||||
.domain-connection-sheet .storage-sheet-footer { flex-wrap: wrap; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue