Files
matrix/cygnus-onprem-app/build/WebContent/css/dialog-form-v3.css

65 lines
1.2 KiB
CSS

.matrix-dialog-form {
min-height: 100vh;
padding: 12px;
background: #f3f6f9;
}
.matrix-dialog-form__content {
width: 100%;
max-width: 680px;
margin: 0 auto;
}
.matrix-dialog-form__card {
overflow: hidden;
border-color: #cbd5df;
box-shadow: 0 2px 8px rgba(31, 52, 72, .08);
}
.matrix-dialog-form .card-header {
min-height: 36px;
padding: 6px 10px;
font-size: 13px;
font-weight: 700;
}
.matrix-dialog-form .card-body {
padding: 14px;
}
.matrix-dialog-form .form-label {
margin-bottom: 3px;
color: #34495e;
font-size: 12px;
font-weight: 600;
}
.matrix-dialog-form .form-label.required::before {
margin-right: 2px;
color: var(--matrix-color-danger);
content: "*";
}
.matrix-dialog-form__section-title {
padding-bottom: 5px;
color: #31516e;
border-bottom: 1px solid #dce3ea;
font-size: 12px;
font-weight: 700;
letter-spacing: .03em;
text-transform: uppercase;
}
.matrix-dialog-form__actions {
position: sticky;
bottom: 0;
display: flex;
justify-content: flex-end;
gap: 8px;
margin-top: 10px;
padding: 8px;
background: #fff;
border: 1px solid #cbd5df;
border-radius: 4px;
}