69 lines
897 B
CSS
69 lines
897 B
CSS
.idm-page {
|
|
display: grid;
|
|
gap: 18px;
|
|
width: 100%;
|
|
max-width: 1480px;
|
|
}
|
|
|
|
.idm-heading {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.idm-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.idm-table-stack {
|
|
display: grid;
|
|
gap: 18px;
|
|
width: 100%;
|
|
}
|
|
|
|
.idm-table-stack > .card {
|
|
width: 100%;
|
|
}
|
|
|
|
.idm-check-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.idm-check-list label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--text);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.idm-identity {
|
|
display: grid;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.idm-id {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 12px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.idm-muted {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.idm-empty {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.idm-dialog-change-request {
|
|
padding-top: 2px;
|
|
}
|