mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
90723839ca
Very big theme changes, standardold theme has been split into two themes base and standard. Base theme contains only CSS that is absolutly required (e.g. layout, white space rules, specific widths) and standard (which now looks like standardwhite) contains all the frills. The following noteable changes have also been made: * Plugin CSS has been pushed back into the plugin directories as styles.css files. * Install_print_header has been corrected. * Redundant or deprecated rules have been removed. * Several minor class changes throughout Moodle. * CSS is now single line rules not multiline indented. * Installs with theme=standardold automatically switch to standard. * body classes / id now have prefixes to make it clearer what they are and avoid conflicts. Also worth noting: * There is still alot of tweaking that is required to get everything looking as it is supposed to, please be patient or better yet help out. * I am currently working on the documentation for the themes system... it will be here soon.
32 lines
1.7 KiB
CSS
32 lines
1.7 KiB
CSS
/** General Styles **/
|
|
.path-mod-chat .chat-event .picture,
|
|
.path-mod-chat .chat-message .picture {width:40px;vertical-align:top;}
|
|
.path-mod-chat .chat-event .text,
|
|
.path-mod-chat .chat-message .text {text-align: left;}
|
|
.path-mod-chat #messages-list,
|
|
.path-mod-chat #users-list {list-style-type:none;padding:0;margin:0}
|
|
.path-mod-chat #chat-header {overflow: hidden;}
|
|
|
|
/** styles for view.php **/
|
|
#page-mod-chat-view #chatcurrentusers .chatuserdetails {vertical-align: middle;}
|
|
|
|
/** Styles for basic chat **/
|
|
#page-mod-chat-gui_basic #participants ul {margin:0;padding:0;list-style-type:none;}
|
|
#page-mod-chat-gui_basic #participants ul li {display:inline;margin-right:10px;}
|
|
#page-mod-chat-gui_basic #participants ul li .userinfo {display:inline;}
|
|
#page-mod-chat-gui_basic #messages dl {padding:0;margin:1px;}
|
|
#page-mod-chat-gui_basic #messages dd,
|
|
#page-mod-chat-gui_basic #messages dt {margin-left:0;margin-right:5px;padding:0;display:inline;}
|
|
|
|
/** Styles for header **/
|
|
#page-mod-chat-gui_header_js-jsupdate .chat-event,
|
|
#page-mod-chat-gui_header_js-jsupdate .chat-message {width:100%;}
|
|
|
|
/** YUI Overrides **/
|
|
.path-mod-chat .yui-layout-unit-top {background: #FFE39D;}
|
|
.path-mod-chat .yui-layout-unit-right {border-top: 5px solid white;background: #FFD46B;}
|
|
.path-mod-chat .yui-layout-unit-bottom {border-top: 5px solid white;background: #FFCB44;}
|
|
.path-mod-chat .yui-layout .yui-layout-hd {border:0;}
|
|
.path-mod-chat .yui-layout .yui-layout-unit div.yui-layout-bd {border:0;background: transparent;}
|
|
.path-mod-chat .yui-layout .yui-layout-unit div.yui-layout-unit-right {background: white;}
|
|
.path-mod-chat .yui-layout-doc .yui-layout-unit .yui-layout-wrap .yui-layout-hd h2 {font-size:100%;padding:0px;font-weight:normal;} |