mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
92 lines
1.6 KiB
Plaintext
92 lines
1.6 KiB
Plaintext
THEME UPGRADES
|
|
--------------
|
|
|
|
This file lists the major changes to the theme files between Moodle versions.
|
|
|
|
See the standard themes for examples of anything in here.
|
|
|
|
|
|
================================
|
|
Changes to 1.0.9 since 1.0.8.1
|
|
--------------------------------
|
|
|
|
config.php contains two new entries:
|
|
|
|
$THEME->custompix
|
|
$THEME->hidden
|
|
|
|
|
|
/* Styles for the hide/show features (activities): */
|
|
|
|
a.dimmed:link {}
|
|
a.dimmed:visited {}
|
|
a.dimmed:hover {}
|
|
.dimmed_text {}
|
|
|
|
|
|
/* Styles used when listing discussions in a forum: */
|
|
|
|
.forumpostheadertopic {}
|
|
.forumpostheaderpicture {}
|
|
.forumpostheadername {}
|
|
.forumpostheaderreplies {}
|
|
.forumpostheaderdate {}
|
|
|
|
|
|
/* Style for the "you are logged in as" string top and bottom: */
|
|
|
|
.logininfo {}
|
|
|
|
|
|
/* Style for the link to "home": */
|
|
|
|
.homelink {}
|
|
|
|
|
|
/* Style for teacher only stuff (used to be hard-coded red): */
|
|
|
|
.teacheronly {}
|
|
|
|
|
|
/* Styles to show hidden topics on the course page */
|
|
|
|
.topicsoutlinesidehidden {}
|
|
.topicsoutlinecontenthidden {}
|
|
|
|
|
|
/* Styles to show hidden weeks on the course page */
|
|
|
|
.weeklyoutlinesidehidden {}
|
|
.weeklyoutlinecontenthidden {}
|
|
|
|
|
|
/* Style for the date-text on the weekly format */
|
|
|
|
.weeklydatetext {}
|
|
|
|
|
|
/* Style for the notice boxes (surrounding a notice message) */
|
|
|
|
.noticebox {}
|
|
.noticeboxcontent {}
|
|
|
|
|
|
/* Styles for the headers of all pages (see header.html) */
|
|
|
|
.header {}
|
|
.headermain {}
|
|
.headermenu {}
|
|
|
|
|
|
/* Styles for the headers of the home page (see header.html) */
|
|
|
|
.headerhome {}
|
|
.headerhomemain {}
|
|
.headerhomemenu {}
|
|
|
|
|
|
ALL pix files can now be changed from within a theme,
|
|
see cordoroyblue for an example: config.php and the
|
|
pix subdirectory.
|
|
|