Build 2602261523: live updates, invite cleanup and nuclear resync
This commit is contained in:
@@ -1027,6 +1027,30 @@ button span {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
/* Header account menu layering fix */
|
||||
.header {
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.header-right {
|
||||
position: relative;
|
||||
z-index: 40;
|
||||
}
|
||||
|
||||
.signed-in-menu {
|
||||
z-index: 50;
|
||||
}
|
||||
|
||||
.signed-in-dropdown {
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
.header-nav {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.admin-toolbar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@@ -4442,6 +4466,149 @@ button:hover:not(:disabled) {
|
||||
grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
|
||||
}
|
||||
|
||||
.invite-admin-summary-panel {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.invite-admin-summary-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.invite-admin-summary-header h2 {
|
||||
margin: 0;
|
||||
font-size: 0.98rem;
|
||||
}
|
||||
|
||||
.invite-admin-summary-header .lede {
|
||||
margin: 4px 0 0;
|
||||
}
|
||||
|
||||
.invite-admin-summary-list {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
padding: 8px 10px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
||||
background: rgba(255, 255, 255, 0.015);
|
||||
}
|
||||
|
||||
.invite-admin-summary-row .label {
|
||||
font-size: 0.78rem;
|
||||
color: #9ea7b6;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row__value {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 8px 12px;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row__value strong {
|
||||
color: #eef2f7;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row__value span {
|
||||
color: #b3bcc8;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.invite-admin-tabbar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.invite-admin-tabbar .admin-segmented {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.invite-admin-tab-actions {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.invite-form-layout {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.invite-form-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
|
||||
gap: 12px;
|
||||
align-items: start;
|
||||
padding: 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
||||
background: rgba(255, 255, 255, 0.015);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.invite-form-row-label {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.invite-form-row-label > span {
|
||||
color: #e6ebf2;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.invite-form-row-label > small {
|
||||
color: #9ea7b6;
|
||||
font-size: 0.76rem;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.invite-form-row-control {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.invite-form-row-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.invite-form-row-grid > label {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.invite-form-row-grid > label > span {
|
||||
color: #9ea7b6;
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.invite-form-row-control textarea,
|
||||
.invite-form-row-control input,
|
||||
.invite-form-row-control select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.invite-form-row-control--stacked {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.admin-panel > h2 + .lede {
|
||||
margin-top: -2px;
|
||||
}
|
||||
@@ -4462,6 +4629,14 @@ button:hover:not(:disabled) {
|
||||
.invite-admin-bulk-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.invite-form-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.invite-form-row-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
@@ -4499,4 +4674,21 @@ button:hover:not(:disabled) {
|
||||
.invite-admin-summary-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row {
|
||||
grid-template-columns: 1fr;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row__value {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.invite-admin-tabbar {
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.invite-admin-tab-actions {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user