Changes: NONE
+Notes:
+* current YUI versions numbers have to be specified in lib/setup.php
+
Added to Moodle 13 July 2006
Updated to YUI 0.12.0, 23 November 2006
Updated to YUI 0.12.1, 8 January 2007
Updated to YUI 2.6.0, 03 October 2008
Updated to YUI 2.7.0, 14 May 2009 (2.0dev only)
Updated to YUI 2.8.0r4+3.0.0, 12 December 2009 (2.0dev only)
+
+
+/* custom moodle style resets, differencies from the YUI reset */
+
+.dir-ltr {
+ text-align: left;
+}
+
+.dir-rtl {
+ text-align: right;
+}
+
+
/***
* Accessibility features
**/
// we need to go through all these and fix them.
// This means we will gradually put these back into plugins
// directories
-$THEME->sheets = array('styles_layout', 'styles_fonts', 'styles_color', 'styles_moz',
+$THEME->sheets = array(
+ 'styles_hacks',
+ 'styles_layout',
+ 'styles_fonts',
+ 'styles_color',
+ 'styles_moz',
'block_blog_tags',
'block_calendar_month',
'block_calendar_upcoming',
--- /dev/null
+
+/* a few ugly hacks that undo some parts of the CSS reset from YUI for now */
+
+.dir-ltr {
+ text-align: left;
+}
+
+.dir-rtl {
+ text-align: right;
+}
+
+ul li {
+ list-style-type: none;
+}
+
+h1.main,
+h2.main,
+h3.main,
+h4.main,
+h5.main,
+h6.main {
+ text-align: center;
+}
*** Core
***/
-h1.main,
-h2.main,
-h3.main,
-h4.main,
-h5.main,
-h6.main {
- text-align: center;
-}
-
body {
padding: 4px;
}
-/* ugly ugly hack, undo the CSS reset from YUI for now */
-ul li {
- list-style-type: none;
-}
-
#layout-table {
width:100%;
border-collapse:separate;