mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
themes lib MDL-24895 Multiple fixes to better handle overflow.
Major tasks undertaken in this patch: * New format_text argument, overflowdiv. * New page layout Report. * Review of all format_text calls. * Added support for the report layout to all themes. * Changed forum post display from tables to divs.
This commit is contained in:
parent
2412f8b882
commit
367a75fae4
125 changed files with 3366 additions and 2062 deletions
|
@ -1,21 +1,19 @@
|
|||
#page-content #region-main-box {
|
||||
left: 210px;
|
||||
/
|
||||
|
||||
* Width of left sideblock */
|
||||
left: 210px;
|
||||
/* Width of left sideblock */
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box {
|
||||
margin-left: -420px;
|
||||
|
||||
#page-content #region-post-box {
|
||||
margin-left: -420px;
|
||||
|
||||
|
||||
/* Twice width of left sideblock */
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
margin-left: 420px;
|
||||
|
||||
#page-content #region-main {
|
||||
margin-left: 420px;
|
||||
|
||||
|
||||
/* Twice width of left sideblock */
|
||||
padding: 0 15px;
|
||||
|
@ -24,9 +22,9 @@
|
|||
/* Padding around middle column */
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-pre {
|
||||
left: 210px;
|
||||
|
||||
#page-content #region-pre {
|
||||
left: 210px;
|
||||
|
||||
|
||||
/* Width of left sideblock */
|
||||
width: 210px;
|
||||
|
@ -35,37 +33,35 @@
|
|||
/* Width of left sideblock */
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-post {
|
||||
width: 210px;
|
||||
/
|
||||
|
||||
* Width of right sideblock */
|
||||
#page-content #region-post {
|
||||
width: 210px;
|
||||
/* Width of right sideblock */
|
||||
}
|
||||
|
||||
#page-content #region-main-box .region-content {
|
||||
padding: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/** Only side pre **/
|
||||
|
||||
.side-pre-only #page-content #region-main-box #region-post-box {
|
||||
margin-left: -210px;
|
||||
margin-left: -210px;
|
||||
}
|
||||
|
||||
.side-pre-only #page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
margin-left: 210px;
|
||||
margin-left: 210px;
|
||||
}
|
||||
|
||||
/** Only side post **/
|
||||
|
||||
.side-post-only #page-content #region-main-box #region-post-box {
|
||||
margin-left: -210px;
|
||||
margin-left: -210px;
|
||||
}
|
||||
|
||||
.side-post-only #page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
margin-left: 210px;
|
||||
margin-left: 210px;
|
||||
}
|
||||
|
||||
.has_dock.side-post-only .page-middle #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
margin-left: 210px;
|
||||
margin-left: 210px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue