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.
74 lines
1.1 KiB
74 lines
1.1 KiB
form, form > div { |
|
display: flex; |
|
flex-direction: column; |
|
clear: both; |
|
margin-bottom: 1em; |
|
} |
|
|
|
label { |
|
display: flex; |
|
clear: both; |
|
} |
|
|
|
input { |
|
display: flex; |
|
clear: both; |
|
} |
|
|
|
input, textarea, select { |
|
background-color: var(--color-bg); |
|
color: var(--color-text); |
|
border: 2px solid var(--color-border); |
|
padding: 10px; |
|
border-radius: 0; /* Sharp edges */ |
|
} |
|
|
|
input:focus, textarea:focus, select:focus { |
|
border-color: var(--color-primary); |
|
outline: none; |
|
} |
|
|
|
.help-text { |
|
font-size: 0.8rem; |
|
color: var(--color-text); |
|
font-weight: lighter; |
|
} |
|
|
|
#editor_actions { |
|
display: flex; |
|
flex-direction: row-reverse; |
|
justify-content: space-between; |
|
} |
|
|
|
.image-with-preview { |
|
display: flex; |
|
flex-direction: row; |
|
align-items: start; |
|
} |
|
|
|
.image-with-preview img.avatar { |
|
width: 40px; |
|
height: 40px; |
|
margin-right: 1em; |
|
} |
|
|
|
.image-with-preview input { |
|
flex-grow: 1; |
|
} |
|
|
|
textarea, input { |
|
font-family: var(--font-family), sans-serif; |
|
} |
|
|
|
.quill { |
|
border: 2px solid var(--color-border); |
|
} |
|
|
|
#editor { |
|
margin: 0; |
|
} |
|
|
|
button:disabled { |
|
opacity: 0.5; |
|
cursor: not-allowed; |
|
}
|
|
|