mirror of https://github.com/anoshenko/rui.git
Bug fixing
This commit is contained in:
parent
9ac68ac0c9
commit
8bfa759230
|
@ -57,9 +57,10 @@ button {
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 1px;
|
padding: 4px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
|
resize: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul:focus {
|
ul:focus {
|
||||||
|
|
|
@ -666,7 +666,8 @@ const (
|
||||||
|
|
||||||
// Resize is the constant for the "resize" property tag.
|
// Resize is the constant for the "resize" property tag.
|
||||||
// The "resize" int property sets whether an element is resizable, and if so, in which directions.
|
// The "resize" int property sets whether an element is resizable, and if so, in which directions.
|
||||||
// Valid values are "none" (0), "both" (1), horizontal (2), and "vertical" (3)
|
// Valid values are "none" / NoneResize (0), "both" / BothResize (1),
|
||||||
|
// "horizontal" / HorizontalResize (2), and "vertical" / VerticalResize (3)
|
||||||
Resize = "resize"
|
Resize = "resize"
|
||||||
|
|
||||||
// UserSelect is the constant for the "user-select" property tag.
|
// UserSelect is the constant for the "user-select" property tag.
|
||||||
|
|
Loading…
Reference in New Issue