From f054b44b03109a462a1eb86d20b381ed2cff0a16 Mon Sep 17 00:00:00 2001 From: rich Date: Thu, 9 Sep 2004 10:16:19 +0000 Subject: [PATCH] The "easyweb" (ie. EWM) alternative stylesheet now displays the site menu and edit menu on the left. Removed  's from items on the edit menu to allow them to wrap. --- html/_css/easyweb.css | 62 +++++++++++++++++++++++++++++++++++++++++++++++++-- templates/page.html | 16 ++++++------- 2 files changed, 68 insertions(+), 10 deletions(-) diff --git a/html/_css/easyweb.css b/html/_css/easyweb.css index 574ede7..34a2dce 100644 --- a/html/_css/easyweb.css +++ b/html/_css/easyweb.css @@ -1,6 +1,64 @@ /* Stylesheet for EWM. - * $Id: easyweb.css,v 1.1 2004/09/08 17:07:24 rich Exp $ + * $Id: easyweb.css,v 1.2 2004/09/09 10:16:19 rich Exp $ */ /* Based on the standard stylesheet. */ -@import url("/_css/standard.css"); \ No newline at end of file +@import url("/_css/standard.css"); + +body { + margin-top: 4em; + margin-left: 8em; +} + +/* Make the top menu disappear. It's only appropriate for wikis. */ +ul#topmenu { + display: none; +} + +/* Put the bottom menu on the right, and revert it to a list style. */ +ul#bottommenu { + position: absolute; + + margin: 0px; + padding: 0px; + border: 0px; + + top: 4em; + left: 10px; + width: 7.4em; + + list-style-type: square; +} + +ul#bottommenu li { + display: list-item; + + padding-left: 0px; + margin-left: 8px; + border-left: none; + margin-bottom: 0.7em; +} + +/* Edit menu. */ +ul#editmenu { + position: absolute; + + margin: 0px; + padding: 0px; + border: 0px; + + top: 24em; + left: 10px; + width: 7.4em; + + list-style-type: square; +} + +ul#editmenu li { + display: list-item; + + padding-left: 0px; + margin-left: 8px; + border-left: none; + margin-bottom: 0.7em; +} diff --git a/templates/page.html b/templates/page.html index 22bfbd1..d692949 100644 --- a/templates/page.html +++ b/templates/page.html @@ -55,21 +55,21 @@ -- 1.8.3.1