aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2025-11-01 10:15:59 +0100
committerGravatar GitHub <noreply@github.com> 2025-11-01 10:15:59 +0100
commitb0a663f6ee9d28c71643d9a18c955a60b90cb7c1 (patch)
tree60ba1ef87fd73e75c09c1cd62be951e78ea40802 /lib
parentf97d774c59711245e0efa47018afdcabe0620505 (diff)
Fix/improve <textarea> (#8171)
## Feed configuration slider: ### Before: <img width="747" height="346" alt="grafik" src="https://github.com/user-attachments/assets/37056ef8-1163-48d1-a3dd-99e745418b2d" /> ### After: <img width="743" height="473" alt="grafik" src="https://github.com/user-attachments/assets/388a0ef6-633e-43ee-8ea5-5cbe7b40e6e4" /> ## CustomCSS, CustomJS extensions ### Before: <img width="762" height="504" alt="grafik" src="https://github.com/user-attachments/assets/279801fb-06a7-477a-81e7-c681087595a5" /> ### After: <img width="767" height="922" alt="grafik" src="https://github.com/user-attachments/assets/ca4cf304-03c7-4028-89d0-1c3094086176" /> And cleaning some CSS * UserCSS+JS: w100 h50 * clean textarea width height * feed config slider * Update base.rtl.css * fix class="valid-json" * padding + vertical-align * fix ansum mapco
Diffstat (limited to 'lib')
-rw-r--r--lib/core-extensions/UserCSS/configure.phtml2
-rw-r--r--lib/core-extensions/UserJS/configure.phtml2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/core-extensions/UserCSS/configure.phtml b/lib/core-extensions/UserCSS/configure.phtml
index 49f3c2f82..f834f7271 100644
--- a/lib/core-extensions/UserCSS/configure.phtml
+++ b/lib/core-extensions/UserCSS/configure.phtml
@@ -7,7 +7,7 @@
<div class="form-group">
<label class="group-name" for="css-rules"><?= _t('ext.user_css.write_css') ?></label>
<div class="group-controls">
- <textarea name="css-rules" id="css-rules"><?= $this->css_rules ?></textarea>
+ <textarea name="css-rules" id="css-rules" class="w100 h50"><?= $this->css_rules ?></textarea>
</div>
</div>
diff --git a/lib/core-extensions/UserJS/configure.phtml b/lib/core-extensions/UserJS/configure.phtml
index e9e853e4e..1b7b60d6f 100644
--- a/lib/core-extensions/UserJS/configure.phtml
+++ b/lib/core-extensions/UserJS/configure.phtml
@@ -7,7 +7,7 @@
<div class="form-group">
<label class="group-name" for="js-rules"><?= _t('ext.user_js.write_js') ?></label>
<div class="group-controls">
- <textarea name="js-rules" id="js-rules"><?= $this->js_rules ?></textarea>
+ <textarea name="js-rules" id="js-rules" class="w100 h50"><?= $this->js_rules ?></textarea>
</div>
</div>