aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-12-04 04:27:29 +0300
committerGravatar Vitaly Takmazov2023-12-04 04:27:29 +0300
commitb4b82b8cd4866578763cc6bc6e20b35c054f1ace (patch)
tree630a2190e5c7c0e05e53c2c554fe5e215ea5c901 /src
parent65ad66155d35a7f74e67556f111e0e9c2213f4cc (diff)
style: hide resize grip on textareas
Diffstat (limited to 'src')
-rw-r--r--src/main/assets/style.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/assets/style.css b/src/main/assets/style.css
index a714388f..e8ddad56 100644
--- a/src/main/assets/style.css
+++ b/src/main/assets/style.css
@@ -539,7 +539,8 @@ article .tags > a::before,
flex-grow: 1;
outline: none !important;
padding: 4px;
- resize: vertical;
+ overflow: auto;
+ resize: none;
vertical-align: top;
}
@@ -882,7 +883,8 @@ blockquote {
/* textarea on the /post page */
border: 1px solid #DDD;
padding: 2px;
- resize: vertical;
+ resize: none;
+ overflow: auto;
width: 100%;
}