mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
Added two styles: .noticebox and .noticeboxcontent
This commit is contained in:
parent
581d7b4959
commit
4105fe9dd2
@ -64,6 +64,11 @@ a.dimmed:hover {}
|
||||
.weeklydatetext {}
|
||||
|
||||
|
||||
/* Style for the notice boxes (surrounding a notice message) */
|
||||
|
||||
.noticebox {}
|
||||
.noticeboxcontent {}
|
||||
|
||||
|
||||
ALL pix files can now be changed from within a theme,
|
||||
see cordoroyblue for an example: config.php and the
|
||||
|
@ -203,6 +203,17 @@ form {
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
@ -293,6 +293,17 @@ form {
|
||||
background-color: <?PHP echo $THEME->cellcontent?>;
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
@ -216,6 +216,17 @@ form {
|
||||
background-color: <?PHP echo $THEME->body?>;
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
|
@ -303,6 +303,17 @@ form { margin-bottom: 0; }
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
@ -201,6 +201,17 @@ form {
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
@ -252,4 +263,3 @@ a.dimmed:hover {
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
|
@ -1,255 +1,265 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
header("Content-type: text/css");
|
||||
<?PHP /* $Id$ */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header("Content-type: text/css"); // Correct MIME type
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
.dimmed_text {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
@ -1,255 +1,265 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
header("Content-type: text/css");
|
||||
<?PHP /* $Id$ */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header("Content-type: text/css"); // Correct MIME type
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
.dimmed_text {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
@ -1,255 +1,265 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
header("Content-type: text/css");
|
||||
<?PHP /* $Id$ */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header("Content-type: text/css"); // Correct MIME type
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
.dimmed_text {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
@ -1,255 +1,265 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
header("Content-type: text/css");
|
||||
<?PHP /* $Id$ */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header("Content-type: text/css"); // Correct MIME type
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
.dimmed_text {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
@ -1,255 +1,265 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
header("Content-type: text/css");
|
||||
<?PHP /* $Id$ */
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
/// We use PHP so we can do value substitutions into the styles
|
||||
|
||||
require_once("../../config.php");
|
||||
|
||||
header("Content-type: text/css"); // Correct MIME type
|
||||
|
||||
if (isset($themename)) {
|
||||
$CFG->theme = $themename;
|
||||
}
|
||||
|
||||
$themeurl = "$CFG->wwwroot/theme/$CFG->theme";
|
||||
|
||||
/// From here on it's nearly a normal stylesheet.
|
||||
/// First are some CSS definitions for normal tags,
|
||||
/// then custom tags follow.
|
||||
///
|
||||
/// New classes always get added to the end of the file.
|
||||
///
|
||||
/// Note that a group of standard colours are all
|
||||
/// defined in config.php in this directory. The
|
||||
/// reason for this is because Moodle uses the same
|
||||
/// colours to provide oldstyle formatting for
|
||||
/// browsers without CSS.
|
||||
///
|
||||
/// You can hardcode colours in this file if you
|
||||
/// don't care about this.
|
||||
|
||||
?>
|
||||
|
||||
|
||||
body, td, th, li {
|
||||
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: <?PHP echo $THEME->cellheading?>;
|
||||
}
|
||||
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.highlight {
|
||||
background-color: <?PHP echo $THEME->highlight?>;
|
||||
}
|
||||
|
||||
.headingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltable {
|
||||
}
|
||||
|
||||
.generaltableheader {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.generaltablecell {
|
||||
}
|
||||
|
||||
.sideblock {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sideblockheading {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
}
|
||||
|
||||
.sideblockmain {
|
||||
}
|
||||
|
||||
.sideblocklinks {
|
||||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpost {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.forumpostpicture {
|
||||
}
|
||||
|
||||
.forumpostside {
|
||||
}
|
||||
|
||||
.forumpostmessage {
|
||||
}
|
||||
|
||||
|
||||
.weeklyoutline {
|
||||
}
|
||||
|
||||
.weeklyoutlineside {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.weeklyoutlinecontent {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.weeklyoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.weeklydatetext {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
.topicsoutline {
|
||||
}
|
||||
|
||||
.topicsoutlineside {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinesidehidden {
|
||||
background-color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
.topicsoutlinecontent {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthighlight {
|
||||
}
|
||||
|
||||
.topicsoutlinecontenthidden {
|
||||
}
|
||||
|
||||
.siteinfo {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.siteinfocontent {
|
||||
}
|
||||
|
||||
|
||||
.generalbox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.generalboxcontent {
|
||||
}
|
||||
|
||||
.noticebox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.noticeboxcontent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.feedbacktext {
|
||||
color: <?PHP echo $THEME->cellheading2?>;
|
||||
}
|
||||
|
||||
a.dimmed:link {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:visited {
|
||||
text-decoration: none;
|
||||
color: <?PHP echo $THEME->hidden?>;
|
||||
}
|
||||
|
||||
a.dimmed:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
.dimmed_text {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.forumpostheader {
|
||||
}
|
||||
|
||||
.forumpostheaderpicture {
|
||||
}
|
||||
|
||||
.forumpostheadername {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderreplies {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.forumpostheaderdate {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.logininfo {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.homelink {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
.teacheronly {
|
||||
color: #990000;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user