From 0b6b910c9680ccc7b5613684c139adda5ab4a6ee Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 22 Dec 2008 22:30:51 +0000 Subject: [PATCH] * Added 'overflow:hidden' to the stylesheet for 'mimepart' divs. This prevents the insanely long URL's included in Google Calendar invitations from running outside the box and all over the screen. --- webcit/calendar.c | 7 ------- webcit/static/webcit.css | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/webcit/calendar.c b/webcit/calendar.c index e60635ebb..06f965596 100644 --- a/webcit/calendar.c +++ b/webcit/calendar.c @@ -242,13 +242,6 @@ void cal_process_object(StrBuf *Target, /* If this is a REPLY, display update button */ if (the_method == ICAL_METHOD_REPLY) { - /* In the future, if we want to validate this object before - * continuing, we can do it this way: - serv_printf("ICAL whatever|%ld|%s|", msgnum, cal_partnum); - serv_getln(buf, sizeof buf); - } - ***********/ - /* Display the update buttons */ StrBufAppendPrintf(Target, "

" "%s " diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 8724a4abd..fe7df4762 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -67,6 +67,7 @@ body { #room_infos, #address_book_popup, .mimepart, .room_actions form select { border: 1px solid #333; + overflow: hidden; } -- 2.39.2