mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
431 B
29 lines
431 B
.FormRow {
|
|
display: flex;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.FormRow label {
|
|
width: 350px;
|
|
padding: 6px 12px;
|
|
text-align: right;
|
|
}
|
|
|
|
.FormRow input {
|
|
flex: 1;
|
|
font-family: monospace;
|
|
border: var(--box-border);
|
|
border-radius: var(--border-radius);
|
|
padding: 4px;
|
|
margin: 2px 3px;
|
|
}
|
|
|
|
.FormRow_unit {
|
|
color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.invalid {
|
|
border: 2px solid #faa !important;
|
|
background-color: rgba(255, 0, 0, 0.05);
|
|
}
|