This is an automated email from the ASF dual-hosted git repository.
joao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 5f8077824af Implemented the lateral expansion of the area-box in the
forms (create/update) of the quota tariff (#9681)
5f8077824af is described below
commit 5f8077824af8b3fc82beaf13059ecb6c2116ac70
Author: Layon <[email protected]>
AuthorDate: Tue Sep 17 09:06:50 2024 -0300
Implemented the lateral expansion of the area-box in the forms
(create/update) of the quota tariff (#9681)
---
ui/src/style/objects/form.scss | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/ui/src/style/objects/form.scss b/ui/src/style/objects/form.scss
index ba56694ed38..8ed115b68c4 100644
--- a/ui/src/style/objects/form.scss
+++ b/ui/src/style/objects/form.scss
@@ -18,11 +18,20 @@
.form {
width: 80vw;
- .full-width-input {
- width: 100%;
- }
-
@media (min-width: 500px) {
- width: 400px;
+ width: fit-content;
+ min-width: 20vw;
}
}
+
+.form textarea {
+ resize: both;
+ min-width: 20vw;
+ max-width: 80vw;
+}
+
+.ant-input-number,
+.ant-calendar-picker {
+ width: 100%;
+}
+