summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorTAKAHASHI Shuuji2022-12-12 01:25:48 +0900
committerGitHub2022-12-11 09:25:48 -0700
commit6d473a83cc791daaaf8ecadb06315be8594e2990 (patch)
tree51c3f1ff0606816bbbb997b189197d7dda48bc34 /static
parent9405698e3c7817b353b31fb7c2c3b4fea2d56783 (diff)
downloadtakahe-6d473a83cc791daaaf8ecadb06315be8594e2990.tar.gz
takahe-6d473a83cc791daaaf8ecadb06315be8594e2990.tar.bz2
takahe-6d473a83cc791daaaf8ecadb06315be8594e2990.zip
Add the character counter next to the Post button (#152)
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 267549a..80a26ab 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -93,11 +93,13 @@ td a {
--color-text-dull: #99a;
--color-text-main: #fff;
--color-text-link: rgb(176, 194, 206);
+ --color-text-error: #f44336;
--color-input-border: #000;
--color-input-border-active: #444b5d;
--color-button-main: #444b5d;
--color-button-main-hover: #515d7c;
+ --color-button-disabled: #7c9c97;
--color-bg3: #444b5d;
}
@@ -666,6 +668,11 @@ button.toggle,
background: var(--color-bg-main);
}
+button[disabled],
+.button[disabled] {
+ background: var(--color-button-disabled);
+}
+
button.left,
.button.left {
float: left;