Add CSS styles for textarea

This commit is contained in:
Frédéric Guillot 2020-04-25 20:25:22 -07:00
parent eb8d8e84f2
commit c920a8607c
2 changed files with 30 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

@ -370,6 +370,24 @@ input[type="checkbox"] {
margin-bottom: 15px;
}
textarea {
width: 350px;
color: var(--input-color);
background: var(--input-background);
border: var(--input-border);
padding: 3px;
margin-bottom: 10px;
margin-top: 5px;
-webkit-appearance: none;
}
textarea:focus {
color: var(--input-focus-color);
border-color: var(--input-focus-border-color);
outline: 0;
box-shadow: var(--input-focus-box-shadow);
}
::-moz-placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {