From 80d02421484921ecbd827087dd38bdca826e7b41 Mon Sep 17 00:00:00 2001 From: nohn Date: Mon, 26 Sep 2005 09:50:24 +0000 Subject: [PATCH] no matter if 0.8.5 will be released, i need that now --- docs/NEWS | 4 ++++ templates/default/admin/style.css | 24 +++++++++++++++++++++--- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/docs/NEWS b/docs/NEWS index d6b2f24..7575207 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -3,6 +3,10 @@ Version 0.8.5 () ------------------------------------------------------------------------ + * Default Admin Stylesheet no longer uses direct height: assignment, + but padding instead. This should get rid of occasional overlapping + of menu items. Thanks a lot to Ognyan Kulev for the solution to this! + * Fix file upload bug which limited upload filesize to 3 million bytes (2.86MB) regardless of PHP configuration. Maximum upload filesize should now be properly bound by PHP configuration settings. diff --git a/templates/default/admin/style.css b/templates/default/admin/style.css index cb8a4c4..c9d1db8 100644 --- a/templates/default/admin/style.css +++ b/templates/default/admin/style.css @@ -170,7 +170,8 @@ ul.serendipitySideBarMenu li.serendipitySideBarMenuHead { display: block; font-weight: bold; background: url({TEMPLATE_PATH}img/menuheader_background.png) no-repeat; - height: 1.6em; + padding-top: 0.3em; + padding-bottom: 0.3em; padding-left: 3px; } @@ -178,9 +179,9 @@ ul.serendipitySideBarMenu li { font-size: 0.8em; font-weight: normal; background:url({TEMPLATE_PATH}img/menu_background.png) no-repeat; - padding-top: 4px; + padding-top: 0.3em; + padding-bottom: 0.3em; padding-left: 5px; - height: 1.6em; list-style:none; display:block; margin:0; @@ -255,3 +256,20 @@ a.serendipityPrettyButton { .direction_rtl { direction: rtl; } + +.serendipity_pluginlist_header { + height: 30px; + background-color: white; + color: black; + vertical-align: middle; + padding: 10px 0px 5px 10px; +} + +.serendipity_pluginlist_section { + height: 50px; + border: 1px solid black; + background-color: #E0E0E0; + color: black; + vertical-align: middle; + padding: 10px 0px 5px 10px; +} \ No newline at end of file -- 2.39.5