79 lines
1.8 KiB
CSS
79 lines
1.8 KiB
CSS
html,
|
|
body.matrix-user-detail {
|
|
min-height: 100vh;
|
|
background: #ffffff !important;
|
|
}
|
|
|
|
body.matrix-user-detail main {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
padding: 16px 18px !important;
|
|
background: #f4f8fb !important;
|
|
}
|
|
|
|
.matrix-user-detail #userdetail {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 2px;
|
|
background: #f4f8fb !important;
|
|
}
|
|
|
|
.matrix-user-detail #userdetail > .row {
|
|
display: grid;
|
|
grid-template-columns: 128px minmax(0, 1fr);
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.matrix-user-detail #userdetail > .row > label,
|
|
.matrix-user-detail #userdetail > .row > div {
|
|
width: auto;
|
|
max-width: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.matrix-user-detail .col-form-label {
|
|
color: #34495c;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.matrix-user-detail .form-control,
|
|
.matrix-user-detail .form-select {
|
|
min-height: 30px;
|
|
border-color: #9fb1c1;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.matrix-user-detail .form-check {
|
|
margin: 2px 0 2px 140px !important;
|
|
}
|
|
|
|
.matrix-user-detail #userdetail > .d-flex {
|
|
margin-top: 4px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid #d5dee6;
|
|
}
|
|
|
|
.matrix-user-detail .invalid-feedback {
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* Keep validation quiet for valid fields; only errors need visual emphasis. */
|
|
.matrix-user-detail .was-validated .form-control:valid,
|
|
.matrix-user-detail .was-validated .form-select:valid {
|
|
padding-right: 7px;
|
|
color: var(--matrix-color-text);
|
|
background-image: none;
|
|
border-color: var(--bs-border-color);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.matrix-user-detail .was-validated .form-control:valid:focus,
|
|
.matrix-user-detail .was-validated .form-select:valid:focus {
|
|
border-color: var(--matrix-color-primary);
|
|
box-shadow: var(--matrix-focus-ring);
|
|
}
|