File size: 911 Bytes
8cdca00 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /* Config page specific styles (shared styles moved to common.css). */
.config-section {
background: #fff;
border: 1px solid transparent;
border-radius: 12px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
transition: border-color 0.2s ease;
}
.config-section:hover {
border-color: #000;
}
.config-section-title {
font-size: 14px;
font-weight: 600;
color: var(--accents-7);
}
.config-grid {
display: grid;
gap: 14px;
}
.config-field {
padding-top: 2px;
position: relative;
}
.config-field-title {
font-size: 13px;
font-weight: 600;
color: var(--accents-7);
}
.config-field-desc {
font-size: 12px;
color: var(--accents-4);
line-height: 1.5;
}
.config-field-input {
margin-top: 6px;
}
.config-field.has-action {
padding-right: 44px;
}
.config-field-action {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
|