summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-04 14:07:44 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-04 14:07:44 (EDT)
commitf44547820a75d613694ce52da1cda440210e514d (patch)
tree34e2a5f54873b1fae915ecffbefc02d60bb9ecb4 /src/utils
parent531b0baf8852b8cffdca5e8c35eb6ae16c6f482e (diff)
downloadmarquee-f44547820a75d613694ce52da1cda440210e514d.zip
marquee-f44547820a75d613694ce52da1cda440210e514d.tar.gz
marquee-f44547820a75d613694ce52da1cda440210e514d.tar.bz2
src/utils/html.c: Style disabled buttons
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/html.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/html.c b/src/utils/html.c
index dbff3be..e5d2993 100644
--- a/src/utils/html.c
+++ b/src/utils/html.c
@@ -182,6 +182,11 @@ static const gchar *styles =
"form input[type=submit]:focus, form input[type=reset]:focus {\n"
"background-color: #EFEFEF;\n"
"}\n"
+ "form input[type=submit]:disabled, form input[type=reset]:disabled {\n"
+ "border: 1px solid #9F9F9F;\n"
+ "background-color: #DFDFDF;\n"
+ "color: #9F9F9F;\n"
+ "}\n"
"iframe {\n"
"width: calc(100% - 12px);\n"
"height: 400px;\n"