From 8bfa759230027d9d9739088e2b03b739905a8e33 Mon Sep 17 00:00:00 2001 From: anoshenko Date: Wed, 24 Apr 2024 13:49:16 +0300 Subject: [PATCH] Bug fixing --- app_styles.css | 3 ++- propertyNames.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app_styles.css b/app_styles.css index 2e090a5..1af77fa 100644 --- a/app_styles.css +++ b/app_styles.css @@ -57,9 +57,10 @@ button { textarea { margin: 2px; - padding: 1px; + padding: 4px; overflow: auto; font-size: inherit; + resize: none; } ul:focus { diff --git a/propertyNames.go b/propertyNames.go index 1469d9e..8a9c08d 100644 --- a/propertyNames.go +++ b/propertyNames.go @@ -666,7 +666,8 @@ const ( // 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. - // 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" // UserSelect is the constant for the "user-select" property tag.