2024-11-30 10:49:47 -08:00
|
|
|
@import "../partials/clean/constants"
|
|
|
|
|
2024-11-20 11:16:46 -08:00
|
|
|
.support-form
|
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
|
|
|
gap: 1em
|
|
|
|
align-items: flex-start
|
|
|
|
|
2024-11-30 10:33:58 -08:00
|
|
|
.fields
|
|
|
|
list-style-type: none
|
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
|
|
|
gap: .75em
|
2024-11-20 11:16:46 -08:00
|
|
|
width: 100%
|
|
|
|
|
2024-11-30 10:49:47 -08:00
|
|
|
> li
|
2024-11-30 10:33:58 -08:00
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
|
|
|
gap: .25em
|
|
|
|
max-width: 60ch
|
2024-11-20 11:16:46 -08:00
|
|
|
|
2024-11-30 11:50:31 -08:00
|
|
|
> label, > .field_with_errors label
|
2024-11-30 10:33:58 -08:00
|
|
|
display: block
|
|
|
|
font-weight: bold
|
2024-11-20 11:16:46 -08:00
|
|
|
|
2024-11-30 11:50:31 -08:00
|
|
|
.field_with_errors
|
|
|
|
> label
|
|
|
|
color: $error-color
|
|
|
|
|
|
|
|
input[type=text], input[type=url]
|
|
|
|
border-color: $error-border-color
|
|
|
|
color: $error-color
|
|
|
|
|
2024-11-30 11:26:23 -08:00
|
|
|
&[data-type=radio]
|
|
|
|
ul
|
|
|
|
list-style-type: none
|
|
|
|
|
2024-11-30 10:49:47 -08:00
|
|
|
&[data-type=radio-grid] // Set the `--num-columns` property to configure!
|
|
|
|
max-width: none
|
|
|
|
|
|
|
|
ul
|
|
|
|
list-style-type: none
|
|
|
|
display: grid
|
|
|
|
grid-template-columns: repeat(var(--num-columns, 1), 1fr)
|
|
|
|
gap: .25em
|
|
|
|
|
|
|
|
label
|
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
gap: .5em
|
|
|
|
padding: .5em 1em
|
|
|
|
border: 1px solid $soft-border-color
|
|
|
|
border-radius: 1em
|
|
|
|
|
|
|
|
input
|
|
|
|
margin: 0
|
|
|
|
|
|
|
|
&:has(:checked)
|
|
|
|
background: $module-bg-color
|
|
|
|
border-color: $module-border-color
|
|
|
|
|
2024-11-30 10:33:58 -08:00
|
|
|
input[type=text], input[type=url]
|
|
|
|
width: 100%
|
|
|
|
min-width: 10ch
|
|
|
|
box-sizing: border-box
|
2024-11-20 11:16:46 -08:00
|
|
|
|
2024-11-30 10:33:58 -08:00
|
|
|
.thumbnail-input
|
2024-11-20 11:16:46 -08:00
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
gap: .25em
|
|
|
|
|
|
|
|
img
|
|
|
|
width: 40px
|
|
|
|
height: 40px
|
|
|
|
|
2024-11-30 10:49:47 -08:00
|
|
|
fieldset
|
2024-11-20 12:07:25 -08:00
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
|
|
|
gap: .25em
|
|
|
|
|
2024-11-30 10:33:58 -08:00
|
|
|
legend
|
|
|
|
font-weight: bold
|
|
|
|
|
2024-11-20 11:16:46 -08:00
|
|
|
.field_with_errors
|
|
|
|
display: contents
|
|
|
|
|
|
|
|
.actions
|
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
gap: 1em
|
|
|
|
|
|
|
|
label
|
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
gap: .25em
|
|
|
|
font-size: .85em
|
|
|
|
font-style: italic
|