From 4f7f0c061011b8cfe5ba0d7f5154ff7a60be2405 Mon Sep 17 00:00:00 2001 From: rurban Date: Tue, 8 Jun 2004 13:15:23 +0000 Subject: [PATCH] non-bold links git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@3637 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- themes/smaller/phpwiki.css | 37 +++++++++++++++++++++++++ themes/smaller/templates/actionbar.tmpl | 26 ++++++++++------- 2 files changed, 53 insertions(+), 10 deletions(-) create mode 100644 themes/smaller/phpwiki.css diff --git a/themes/smaller/phpwiki.css b/themes/smaller/phpwiki.css new file mode 100644 index 000000000..e19dcabe3 --- /dev/null +++ b/themes/smaller/phpwiki.css @@ -0,0 +1,37 @@ +/** + * $Id: phpwiki.css,v 1.1 2004-06-08 13:15:23 rurban Exp $ + * We have two possibilities to override the default: + * 1. import is ns4 incompatible + * 2. add a 2nd css in themeinfo.php + */ + +@import url(../default/phpwiki.css); + +/** + * Wiki + */ +body { + /* ivory #ffe #fffff0*/ + background: #fffff0; + font-family: Arial, Helvetica, sans-serif; + font-size: 80%; /* The default is too large. But enlarge monospace below */ + margin: 1.5ex 1em; +} + +/** + * Link styles + */ +.wiki, .named-wiki { + text-decoration: none; + font-weight: normal; +} + +h1 { margin: 0; font-size: 140% } + +/* For emacs users + * + * Local Variables: + * mode: c + * c-file-style: cc-mode + * End: + */ diff --git a/themes/smaller/templates/actionbar.tmpl b/themes/smaller/templates/actionbar.tmpl index 92eba17c8..8589b9cce 100644 --- a/themes/smaller/templates/actionbar.tmpl +++ b/themes/smaller/templates/actionbar.tmpl @@ -1,5 +1,5 @@ - - + + get('locked') || $user->isAdmin()) $EditB = Button("edit", @@ -9,41 +9,47 @@ $Sep = $Theme->getButtonSeparator(); ?> - - + +
isSignedIn()) { ?> - - isAdmin()) { ?> + + isAdmin() or mayAccessPage('change',$page->getName())) { ?> get('locked') ? 'unlock' : 'lock') ?> - - + + + + + isAdmin() or mayAccessPage('remove',$page->getName())) { ?> + + 'PageInfo'),_("Info"),$page->getName()) ?> -isAdmin()) { ?> +getArg('action') == 'browse')) || $user->isAdmin()) { ?> + - 'purge'), _("PurgeHtmlCache"), $page->getName()); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> +
-- 2.45.0