From: Art Cancro Date: Fri, 5 Nov 2021 23:41:04 +0000 (-0400) Subject: The buttons now look like buttons, the reply button has a nice reply icon in it,... X-Git-Tag: v940~8 X-Git-Url: https://code.citadel.org/?p=citadel;a=commitdiff_plain;h=0f2cd1eb06e1340320826ae0b8af9b5d9d1e3642 The buttons now look like buttons, the reply button has a nice reply icon in it, and they change color when you hover over them. --- diff --git a/webcit-ng/static/css/webcit.css b/webcit-ng/static/css/webcit.css index 3fa6b84dd..55b161906 100644 --- a/webcit-ng/static/css/webcit.css +++ b/webcit-ng/static/css/webcit.css @@ -38,9 +38,23 @@ html,body,h1,h2,h3,h4,h5 { } .ctdl-msg-button { - padding-left: 2px; - padding-right: 2px; - font-weight: bold; + margin-left: 2px; + border-radius: 5px; + background-color: blue; + padding: 2px; + background-color: GhostWhite; + border-style: solid; + border-width: thin; +} + +.ctdl-msg-button:hover { + background-color: black; + color: GhostWhite; + border-style: none; +} + +.ctdl-msg-button a { + text-decoration: none; } .ctdl-avatar { diff --git a/webcit-ng/static/js/views.js b/webcit-ng/static/js/views.js index f4d8e220d..39bbd4eed 100644 --- a/webcit-ng/static/js/views.js +++ b/webcit-ng/static/js/views.js @@ -176,9 +176,12 @@ function forum_render_one(div, msgnum, scroll_to) { + "" // end msgdate + "" // end header info on left side + "" // begin buttons on right side - + "Reply" - + "Delete" - + "Flame" + + "" + + " " + + _("Reply") + + "" + + "Delete" + + "Flame" + ""; // end buttons on right side if (msg.subj) { outmsg +=