Refresh invite operations workspace
This commit is contained in:
@@ -4557,6 +4557,51 @@ button:hover:not(:disabled) {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.invite-operations-strip {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.invite-operations-strip > button {
|
||||
display: grid;
|
||||
gap: 5px;
|
||||
min-height: 112px;
|
||||
padding: 14px;
|
||||
border: 1px solid rgba(126, 215, 255, 0.18);
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(135deg, rgba(14, 165, 233, 0.055), rgba(255, 255, 255, 0.018));
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.invite-operations-strip > button:hover {
|
||||
border-color: rgba(126, 215, 255, 0.42);
|
||||
background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(255, 255, 255, 0.026));
|
||||
}
|
||||
|
||||
.invite-operations-strip span,
|
||||
.invite-operations-strip small {
|
||||
color: #9ea7b6;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.invite-operations-strip span {
|
||||
font-weight: 750;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.invite-operations-strip strong {
|
||||
color: #eef7ff;
|
||||
font-size: 1.55rem;
|
||||
}
|
||||
|
||||
.invite-operations-strip small {
|
||||
align-self: end;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.invite-admin-summary-tile {
|
||||
min-height: 96px;
|
||||
}
|
||||
@@ -4685,6 +4730,128 @@ button:hover:not(:disabled) {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.invite-automation-card {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.invite-automation-card > div:first-child {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.invite-readiness-list {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.invite-readiness-list > button {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 9px 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.055);
|
||||
background: rgba(255, 255, 255, 0.018);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.invite-readiness-list span {
|
||||
color: #9ea7b6;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.invite-readiness-list strong {
|
||||
color: #dceafa;
|
||||
font-size: 0.7rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.invite-list-heading {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.invite-list-heading h2,
|
||||
.invite-list-heading p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.invite-view-filter {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.invite-view-filter legend {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.invite-view-filter button {
|
||||
padding: 7px 10px;
|
||||
border-color: rgba(255, 255, 255, 0.07);
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
color: #aeb8c7;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.invite-view-filter button.is-active {
|
||||
border-color: rgba(126, 215, 255, 0.38);
|
||||
background: rgba(14, 165, 233, 0.1);
|
||||
color: #eaf8ff;
|
||||
}
|
||||
|
||||
.invite-list-item {
|
||||
border-left: 3px solid rgba(126, 215, 255, 0.4);
|
||||
}
|
||||
|
||||
.invite-list-item.is-ready {
|
||||
border-left-color: #48e0b2;
|
||||
}
|
||||
|
||||
.invite-list-item.is-expired,
|
||||
.invite-list-item.is-exhausted,
|
||||
.invite-list-item.is-profile_unavailable {
|
||||
border-left-color: #ffc56d;
|
||||
}
|
||||
|
||||
.invite-list-item.is-disabled {
|
||||
border-left-color: #7e8999;
|
||||
}
|
||||
|
||||
.invite-state-pill.is-ready {
|
||||
border-color: rgba(72, 224, 178, 0.32);
|
||||
color: #69edc5;
|
||||
}
|
||||
|
||||
.invite-state-pill.is-expired,
|
||||
.invite-state-pill.is-exhausted,
|
||||
.invite-state-pill.is-profile_unavailable {
|
||||
border-color: rgba(255, 197, 109, 0.34);
|
||||
color: #ffd38a;
|
||||
}
|
||||
|
||||
.invite-attention-reason {
|
||||
margin: 5px 0 0;
|
||||
color: #ffc56d;
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.invite-admin-bulk-panel .user-bulk-groups {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
@@ -4772,6 +4939,32 @@ button:hover:not(:disabled) {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.invite-expiry-presets {
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.invite-expiry-presets > span {
|
||||
color: #9ea7b6;
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.invite-expiry-presets > div {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.invite-expiry-presets button {
|
||||
padding: 7px 9px;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.invite-expiry-presets small {
|
||||
color: #aeb8c7;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.invite-email-template-picker {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@@ -4831,6 +5024,10 @@ button:hover:not(:disabled) {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.invite-operations-strip {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.invite-admin-bulk-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
@@ -4880,6 +5077,19 @@ button:hover:not(:disabled) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.invite-operations-strip {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.invite-list-heading {
|
||||
align-items: stretch;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.invite-view-filter {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.invite-admin-summary-row {
|
||||
grid-template-columns: 1fr;
|
||||
align-items: start;
|
||||
|
||||
Reference in New Issue
Block a user