mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +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
|
@ -38,8 +38,8 @@ $THEME->name = 'brick';
|
|||
|
||||
|
||||
$THEME->parents = array(
|
||||
'canvas',
|
||||
'base',
|
||||
'canvas',
|
||||
'base',
|
||||
);
|
||||
|
||||
/////////////////////////////////////////////////////
|
||||
|
@ -54,11 +54,10 @@ $THEME->parents = array(
|
|||
|
||||
|
||||
$THEME->sheets = array(
|
||||
'pagelayout',
|
||||
'core',
|
||||
'colors',
|
||||
'css3',
|
||||
|
||||
'pagelayout',
|
||||
'core',
|
||||
'colors',
|
||||
'css3',
|
||||
);
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
|
@ -67,12 +66,12 @@ $THEME->sheets = array(
|
|||
////////////////////////////////////////////////////
|
||||
|
||||
$THEME->parents_exclude_sheets = array(
|
||||
'base'=>array(
|
||||
'pagelayout',
|
||||
),
|
||||
'canvas'=>array(
|
||||
'pagelayout',
|
||||
),
|
||||
'base'=>array(
|
||||
'pagelayout',
|
||||
),
|
||||
'canvas'=>array(
|
||||
'pagelayout',
|
||||
),
|
||||
);
|
||||
|
||||
|
||||
|
@ -158,11 +157,16 @@ $THEME->layouts = array(
|
|||
'options' => array('nofooter'=>true, 'nonavbar'=>true),
|
||||
),
|
||||
'embedded' => array(
|
||||
'theme' => 'canvas',
|
||||
'theme' => 'canvas',
|
||||
'file' => 'embedded.php',
|
||||
'regions' => array(),
|
||||
'options' => array('nofooter'=>true, 'nonavbar'=>true),
|
||||
),
|
||||
'report' => array(
|
||||
'file' => 'general.php',
|
||||
'regions' => array('side-post'),
|
||||
'defaultregion' => 'side-post',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
|
@ -175,7 +179,7 @@ $THEME->layouts = array(
|
|||
// specific page.
|
||||
///////////////////////////////////////////////////////////////
|
||||
|
||||
//$THEME->csspostprocess = 'arialist_process_css';
|
||||
//$THEME->csspostprocess = 'arialist_process_css';
|
||||
////////////////////////////////////////////////////
|
||||
// Allows the user to provide the name of a function
|
||||
// that all CSS should be passed to before being
|
||||
|
@ -189,7 +193,7 @@ $THEME->layouts = array(
|
|||
// media player for the filters
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
// $THEME->javascripts
|
||||
// $THEME->javascripts
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// An array containing the names of JavaScript files
|
||||
|
@ -203,20 +207,20 @@ $THEME->layouts = array(
|
|||
// As above but will be included in the page footer.
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
//$THEME->larrow = '⟨';
|
||||
//$THEME->larrow = '⟨';
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// Overrides the left arrow image used throughout
|
||||
// Moodle
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
//$THEME->rarrow = '⟩';
|
||||
//$THEME->rarrow = '⟩';
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// Overrides the right arrow image used throughout Moodle
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
// $THEME->layouts
|
||||
// $THEME->layouts
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// An array setting the layouts for the theme
|
||||
|
@ -229,7 +233,7 @@ $THEME->layouts = array(
|
|||
// the themes parents
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
// $THEME->parents_exclude_sheets
|
||||
// $THEME->parents_exclude_sheets
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// An array of stylesheets not to inherit from the
|
||||
|
@ -253,7 +257,7 @@ $THEME->layouts = array(
|
|||
// $THEME->resource_mp3player_colors
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
// Controls the colours for the MP3 player
|
||||
// Controls the colours for the MP3 player
|
||||
////////////////////////////////////////////////////
|
||||
$THEME->csspostprocess = 'brick_process_css';
|
||||
//$THEME->rendererfactory = 'theme_overridden_renderer_factory';
|
||||
|
|
|
@ -4,274 +4,274 @@
|
|||
---------------------------*/
|
||||
|
||||
html, body {
|
||||
background: #eee;
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
#mypagewrapper {
|
||||
width: 100%;
|
||||
border-top: 1px solid #fff;
|
||||
width: 100%;
|
||||
border-top: 1px solid #fff;
|
||||
}
|
||||
|
||||
#page {
|
||||
margin-top: 15px;
|
||||
width: 90%;
|
||||
min-width: 960px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
clear: both;
|
||||
border: 1px solid #dadada;
|
||||
background: #fff;
|
||||
margin-top: 15px;
|
||||
width: 90%;
|
||||
min-width: 960px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
clear: both;
|
||||
border: 1px solid #dadada;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
padding: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 17px;
|
||||
padding: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 17px;
|
||||
}
|
||||
|
||||
#wrapper.notathome {
|
||||
padding-top: 15px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
.content-only #wrapper {
|
||||
padding-right: 0px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
/* Header
|
||||
----------------------------*/
|
||||
|
||||
#headerwrap {
|
||||
width: 100%;
|
||||
top: 0px;
|
||||
height: 140px;
|
||||
width: 100%;
|
||||
top: 0px;
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
#header {
|
||||
width: 90%;
|
||||
min-width: 960px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 90%;
|
||||
min-width: 960px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#logo {
|
||||
background-position: 0% 40%;
|
||||
width: 300px;
|
||||
height: 70px;
|
||||
float: left;
|
||||
background-position: 0% 40%;
|
||||
width: 300px;
|
||||
height: 70px;
|
||||
float: left;
|
||||
}
|
||||
#nologo {
|
||||
width: 590px;
|
||||
height: 70px;
|
||||
float: left;
|
||||
margin-left: 6px;
|
||||
overflow: hidden;
|
||||
width: 590px;
|
||||
height: 70px;
|
||||
float: left;
|
||||
margin-left: 6px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#nologo a, #nologo {
|
||||
font-family: Georgia, Palatino, serif;
|
||||
line-height: 70px;
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -1px;
|
||||
font-family: Georgia, Palatino, serif;
|
||||
line-height: 70px;
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
#loggedinas {
|
||||
min-width: 300px;
|
||||
height: 65px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
line-height: 65px;
|
||||
font-size: 10px;
|
||||
min-width: 300px;
|
||||
height: 65px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
line-height: 65px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
#loginas a {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#headerbottom {
|
||||
clear: both;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#headingtitle {
|
||||
float: right;
|
||||
width: 280px;
|
||||
padding-right: 5px;
|
||||
text-align: right;
|
||||
height: 70px;
|
||||
overflow: hidden;
|
||||
background: url([[pix:theme|youare]]) no-repeat;
|
||||
background-position: 95% 110%;
|
||||
position: relative;
|
||||
bottom: -2px;
|
||||
float: right;
|
||||
width: 280px;
|
||||
padding-right: 5px;
|
||||
text-align: right;
|
||||
height: 70px;
|
||||
overflow: hidden;
|
||||
background: url([[pix:theme|youare]]) no-repeat;
|
||||
background-position: 95% 110%;
|
||||
position: relative;
|
||||
bottom: -2px;
|
||||
}
|
||||
|
||||
#headingtitle h1 {
|
||||
line-height: 67px;
|
||||
font-weight: 200;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
color: #fff;
|
||||
line-height: 67px;
|
||||
font-weight: 200;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
color: #fff;
|
||||
}
|
||||
/* end Header
|
||||
----------------------------*/
|
||||
|
||||
#region-post2 .region-content div.navbutton {
|
||||
display: inline-block !important;
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 5px;
|
||||
clear: both;
|
||||
display: inline-block !important;
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 5px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,input,textarea {
|
||||
font-family: Georgia, Palatino, serif;
|
||||
line-height: 1.5;
|
||||
color: #333;
|
||||
font-family: Georgia, Palatino, serif;
|
||||
line-height: 1.5;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
font-family: Georgia, Times, "Times New Roman", serif !important;
|
||||
font-family: Georgia, Times, "Times New Roman", serif !important;
|
||||
}
|
||||
|
||||
h2,h3,h4,h5,h6 {
|
||||
color: #999;
|
||||
font-weight: normal;
|
||||
color: #999;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #eee;
|
||||
padding-left: 15px;
|
||||
color: #666;
|
||||
border-left: 1px solid #eee;
|
||||
padding-left: 15px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.mform fieldset {
|
||||
border-color: #eee;
|
||||
border-color: #eee;
|
||||
}
|
||||
|
||||
.mform fieldset legend {
|
||||
color: #555;
|
||||
font-weight: normal;
|
||||
font-size: 1.2em;
|
||||
border: 1px solid #eee;
|
||||
padding: 2px 5px;
|
||||
background: #fff;
|
||||
color: #555;
|
||||
font-weight: normal;
|
||||
font-size: 1.2em;
|
||||
border: 1px solid #eee;
|
||||
padding: 2px 5px;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
|
||||
div.navbar {
|
||||
border-bottom: 1px solid #eee;
|
||||
border-top: 1px solid #eee;
|
||||
background: #fafafa url([[pix:theme|block]]) no-repeat;
|
||||
background-position: 100% 0%;
|
||||
font-size: 0.85em;
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
padding:0 10px;
|
||||
margin-bottom: 7px;
|
||||
border-bottom: 1px solid #eee;
|
||||
border-top: 1px solid #eee;
|
||||
background: #fafafa url([[pix:theme|block]]) no-repeat;
|
||||
background-position: 100% 0%;
|
||||
font-size: 0.85em;
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
padding:0 10px;
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
|
||||
div.breadcrumb li {
|
||||
line-height: 30px;
|
||||
font-family: Georgia, serif;
|
||||
line-height: 30px;
|
||||
font-family: Georgia, serif;
|
||||
}
|
||||
|
||||
.breadcrumb li img {
|
||||
vertical-align: middle;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/** breadcrumb image replacement **/
|
||||
|
||||
div.navbar span.arrow.sep {
|
||||
font-size: 1px;
|
||||
color: #fafafa;
|
||||
background: url([[pix:theme|crumber]]) no-repeat;
|
||||
background-position: 50% 25%;
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 30px;
|
||||
font-size: 1px;
|
||||
color: #fafafa;
|
||||
background: url([[pix:theme|crumber]]) no-repeat;
|
||||
background-position: 50% 25%;
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.navbutton {
|
||||
float: none;
|
||||
width: 100%;
|
||||
padding: 5px 0 15px;
|
||||
text-align: center;
|
||||
float: none;
|
||||
width: 100%;
|
||||
padding: 5px 0 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Blocks
|
||||
----------------------------*/
|
||||
|
||||
.block {
|
||||
border: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.block {
|
||||
padding: 2px;
|
||||
border: 1px solid #dadada;
|
||||
margin-left: -10px;
|
||||
padding: 2px;
|
||||
border: 1px solid #dadada;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
#region-main div.block {
|
||||
margin-left: 0px;
|
||||
background-image: none;
|
||||
margin-left: 0px;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.block div.header {
|
||||
min-height: 33px;
|
||||
padding-top: 3px;
|
||||
padding-left: 3px;
|
||||
min-height: 33px;
|
||||
padding-top: 3px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
div.block.hidden div.header {
|
||||
border-bottom: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.block .header h2 {
|
||||
font-size: 13px;
|
||||
font-weight: 200;
|
||||
text-transform: uppercase;
|
||||
font-size: 13px;
|
||||
font-weight: 200;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.block div.content {
|
||||
background: #fff;
|
||||
border: 1px solid #dadada;
|
||||
border-top: none;
|
||||
padding: 4px;
|
||||
background: #fff;
|
||||
border: 1px solid #dadada;
|
||||
border-top: none;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.block div.content h1, .block div.content h2.main, .block div.content h3.main {
|
||||
font-size: 13px;
|
||||
background-image: none;
|
||||
font-size: 13px;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.block_calendar_month table.minicalendar.calendartable td,.block_calendar_month table.minicalendar.calendartable th {
|
||||
border: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.block_calendar_month table.minicalendar {
|
||||
margin-bottom: 0px !important;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
.block_calendar_month table.minicalendar.calendartable th abbr {
|
||||
border: none !important;
|
||||
text-decoration: none;
|
||||
border: none !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/** main headings **/
|
||||
|
||||
.generalbox h2,h3.sectionname, h2.headingblock,h2.main,h3.main, h2.main a, h3.main a, div.loginpanel h2, div.signuppanel h2 {
|
||||
font-weight: 600;
|
||||
letter-spacing: -1px;
|
||||
line-height: 1.3em;
|
||||
font-size: 28px;
|
||||
border-bottom: 0px solid #eee;
|
||||
padding-bottom: 2px;
|
||||
background: url([[pix:theme|mainbar]]) repeat-x;
|
||||
background-position: 0% 100%;
|
||||
font-weight: 600;
|
||||
letter-spacing: -1px;
|
||||
line-height: 1.3em;
|
||||
font-size: 28px;
|
||||
border-bottom: 0px solid #eee;
|
||||
padding-bottom: 2px;
|
||||
background: url([[pix:theme|mainbar]]) repeat-x;
|
||||
background-position: 0% 100%;
|
||||
}
|
||||
|
||||
.generalbox h2, #page-course-info h2.main, h3.sectionname, h2.main a, h3.main a, div.loginpanel h2, div.signuppanel h2, div.hd h3.main {
|
||||
font-size: 22px;
|
||||
background: none;
|
||||
font-size: 22px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
|
||||
|
@ -280,259 +280,264 @@ div.block.hidden div.header {
|
|||
----------------------------*/
|
||||
|
||||
.coursebox {
|
||||
border-color: #eee;
|
||||
border-color: #eee;
|
||||
}
|
||||
|
||||
.coursebox .info {
|
||||
width: 35%;
|
||||
width: 35%;
|
||||
}
|
||||
|
||||
.coursebox .info .name {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.coursebox .info .teachers {
|
||||
font-size: 0.9em;
|
||||
color: #888;
|
||||
font-size: 0.9em;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.coursebox .summary {
|
||||
width: 63%;
|
||||
width: 63%;
|
||||
}
|
||||
|
||||
.course-content .section.main {
|
||||
border-bottom: 1px solid #eee;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
.course-content .section.main .content {
|
||||
padding: 5px 5px 10px;
|
||||
padding: 5px 5px 10px;
|
||||
}
|
||||
|
||||
.course-content .weeks .section.main .content {
|
||||
margin-left: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.course-content .weeks .section.main .left {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.course-content .section.main.current {
|
||||
background: #fffcdc;
|
||||
background: #fffcdc;
|
||||
}
|
||||
|
||||
.course-content .weeks .section.main h3.weekdates {
|
||||
color: #999;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.course-content .current .left,
|
||||
.course-content .current h3.weekdates {
|
||||
color: #92310c !important;
|
||||
color: #92310c !important;
|
||||
}
|
||||
|
||||
span.completionprogress {
|
||||
font-size: 11px;
|
||||
color: #666666;
|
||||
font-size: 11px;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
/* Forum
|
||||
--------------------------*/
|
||||
|
||||
.forumpost .topic {
|
||||
background: #eee url([[pix:theme|block]]) no-repeat;
|
||||
background-position: 100% 0%;
|
||||
border-width: 0;
|
||||
border: 1px solid #dadada;
|
||||
padding: 0 10px 0;
|
||||
background: #eee url([[pix:theme|block]]) no-repeat;
|
||||
background-position: 100% 0%;
|
||||
border-width: 0;
|
||||
border: 1px solid #dadada;
|
||||
padding: 0 10px 0;
|
||||
}
|
||||
|
||||
.forumpost .subject {
|
||||
font-size: 1.45em;
|
||||
font-family: Georgia, serif;
|
||||
font-size: 1.45em;
|
||||
font-family: Georgia, serif;
|
||||
}
|
||||
|
||||
.forumpost .author {
|
||||
font-size: 0.9em;
|
||||
font-style: italic;
|
||||
font-size: 0.9em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
td.picture.left img {
|
||||
background: #fafafa;
|
||||
padding: 4px;
|
||||
padding-bottom: 9px;
|
||||
border: 1px solid #dadada;
|
||||
background: #fafafa;
|
||||
padding: 4px;
|
||||
padding-bottom: 9px;
|
||||
border: 1px solid #dadada;
|
||||
}
|
||||
|
||||
.forumpost .content {
|
||||
border-width: 0 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #aaa #dadada #dadada;
|
||||
padding: 5px 10px 10px;
|
||||
.forumpost .options,
|
||||
.forumpost .no-overflow {
|
||||
border-width: 0 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #aaa #dadada #dadada;
|
||||
}
|
||||
|
||||
.forumpost .options,
|
||||
.forumpost .content .posting {
|
||||
padding: 5px 10px 10px;
|
||||
}
|
||||
|
||||
/* Footer
|
||||
----------------------------*/
|
||||
|
||||
#page-footer .helplink {
|
||||
margin: 1em 0;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
/* Dock */
|
||||
|
||||
body.has_dock {
|
||||
margin: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.has_dock #page, .has_dock #header {
|
||||
margin-left: 5%;
|
||||
margin-left: 5%;
|
||||
}
|
||||
|
||||
#dock {
|
||||
left: 5%;
|
||||
top: 107px;
|
||||
margin-left: -29px;
|
||||
border-width: 0;
|
||||
background-color: transparent;
|
||||
position: absolute;
|
||||
left: 5%;
|
||||
top: 107px;
|
||||
margin-left: -29px;
|
||||
border-width: 0;
|
||||
background-color: transparent;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
#dock .controls {
|
||||
bottom: auto;
|
||||
-webkit-border-bottom-left-radius: 3px;
|
||||
-moz-border-radius-bottomleft: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
bottom: auto;
|
||||
-webkit-border-bottom-left-radius: 3px;
|
||||
-moz-border-radius-bottomleft: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
}
|
||||
|
||||
#dock .dockeditem_container {
|
||||
position: relative;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#dock .dockeditem.firstdockitem {
|
||||
margin-top: 50px;
|
||||
border-top: 1px solid #dadada;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
-moz-border-radius-topleft: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
margin-top: 50px;
|
||||
border-top: 1px solid #dadada;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
-moz-border-radius-topleft: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
|
||||
#dock .dockeditem {
|
||||
background-color: #fff;
|
||||
padding: 2px;
|
||||
padding-right: 0px;
|
||||
border-left: 1px solid #dadada;
|
||||
border-right: 0px solid #fafafa;
|
||||
border-top: 1px solid #fafafa;
|
||||
background-color: #fff;
|
||||
padding: 2px;
|
||||
padding-right: 0px;
|
||||
border-left: 1px solid #dadada;
|
||||
border-right: 0px solid #fafafa;
|
||||
border-top: 1px solid #fafafa;
|
||||
}
|
||||
|
||||
#dock .dockedtitle {
|
||||
border-width: 0;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
#dock .dockedtitle h2 {
|
||||
margin: 0;
|
||||
padding: 10px 3px;
|
||||
margin: 0;
|
||||
padding: 10px 3px;
|
||||
}
|
||||
|
||||
#dock .dockedtitle.activeitem {
|
||||
color: #fff !important;
|
||||
width: 35px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
-moz-border-radius-topleft: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
-webkit-border-bottom-left-radius: 3px;
|
||||
-moz-border-radius-bottomleft: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
color: #fff !important;
|
||||
width: 35px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
-moz-border-radius-topleft: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
-webkit-border-bottom-left-radius: 3px;
|
||||
-moz-border-radius-bottomleft: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
}
|
||||
|
||||
#dock .dockedtitle.activeitem h2 {
|
||||
color: #fff !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
#dockeditempanel {
|
||||
margin-left: 0px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_content {
|
||||
background-color: #fff;
|
||||
margin: 0 3px;
|
||||
position: relative;
|
||||
min-height: 100px;
|
||||
-webkit-border-radius: 3px;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-moz-border-radius-topleft: 0;
|
||||
border-radius: 3px;
|
||||
border-top-left-radius: 0;
|
||||
background-color: #fff;
|
||||
margin: 0 3px;
|
||||
position: relative;
|
||||
min-height: 100px;
|
||||
-webkit-border-radius: 3px;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-moz-border-radius-topleft: 0;
|
||||
border-radius: 3px;
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd {
|
||||
border-width: 0;
|
||||
padding: 2px;
|
||||
border-width: 0;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd h2 {
|
||||
font-size: 0.9em;
|
||||
color: #fff;
|
||||
font-size: 0.9em;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/** yui menu styles **/
|
||||
|
||||
#menustuff {
|
||||
width: 600px;
|
||||
float: left;
|
||||
clear: left;
|
||||
height: 65px;
|
||||
width: 600px;
|
||||
float: left;
|
||||
clear: left;
|
||||
height: 65px;
|
||||
}
|
||||
|
||||
#custommenu {
|
||||
border: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
div.yui3-menu-content {
|
||||
border: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.yui3-menu-content li a {
|
||||
font-size: 14px;
|
||||
font-family: Georgia, serif !important;
|
||||
font-weight: 200;
|
||||
text-transform: lowercase;
|
||||
line-height: 70px;
|
||||
cursor: pointer;
|
||||
border-right: none !important;
|
||||
border-top: none !important;
|
||||
border-bottom: none !important;
|
||||
font-size: 14px;
|
||||
font-family: Georgia, serif !important;
|
||||
font-weight: 200;
|
||||
text-transform: lowercase;
|
||||
line-height: 70px;
|
||||
cursor: pointer;
|
||||
border-right: none !important;
|
||||
border-top: none !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
.yui3-menu-content li a:hover {
|
||||
text-decoration: underline;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
div.custom_menu_submenu li a {
|
||||
line-height: 30px;
|
||||
text-shadow: none !important;
|
||||
line-height: 30px;
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
div.yui3-menu.custom_menu_submenu {
|
||||
background: url([[pix:theme|youare]]) no-repeat;
|
||||
background-position: 30px 10px;
|
||||
top: 120px !important;
|
||||
border: none;
|
||||
min-width: 100px;
|
||||
z-index: 99998;
|
||||
background: url([[pix:theme|youare]]) no-repeat;
|
||||
background-position: 30px 10px;
|
||||
top: 120px !important;
|
||||
border: none;
|
||||
min-width: 100px;
|
||||
z-index: 99998;
|
||||
}
|
||||
|
||||
div.yui3-menu.custom_menu_submenu div.yui3-menu-content {
|
||||
margin-top: 22px;
|
||||
border: 1px solid #dadada !important;
|
||||
border-top: none !important;
|
||||
margin-top: 22px;
|
||||
border: 1px solid #dadada !important;
|
||||
border-top: none !important;
|
||||
}
|
||||
|
||||
/** below style to move sub subs to the left to keep from going off the page **/
|
||||
|
||||
div.yui3-menu.custom_menu_submenu div.yui3-menu-content div.yui3-menu.custom_menu_submenu div.yui3-menu-content {
|
||||
background-image: none !important;
|
||||
min-width: 200px;
|
||||
position: relative;
|
||||
margin-top: -50px;
|
||||
border-top: 1px solid #dadada !important;
|
||||
background-image: none !important;
|
||||
min-width: 200px;
|
||||
position: relative;
|
||||
margin-top: -50px;
|
||||
border-top: 1px solid #dadada !important;
|
||||
}
|
|
@ -38,33 +38,33 @@ body {
|
|||
right: 100%;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box {
|
||||
#page-content #region-post-box {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-main-wrap {
|
||||
#page-content #region-main-wrap {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
#page-content #region-main {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-post {
|
||||
#page-content #region-post {
|
||||
float: right;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-main-wrap #region-main .region-content {
|
||||
#page-content #region-main .region-content {
|
||||
overflow: hidden;
|
||||
padding: 0px 30px 20px 0;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-post .region-content {
|
||||
#page-content #region-post .region-content {
|
||||
overflow: hidden;
|
||||
padding: 0px 0 20px 10px;
|
||||
}
|
||||
|
@ -86,31 +86,34 @@ body {
|
|||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main-box #region-post-box {
|
||||
.content-only #page-content #region-post-box {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
.content-only #page-content #region-main {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main-box #region-post-box #region-pre {
|
||||
.content-only #page-content #region-pre {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main-box #region-post-box #region-post {
|
||||
.content-only #page-content #region-post {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box {
|
||||
#page-content #region-post-box {
|
||||
margin-left: -250px;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-main-wrap #region-main {
|
||||
#page-content #region-main {
|
||||
margin-left: 250px;
|
||||
}
|
||||
|
||||
#page-content #region-main-box #region-post-box #region-post {
|
||||
#page-content #region-post {
|
||||
left: 250px;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.pagelayout-report #page-content #region-main {overflow:auto;}
|
||||
.pagelayout-report #page-content #region-main .region-content {overflow:visible;}
|
Loading…
Add table
Add a link
Reference in a new issue