Added input sections stubs, Added textarea basic rules

Update index.php, inputs.php, and 3 more files...
This commit is contained in:
2024-11-26 22:54:02 +01:00
parent c2f002eaee
commit 697e0f01f5
5 changed files with 166 additions and 22 deletions

View File

@@ -132,9 +132,20 @@ button + button, .button-link + .button-link > button {
//}
}
textarea {
&.no-resize {
resize: none;
}
}
// TODO: Move to core !
.ta-resize {
resize: both;
}
.ta-resize-h {
resize: horizontal;
}
.ta-resize-v {
resize: vertical;
}
.ta-resize-none {
resize: none;
}