diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-04 14:07:44 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-04 14:07:44 (EDT) |
commit | f44547820a75d613694ce52da1cda440210e514d (patch) | |
tree | 34e2a5f54873b1fae915ecffbefc02d60bb9ecb4 | |
parent | 531b0baf8852b8cffdca5e8c35eb6ae16c6f482e (diff) | |
download | marquee-f44547820a75d613694ce52da1cda440210e514d.zip marquee-f44547820a75d613694ce52da1cda440210e514d.tar.gz marquee-f44547820a75d613694ce52da1cda440210e514d.tar.bz2 |
src/utils/html.c: Style disabled buttons
-rw-r--r-- | src/utils/html.c | 5 |
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" |