Skip to content

Commit

Permalink
theme-standardold MDL-25431 Fixed up a block header display issue in …
Browse files Browse the repository at this point in the history
…standardold ie6 and added readme file
  • Loading branch information
Sam Hemelryk committed Nov 29, 2010
1 parent a7703e6 commit c3863f0
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 17 deletions.
19 changes: 19 additions & 0 deletions theme/standardold/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
This theme is designed specifically to work on IE6 and other old browsers.

The Moodle 2.0 release notes state that IE6 is no longer supported however we
have not gone out of our way to ensure it does not work and as such it should
in the most part work fine barring numerous minor visual issues.

This theme is here so that those who are stuck with IE6 can still have a usable
theme, although specific areas of Moodle may still cause problems or fail
to function correctly.
It differs from the standard theme only by the layouts, rather than using
the floating div layout that puts the content first this theme uses a table for
layout much like the theme's in Moodle 1.9.

Because IE6 is not supported Moodle HQ will not be spending copious amounts of
time on getting it 100% functional. Please if you find a bug with IE6 and this
theme - find a solution as well. Then create a bug report at tracker.moodle.org
and provide both a detailed example of where to find and how to replicate the
bug as well as the solution you found. This way we can continue to improve the
theme and it's IE6 support.
15 changes: 0 additions & 15 deletions theme/standardold/THEME_DEVELOPERS_READ_THIS.TXT

This file was deleted.

9 changes: 8 additions & 1 deletion theme/standardold/lang/en/theme_standardold.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,11 @@
$string['pluginname'] = 'Standard (legacy)';
$string['region-side-post'] = 'Right';
$string['region-side-pre'] = 'Left';
$string['choosereadme'] = 'Legacy standard theme using table based layout. May contain obsolete CSS styling.';
$string['choosereadme'] = 'This theme is designed specifically to work on IE6 and other old browsers.
The Moodle 2.0 release notes state that IE6 is no longer supported however we have not gone out of our way to ensure it does not work and as such it should in the most part work fine barring numerous minor visual issues.
This theme is here so that those who are stuck with IE6 can still have a usable theme, although specific areas of Moodle may still cause problems or fail to function correctly.
It differs from the standard theme only by the layouts, rather than using the floating div layout that puts the content first this theme uses a table for layout much like the theme\'s in Moodle 1.9.
Because IE6 is not supported Moodle HQ will not be spending copious amounts of time on getting it 100% functional. Please if you find a bug with IE6 and this theme - find a solution as well. Then create a bug report at tracker.moodle.org and provide both a detailed example of where to find and how to replicate the bug as well as the solution you found. This way we can continue to improve the theme and it\'s IE6 support.';
7 changes: 6 additions & 1 deletion theme/standardold/style/pagelayout.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@ table.layout-table {width:100%; border-collapse:separate; margin-top: 8px;}
table.layout-table td {border: 0;}
table.layout-table #region-main-wrap {padding-left:12px; padding-right:12px;vertical-align:top;width: auto;}
table.layout-table #region-pre,
table.layout-table #region-post {vertical-align:top;width: 12em;}
table.layout-table #region-post {vertical-align:top;width: 12em;}

table.layout-table #region-pre .block,
table.layout-table #region-post .block {position:relative;width:100%;}
table.layout-table #region-pre .block .header,
table.layout-table #region-post .block .header {width:100%;}

0 comments on commit c3863f0

Please sign in to comment.