mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
32 lines
No EOL
527 B
CSS
32 lines
No EOL
527 B
CSS
.TextArea {
|
|
/* Remember the margin! */
|
|
height: calc(100% - 4px);
|
|
width: calc(100% - 4px);
|
|
|
|
border-radius: 25px;
|
|
border-width: 0;
|
|
|
|
min-height: 28px;
|
|
padding: 10px 20px;
|
|
margin: 2px;
|
|
|
|
color: var(--fg-field-off);
|
|
background-color: var(--bg-field-off);
|
|
|
|
font-family: var(--font-regular);
|
|
}
|
|
|
|
.TextArea:focus {
|
|
outline: 0;
|
|
|
|
color: var(--fg-field-on);
|
|
background-color: var(--bg-field-on);
|
|
}
|
|
|
|
.TextAreaResizable {
|
|
resize: vertical;
|
|
}
|
|
|
|
.TextAreaNoResize {
|
|
resize: none;
|
|
} |