| 1 |
/* WP Disable — Folium app: the handful of classes the app emits that aren't |
| 2 |
already in folium-ui.css. Everything else (fl-*, wpd-section/group/metrics/ |
| 3 |
tools-grid/field/warn…) is provided by the shared library. Uses folium-ui |
| 4 |
design tokens so it tracks the active theme. Never styles html/body. */ |
| 5 |
|
| 6 |
/* dependent field row under a toggled-on setting (table layout) */ |
| 7 |
.wpd-subrow > td { |
| 8 |
background: var(--fl-surface-2, rgba(0,0,0,.02)); |
| 9 |
border-top: 0; |
| 10 |
padding-top: 4px; |
| 11 |
} |
| 12 |
.wpd-subrow .wpd-field { |
| 13 |
display: flex; |
| 14 |
align-items: center; |
| 15 |
gap: 10px; |
| 16 |
flex-wrap: wrap; |
| 17 |
} |
| 18 |
|
| 19 |
/* inline action row (import button + hint) */ |
| 20 |
.wpd-actions { |
| 21 |
display: flex; |
| 22 |
align-items: center; |
| 23 |
gap: 10px; |
| 24 |
flex-wrap: wrap; |
| 25 |
} |
| 26 |
|
| 27 |
/* dashboard "by section" jump rows */ |
| 28 |
.wpd-jump { cursor: pointer; } |
| 29 |
.wpd-jump:hover { background: var(--fl-surface-2, rgba(0,0,0,.03)); } |
| 30 |
|
| 31 |
/* post-type checkbox grid (Disable comments on certain post types) */ |
| 32 |
.wpd-pt-grid { |
| 33 |
display: flex; |
| 34 |
flex-wrap: wrap; |
| 35 |
gap: 8px 16px; |
| 36 |
} |
| 37 |
.wpd-pt { |
| 38 |
display: inline-flex; |
| 39 |
align-items: center; |
| 40 |
gap: 6px; |
| 41 |
font-size: 13px; |
| 42 |
color: var(--fl-ink-2, inherit); |
| 43 |
} |
| 44 |
|