Extract alt style form CSS into a new "support-form" class
Gonna use this for item editing too, I think!
This commit is contained in:
parent
4cbac13df1
commit
270b27c1d2
2 changed files with 50 additions and 51 deletions
|
@ -2,54 +2,3 @@
|
||||||
width: 300px
|
width: 300px
|
||||||
height: 300px
|
height: 300px
|
||||||
margin: 0 auto
|
margin: 0 auto
|
||||||
|
|
||||||
.alt-style-form
|
|
||||||
display: flex
|
|
||||||
flex-direction: column
|
|
||||||
gap: 1em
|
|
||||||
align-items: flex-start
|
|
||||||
|
|
||||||
fieldset
|
|
||||||
width: 100%
|
|
||||||
display: grid
|
|
||||||
grid-template-columns: auto 1fr
|
|
||||||
align-items: center
|
|
||||||
gap: 1em
|
|
||||||
|
|
||||||
> *:nth-child(2n)
|
|
||||||
width: 40rch
|
|
||||||
max-width: 100%
|
|
||||||
box-sizing: border-box
|
|
||||||
|
|
||||||
input[type=url]
|
|
||||||
font-size: .85em
|
|
||||||
|
|
||||||
label
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
.thumbnail-field
|
|
||||||
display: flex
|
|
||||||
align-items: center
|
|
||||||
gap: .25em
|
|
||||||
|
|
||||||
img
|
|
||||||
width: 40px
|
|
||||||
height: 40px
|
|
||||||
|
|
||||||
input
|
|
||||||
flex: 1 0 20ch
|
|
||||||
|
|
||||||
.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
|
|
||||||
|
|
50
app/assets/stylesheets/application/support_form.sass
Normal file
50
app/assets/stylesheets/application/support_form.sass
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
.support-form
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
gap: 1em
|
||||||
|
align-items: flex-start
|
||||||
|
|
||||||
|
fieldset
|
||||||
|
width: 100%
|
||||||
|
display: grid
|
||||||
|
grid-template-columns: auto 1fr
|
||||||
|
align-items: center
|
||||||
|
gap: 1em
|
||||||
|
|
||||||
|
> *:nth-child(2n)
|
||||||
|
width: 40rch
|
||||||
|
max-width: 100%
|
||||||
|
box-sizing: border-box
|
||||||
|
|
||||||
|
input[type=url]
|
||||||
|
font-size: .85em
|
||||||
|
|
||||||
|
label
|
||||||
|
font-weight: bold
|
||||||
|
|
||||||
|
.thumbnail-field
|
||||||
|
display: flex
|
||||||
|
align-items: center
|
||||||
|
gap: .25em
|
||||||
|
|
||||||
|
img
|
||||||
|
width: 40px
|
||||||
|
height: 40px
|
||||||
|
|
||||||
|
input
|
||||||
|
flex: 1 0 20ch
|
||||||
|
|
||||||
|
.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
|
Loading…
Reference in a new issue