* Made the message list div slightly larger, the preview pane equally
authorArt Cancro <ajc@citadel.org>
Thu, 15 Sep 2005 21:29:42 +0000 (21:29 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 15 Sep 2005 21:29:42 +0000 (21:29 +0000)
  smaller, and stuck a separator bar in between them that will someday
  be draggable.

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

index 5d961c5ac18b808459f7544ca179716a6e92d055..5d3aa491a4bc256efce77b709a231fe6c9df87ae 100644 (file)
@@ -1,4 +1,9 @@
 $Log$
+Revision 625.2  2005/09/15 21:29:42  ajc
+* Made the message list div slightly larger, the preview pane equally
+  smaller, and stuck a separator bar in between them that will someday
+  be draggable.
+
 Revision 625.1  2005/09/14 03:53:43  ajc
 * Autocompletion now fetches candidate addresses using the AUTO server
   command being built for Citadel 6.56
@@ -2957,4 +2962,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index cfb4625dca836d92610a23c55599381129e65404..340a4ca74f722eec47c6e8ee9c99576427a5630a 100644 (file)
@@ -1976,6 +1976,8 @@ void readloop(char *oper)
                        "</div>\n");                    /* end of 'fix_scrollbar_bug' div */
                wprintf("</div>");                      /* end of 'message_list' div */
 
+               wprintf("<div id=\"ml_slider\"></div>");        /* slider */
+
                wprintf("<div id=\"preview_pane\">");   /* The preview pane will initially be empty */
        }
 
index cd3d66f4c3d34cee8a83aca4c7c510f48b6213f5..fbec1c305016244540efb4f1740dd89d6fac3b55 100644 (file)
@@ -112,23 +112,45 @@ body {
        overflow: auto;
 }
 
-#preview_pane {
+#ml_slider {
        position:fixed;
        display:block;
        top: 40%;
        left: 15%;
        width: 85%;
-       height: 60%;
+       height: 1%;
+       overflow: none;
+       background: #444455;
+}
+
+* html #ml_slider {
+       position:absolute;
+       display:block;
+       top: 40%;
+       left: 15%;
+       width: 85%;
+       height: 1%;
+       overflow: none;
+       background: #444455;
+}
+
+#preview_pane {
+       position:fixed;
+       display:block;
+       top: 41%;
+       left: 15%;
+       width: 85%;
+       height: 59%;
        overflow: auto;
 }
 
 * html #preview_pane {
        position:absolute;
        display:block;
-       top: 40%;
+       top: 41%;
        left: 15%;
        width: 85%;
-       height: 60%;
+       height: 59%;
        overflow: auto;
 }