From cdd441edf3e0bff0d60daea8e39d9bf17153b1bd Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 15 Sep 2005 21:29:42 +0000 Subject: [PATCH] * 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. --- webcit/ChangeLog | 6 +++++- webcit/messages.c | 2 ++ webcit/static/webcit.css | 30 ++++++++++++++++++++++++++---- 3 files changed, 33 insertions(+), 5 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 5d961c5ac..5d3aa491a 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -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 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/messages.c b/webcit/messages.c index cfb4625dc..340a4ca74 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1976,6 +1976,8 @@ void readloop(char *oper) "\n"); /* end of 'fix_scrollbar_bug' div */ wprintf(""); /* end of 'message_list' div */ + wprintf("
"); /* slider */ + wprintf("
"); /* The preview pane will initially be empty */ } diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index cd3d66f4c..fbec1c305 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -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; } -- 2.39.2