mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 16:13:28 +02:00
MDL-34835 theme_fusion: fixed displaced navbar by extending #region-header.inside bottom margin by 70px in style/pagelayout.css
This commit is contained in:
parent
87e9331d93
commit
8fc89387f6
1 changed files with 50 additions and 46 deletions
|
@ -2,103 +2,107 @@
|
||||||
|
|
||||||
/*********************************************************************************************
|
/*********************************************************************************************
|
||||||
|
|
||||||
right column: 28%
|
right column: 28%
|
||||||
padding left/right column: 10px
|
padding left/right column: 10px
|
||||||
padding center column: 20px
|
padding center column: 20px
|
||||||
|
|
||||||
**********************************************************************************************/
|
**********************************************************************************************/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: auto 0px;
|
margin: auto 0px;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page {
|
#page {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-header {
|
#page-header {
|
||||||
float: left;
|
float: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content {
|
#page-content {
|
||||||
clear: both;
|
clear: both;
|
||||||
float: left;
|
float: left;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-main-box {
|
#page-content #region-main-box {
|
||||||
float: left;
|
float: left;
|
||||||
right: 28%;
|
right: 28%;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-post-box {
|
#page-content #region-post-box {
|
||||||
float: left;
|
float: left;
|
||||||
right: 72%;
|
right: 72%;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-main {
|
#page-content #region-main {
|
||||||
float: left;
|
float: left;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
left: 100%;
|
left: 100%;
|
||||||
width: 72%;
|
width: 72%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-post {
|
#page-content #region-post {
|
||||||
float: left;
|
float: left;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 100%;
|
left: 100%;
|
||||||
width: 28%;
|
width: 28%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-main .region-content {
|
#page-content #region-main .region-content {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 50px 15px 20px 0;
|
padding: 50px 15px 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-content #region-post .region-content {
|
#page-content #region-post .region-content {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0 0 0 10px;
|
padding: 0 0 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-footer {
|
#page-footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
float: left;
|
float: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** No blocks whatsoever **/
|
/** No blocks whatsoever **/
|
||||||
|
|
||||||
.content-only #page-content #region-main-box {
|
.content-only #page-content #region-main-box {
|
||||||
right: 0%;
|
right: 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-only #page-content #region-post-box {
|
.content-only #page-content #region-post-box {
|
||||||
right: 100%;
|
right: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-only #page-content #region-main {
|
.content-only #page-content #region-main {
|
||||||
left: 100%;
|
left: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-only #page-content #region-pre {
|
.content-only #page-content #region-pre {
|
||||||
width: 0%;
|
width: 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-only #page-content #region-post {
|
.content-only #page-content #region-post {
|
||||||
width: 0%;
|
width: 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagelayout-report #page-content #region-main {overflow:auto;}
|
.pagelayout-report #page-content #region-main {overflow:auto;}
|
||||||
.pagelayout-report #page-content #region-main .region-content {overflow:visible;}
|
.pagelayout-report #page-content #region-main .region-content {overflow:visible;}
|
||||||
|
|
||||||
|
#page-enrol-manual-unenrolself #region-main .region-content #region-header.inside {
|
||||||
|
margin-bottom: 110px;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue