From: <var...@us...> - 2014-06-06 15:56:29
|
Revision: 8880 http://sourceforge.net/p/phpwiki/code/8880 Author: vargenau Date: 2014-06-06 15:54:54 +0000 (Fri, 06 Jun 2014) Log Message: ----------- Correct headers hierarchy Modified Paths: -------------- trunk/themes/MonoBook/main.css trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/MonoBook/templates/navbar.tmpl trunk/themes/MonoBook/templates/tags.tmpl Modified: trunk/themes/MonoBook/main.css =================================================================== --- trunk/themes/MonoBook/main.css 2014-06-06 15:25:15 UTC (rev 8879) +++ trunk/themes/MonoBook/main.css 2014-06-06 15:54:54 UTC (rev 8880) @@ -1006,7 +1006,7 @@ white-space: nowrap; } -.portlet h5 { +.portlet h2 { background-color: transparent; padding: 0 1em 0 0.5em; text-transform: lowercase; Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2014-06-06 15:25:15 UTC (rev 8879) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2014-06-06 15:54:54 UTC (rev 8880) @@ -7,7 +7,7 @@ $isBrowse = $request->getArg('action') == 'browse'; ?> <div class="portlet" id="p-cactions"> - <h5><?php echo _("Views") ?></h5> + <h2><?php echo _("Views") ?></h2> <ul> <?php if (!string_ends_with($pagename, SUBPAGE_SEPARATOR._("Discussion"))) { ?> <?php $talk = new WikiPageName('Talk:'.$pagename); ?> @@ -57,7 +57,7 @@ </ul> </div> <div class="portlet" id="p-tbx"> - <h5><?php echo _("Special Actions") ?></h5> + <h2><?php echo _("Special Actions") ?></h2> <div class="pBody"> <ul> <?php if ( $user->isSignedIn() ) { ?> Modified: trunk/themes/MonoBook/templates/navbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/navbar.tmpl 2014-06-06 15:25:15 UTC (rev 8879) +++ trunk/themes/MonoBook/templates/navbar.tmpl 2014-06-06 15:54:54 UTC (rev 8880) @@ -6,7 +6,7 @@ <!-- The left navigation/search bar --> <!-- Here you should add favorite Links and Categories --> <div class="portlet" id="p-navigation"> - <h5><?php echo _("Navigation") ?></h5> + <h2><?php echo _("Navigation") ?></h2> <div class="pBody"> <ul> <li id="n-mainpage"><?php echo WikiLink(HOME_PAGE, "",_("Home Page")) ?></li> @@ -21,7 +21,7 @@ </div> <div class="portlet" id="p-search"> - <h5><?php echo _("Search") ?></h5> + <h2><?php echo _("Search") ?></h2> <div class="pBody"> <?php echo Template("search", array('SEARCH_BEFORE' => WikiLink(_("FindPage"), "",_("Find page")), @@ -42,7 +42,7 @@ </div> <div class="portlet" id="p-tb"> - <h5><?php echo _("Toolbox") ?></h5> + <h2><?php echo _("Toolbox") ?></h2> <div class="pBody"> <ul> <?php if ($revision) { ?> Modified: trunk/themes/MonoBook/templates/tags.tmpl =================================================================== --- trunk/themes/MonoBook/templates/tags.tmpl 2014-06-06 15:25:15 UTC (rev 8879) +++ trunk/themes/MonoBook/templates/tags.tmpl 2014-06-06 15:54:54 UTC (rev 8880) @@ -1,6 +1,6 @@ <!-- list of most popular categories --> <div class="portlet" id="p-tags"> - <h5><?php echo _("Favorite Categories") ?></h5> + <h2><?php echo _("Favorite Categories") ?></h2> <div class="pBody"> <?plugin PopularTags ?> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |