From 2558aa7fe8f809bd1be201e9ea3437bb0c9fb91a Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Thu, 4 Jan 2007 05:49:29 +0000 Subject: [PATCH] adding fieldset MDL-7861 --- lib/weblib.php | 8 ++++---- theme/standard/styles_layout.css | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index dc0054a1cd..a1cdda38c6 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -4299,17 +4299,17 @@ function navmenu($course, $cm=NULL, $targetwindow='self') { } if ($backmod) { $backtext= get_string('activityprev', 'access'); - $backmod = '
'. + $backmod = '
'. ''. ''; + ''.$backtext.'
'; } if ($nextmod) { $nexttext= get_string('activitynext', 'access'); - $nextmod = '
'. + $nextmod = '
'. ''. ''; + ''.$nexttext.'
'; } return "\n
".$logslink .''. $backmod .'' . diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index 3d017d59e7..6a794fd1ed 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -418,6 +418,10 @@ form#adminsettings div.htmlarea { text-align:right; } +.headermenu fieldset{ + border: 0; +} + .navbar { width:auto; padding:3px 0.5em; -- 2.39.5