mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-22835 Fixed internal header height
This commit is contained in:
parent
759b81f3dc
commit
b02bca46d1
2 changed files with 11 additions and 2 deletions
|
@ -28,10 +28,10 @@ echo $OUTPUT->doctype() ?>
|
||||||
|
|
||||||
<div id="page">
|
<div id="page">
|
||||||
<?php if ($hasheading || $hasnavbar) { ?>
|
<?php if ($hasheading || $hasnavbar) { ?>
|
||||||
<div id="page-header">
|
<div id="page-header" class="inside">
|
||||||
<div id="page-header-wrapper" class="wrapper clearfix">
|
<div id="page-header-wrapper" class="wrapper clearfix">
|
||||||
<?php if ($hasheading) { ?>
|
<?php if ($hasheading) { ?>
|
||||||
<h1 class="headermain inside"><?php echo $PAGE->heading ?></h1>
|
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
|
||||||
<div class="headermenu"><?php
|
<div class="headermenu"><?php
|
||||||
echo $OUTPUT->login_info();
|
echo $OUTPUT->login_info();
|
||||||
if (!empty($PAGE->layout_options['langmenu'])) {
|
if (!empty($PAGE->layout_options['langmenu'])) {
|
||||||
|
|
|
@ -59,6 +59,15 @@ a:active {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#page-header.inside {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-header.inside h1 {
|
||||||
|
font-size: 1.7em;
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
#page-header a:link,
|
#page-header a:link,
|
||||||
#page-header a:visited {
|
#page-header a:visited {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue