- removed an extra </select> on message selector on the top
authorThierry Pasqualier <thierry@uncensored.citadel.org>
Wed, 7 Nov 2007 15:56:58 +0000 (15:56 +0000)
committerThierry Pasqualier <thierry@uncensored.citadel.org>
Wed, 7 Nov 2007 15:56:58 +0000 (15:56 +0000)
- removed font bold on messages buttons

webcit/messages.c
webcit/static/webcit.css

index dd520d289cf0c62800351d0005b0954eac1face8..1160e7dfbfe7f513de9856a90420b9438948e48a 100644 (file)
@@ -2474,7 +2474,7 @@ void readloop(char *oper)
         */
        if (is_bbview) {
                /** begin bbview scroller */
-               wprintf("<form name=\"msgomatictop\" class=\"selector_top\" >");
+               wprintf("<form name=\"msgomatictop\" class=\"selector_top\" > \n <p>");
                wprintf(_("Reading #"), lowest_displayed, highest_displayed);
 
                wprintf("<select name=\"whichones\" size=\"1\" "
@@ -2548,7 +2548,7 @@ void readloop(char *oper)
                wprintf(_("newest to oldest"));
                wprintf("\n");
        
-               wprintf("</select></form>\n");
+               wprintf("</p></form>\n");
                /** end bbview scroller */
        }
 
@@ -2646,7 +2646,7 @@ void readloop(char *oper)
         */
        if (is_bbview) {
                /** begin bbview scroller */
-               wprintf("<form name=\"msgomatic\" class=\"selector_bottom\" >");
+               wprintf("<form name=\"msgomatic\" class=\"selector_bottom\" > \n <p>");
                wprintf(_("Reading #"), lowest_displayed, highest_displayed);
 
                wprintf("<select name=\"whichones\" size=\"1\" "
@@ -2719,7 +2719,7 @@ void readloop(char *oper)
                wprintf(_("newest to oldest"));
                wprintf("\n");
 
-               wprintf("</form>\n");
+               wprintf("</p></form>\n");
                /** end bbview scroller */
        }
        
index 5cca2d9c8e53d5f92e34e9f96136c1d7742c9d35..628549ce93ba69b36911c961507a4dce2136bc24 100644 (file)
@@ -444,12 +444,20 @@ a:visited { color: purple; }
 
 
 .button_link a, .msgbuttons a, input#delbutton,.attachfile, .logbuttons input,.buttons input, .send_edit_msg input {
-       font-weight: bold;
        cursor: pointer;
         -moz-border-radius: 8px;    /* CSS3 draft and Mozilla  */
        text-align: center;
 }
 
+.button_link a, .attachfile, .logbuttons input,.buttons input, .send_edit_msg input {
+       font-weight: bold;
+}
+
+.msgbuttons a, input#delbutton {
+       font-weight: normal;
+}
+
+
 /* Layout */
 
 * html {
@@ -813,6 +821,11 @@ html>body #button li a {
        text-align: center;
 }
 
+.selector_top p,.selector_bottom p {
+       margin: 0;
+       padding: 2px;
+}
+
 .message {
        margin: 1%;
        padding: 0;
@@ -823,11 +836,17 @@ html>body #button li a {
        padding: 0;
 }
 
-.button_link a, .msgbuttons a, input#delbutton,.attachfile, .logbuttons input,.buttons input, .send_edit_msg input, .logbutton {
+.button_link a, .attachfile, .logbuttons input,.buttons input, .send_edit_msg input, .logbutton {
        margin: 3px;
        padding: 2px 4px 2px 4px;
 }
 
+.msgbuttons a, input#delbutton {
+       margin: 0 3px 0 3px;
+       padding: 2px 4px 2px 4px;
+}
+
+
 .mimepart {
        margin-top: 15px;
        margin-bottom: 15px;