mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Fixed some missing styles
This commit is contained in:
parent
978165545e
commit
1789e61668
2 changed files with 63 additions and 0 deletions
|
@ -7,6 +7,8 @@ $THEME->cellcontent = "#eeeedd"; // For areas with text
|
|||
$THEME->cellcontent2 = ""; // Alternate colour
|
||||
$THEME->borders = "#669966"; // Table borders
|
||||
$THEME->highlight = "#ffff99"; // Highlighted text (eg after a search)
|
||||
$THEME->hidden = "#AAAAAA"; // To color things that are hidden
|
||||
$THEME->autolink = "#DDDDDD"; // To color auto-generated links (eg glossary)
|
||||
|
||||
$THEME->custompix = false; // If true, then this theme must have a "pix"
|
||||
// subdirectory that contains copies of all
|
||||
|
|
|
@ -104,9 +104,13 @@ form {
|
|||
}
|
||||
|
||||
.sideblocklatestnews {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/leftside.jpg);
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
|
||||
.sideblockrecentactivity {
|
||||
background-image: url(<?PHP echo "$themeurl"?>/leftside.jpg);
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
|
||||
.outlineheadingblock {
|
||||
|
@ -316,3 +320,60 @@ a.dimmed:hover {
|
|||
.coursename {
|
||||
}
|
||||
|
||||
.coursebox {
|
||||
}
|
||||
|
||||
.courseboxcontent {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.courseboxinfo {
|
||||
}
|
||||
|
||||
.courseboxsummary {
|
||||
}
|
||||
|
||||
a.autolink:link {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
background-color: <?PHP echo $THEME->autolink?>;
|
||||
}
|
||||
|
||||
a.autolink:visited {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
background-color: <?PHP echo $THEME->autolink?>;
|
||||
}
|
||||
|
||||
a.autolink:hover {
|
||||
text-decoration: underline;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.userinfobox {
|
||||
border-width: 1px;
|
||||
border-color: <?PHP echo $THEME->borders?>;
|
||||
border-style: solid;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.userinfoboxside {
|
||||
}
|
||||
|
||||
.userinfoboxcontent {
|
||||
}
|
||||
|
||||
.userinfoboxsummary {
|
||||
}
|
||||
|
||||
.userinfoboxlinkcontent {
|
||||
}
|
||||
|
||||
.generaltab {
|
||||
}
|
||||
|
||||
.generaltabselected {
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue