Merge branch 'MDL-25212' of git://github.com/epsd/moodle
This commit is contained in:
@@ -9,6 +9,8 @@ $hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
|
||||
|
||||
$showsidepre = ($hassidepre && !$PAGE->blocks->region_completely_docked('side-pre', $OUTPUT));
|
||||
$showsidepost = ($hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT));
|
||||
$custommenu = $OUTPUT->custom_menu();
|
||||
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
||||
|
||||
$bodyclasses = array();
|
||||
if ($showsidepre && !$showsidepost) {
|
||||
@@ -18,7 +20,9 @@ if ($showsidepre && !$showsidepost) {
|
||||
} else if (!$showsidepost && !$showsidepre) {
|
||||
$bodyclasses[] = 'content-only';
|
||||
}
|
||||
|
||||
if ($hascustommenu) {
|
||||
$bodyclasses[] = 'has_custom_menu';
|
||||
}
|
||||
|
||||
echo $OUTPUT->doctype() ?>
|
||||
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
||||
@@ -50,9 +54,17 @@ echo $OUTPUT->doctype() ?>
|
||||
|
||||
<!-- END OF HEADER -->
|
||||
|
||||
<?php if ($hascustommenu) { ?>
|
||||
<div id="custommenuwrap"><div id="custommenu"><?php echo $custommenu; ?></div></div>
|
||||
<?php } ?>
|
||||
|
||||
<!-- START OF CONTENT -->
|
||||
|
||||
<div id="page-content-wrapper" class="wrapper clearfix">
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="page-content">
|
||||
<div id="region-main-box">
|
||||
<div id="region-post-box">
|
||||
|
||||
@@ -5,6 +5,8 @@ $hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
|
||||
$hasfooter = (empty($PAGE->layout_options['nofooter']));
|
||||
$hassidepre = $PAGE->blocks->region_has_content('side-pre', $OUTPUT);
|
||||
$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
|
||||
$custommenu = $OUTPUT->custom_menu();
|
||||
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
||||
|
||||
$bodyclasses = array();
|
||||
if ($hassidepre && !$hassidepost) {
|
||||
@@ -14,6 +16,9 @@ if ($hassidepre && !$hassidepost) {
|
||||
} else if (!$hassidepost && !$hassidepre) {
|
||||
$bodyclasses[] = 'content-only';
|
||||
}
|
||||
if ($hascustommenu) {
|
||||
$bodyclasses[] = 'has_custom_menu';
|
||||
}
|
||||
|
||||
echo $OUTPUT->doctype() ?>
|
||||
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
||||
@@ -42,6 +47,10 @@ echo $OUTPUT->doctype() ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if ($hascustommenu) { ?>
|
||||
<div id="custommenuwrap"><div id="custommenu"><?php echo $custommenu; ?></div></div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($hasnavbar) { ?>
|
||||
<div class="navbar">
|
||||
|
||||
@@ -5,6 +5,8 @@ $hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
|
||||
$hasfooter = (empty($PAGE->layout_options['nofooter']));
|
||||
$hassidepre = $PAGE->blocks->region_has_content('side-pre', $OUTPUT);
|
||||
$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
|
||||
$custommenu = $OUTPUT->custom_menu();
|
||||
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
||||
|
||||
$bodyclasses = array();
|
||||
if ($hassidepre && !$hassidepost) {
|
||||
@@ -14,6 +16,9 @@ if ($hassidepre && !$hassidepost) {
|
||||
} else if (!$hassidepost && !$hassidepre) {
|
||||
$bodyclasses[] = 'content-only';
|
||||
}
|
||||
if ($hascustommenu) {
|
||||
$bodyclasses[] = 'has_custom_menu';
|
||||
}
|
||||
|
||||
echo $OUTPUT->doctype() ?>
|
||||
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
||||
@@ -43,6 +48,10 @@ echo $OUTPUT->doctype() ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if ($hascustommenu) { ?>
|
||||
<div id="custommenuwrap"><div id="custommenu"><?php echo $custommenu; ?></div></div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($hasnavbar) { ?>
|
||||
<div class="navbar">
|
||||
<div class="wrapper clearfix">
|
||||
|
||||
@@ -81,6 +81,10 @@ a:active {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.navbar .navbutton {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -163,10 +167,7 @@ h2.headingblock {
|
||||
|
||||
.course-content .current {
|
||||
background: #da5013;
|
||||
}
|
||||
|
||||
.course-content .current .left {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.course-content .main .content {
|
||||
@@ -287,4 +288,85 @@ h2.headingblock {
|
||||
|
||||
.ie6 #dock .bd.oversized_content {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/*custom menu styles */
|
||||
#custommenuwrap {
|
||||
background-color: #F7F6F1;
|
||||
border-bottom: 1px solid #DDDDDD;
|
||||
padding: 3px 0px;
|
||||
}
|
||||
|
||||
#custommenu {
|
||||
border: none !important;
|
||||
border: 0px solid #fff !important;
|
||||
margin: 0 25px;
|
||||
}
|
||||
|
||||
#custommenu * {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/*YUI Reset */
|
||||
.yui3-skin-sam #page .yui3-menu-horizontal .yui3-menu-content{
|
||||
background-position: -10000px -10000px;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-horizontal .yui3-menu-label{
|
||||
background-position: -10000px -10000px;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-horizontal .yui3-menu-label-active,.yui3-skin-sam #page .yui3-menu-horizontal .yui3-menuitem-active .yui3-menuitem-content,.yui3-skin-sam #page .yui3-menu-horizontal .yui3-menu-label-menuvisible{
|
||||
background-position: -10000px -10000px;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-label,
|
||||
.yui3-skin-sam #page .yui3-menu .yui3-menu .yui3-menu-label {
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menubuttonnav .yui3-menu-label em {
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-splitbuttonnav .yui3-menu-label .yui3-menu-toggle {
|
||||
background-position: 3px center;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-splitbuttonnav .yui3-menu-label-menuvisible .yui3-menu-toggle {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-label, .yui3-skin-sam #page .yui3-menuitem-content {
|
||||
color: #35251B;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.custom_menu_submenu .yui3-menu-label, .custom_menu_submenu .yui3-menuitem-content {
|
||||
color: #35251B !important;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-label.yui3-menu-label-active, .yui3-skin-sam #page .yui3-menuitem-active .yui3-menuitem-content {
|
||||
color: #DA5013;
|
||||
}
|
||||
|
||||
.yui3-skin-sam #page .yui3-menu-content, .yui3-skin-sam #page .yui3-menu-content, .yui3-skin-sam #page .yui3-menu .yui3-menu .yui3-menu-content, .yui3-skin-sam #page .yui3-menu-horizontal .yui3-menu-label, .yui3-skin-sam #page .yui3-menu-horizontal .yui3-menuitem-content {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label, .yui3-skin-sam .yui3-menu-horizontal .yui3-menuitem-content {
|
||||
border-color:#808080;
|
||||
border-style:solid;
|
||||
border-width:0px 0;
|
||||
}
|
||||
|
||||
#page .custom_menu_submenu {
|
||||
border: 2px solid #DA5013 !important;
|
||||
background: #fff;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-webkit-box-shadow: 0px 1px 3px #ccc;
|
||||
-moz-box-shadow: 0px 1px 3px #ccc;
|
||||
box-shadow: 0px 1px 3px #ccc;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user