Add CSS styles for textarea
This commit is contained in:
parent
eb8d8e84f2
commit
c920a8607c
2 changed files with 30 additions and 12 deletions
File diff suppressed because one or more lines are too long
|
@ -370,6 +370,24 @@ input[type="checkbox"] {
|
||||||
margin-bottom: 15px;
|
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,
|
::-moz-placeholder,
|
||||||
::-ms-input-placeholder,
|
::-ms-input-placeholder,
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
|
|
Loading…
Add table
Reference in a new issue