From 7f8fbe0831202b571e1b8d758c08d4b4c0cf7f1d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 14 Apr 2007 03:24:23 +0000 Subject: [PATCH] * Reduce address book popup titlebar/roomselector to 12 point font * Refresh bottom content portion when a new room is selected --- webcit/addressbook_popup.c | 7 +++++-- webcit/static/webcit.css | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/webcit/addressbook_popup.c b/webcit/addressbook_popup.c index 6d479b3f0..00360defe 100644 --- a/webcit/addressbook_popup.c +++ b/webcit/addressbook_popup.c @@ -22,7 +22,9 @@ void display_address_book_middle_div(void) { wprintf(""); wprintf(""); - wprintf("
"); serv_puts("LKRA"); serv_getln(buf, sizeof buf); if (buf[0] == '1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) { @@ -53,6 +55,7 @@ void display_address_book_middle_div(void) { */ void display_address_book_inner_div(void) { int i; + static int foo; begin_ajax_response(); @@ -60,7 +63,7 @@ void display_address_book_inner_div(void) { "
\n"); diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 8247a1549..4a1bfc34f 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -892,7 +892,7 @@ div.auto_complete ul strong.highlight { } .address_book_popup_title { - font-size: 14pt; + font-size: 12pt; background-color: #ffd; color: #000; } -- 2.39.2