Issue Details (XML | Word | Printable)

Key: MDL-12536
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Urs Hunkler
Reporter: Matt Gibson
Votes: 0
Watchers: 0
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Moodle

custom corners tabs are broken on ie6

Created: 11/Dec/07 07:27 PM   Updated: 15/Jan/08 02:11 AM
Return to search
Component/s: Themes
Affects Version/s: 1.9
Fix Version/s: None

File Attachments: None
Image Attachments:

1. quiz_tab_problem.jpg
(5 kB)

2. tabs.JPG
(4 kB)

3. tabs_ie6.JPG
(4 kB)

Participants: Matt Gibson and Urs Hunkler
Security Level: None
Resolved date: 12/Jan/08
Affected Branches: MOODLE_19_STABLE


 Description  « Hide
Seems to affect all tabs.

 All   Comments   Change History   Version Control      Sort Order: Ascending order - Click to sort in descending order
Matt Gibson added a comment - 20/Dec/07 09:28 PM
Also this in the quiz screen. Tabs overlapping each other.

Urs Hunkler added a comment - 12/Jan/08 11:21 PM
Resolved with the last CSS changes.

Matt Gibson added a comment - 13/Jan/08 10:18 PM
Seems to still be there in the quiz module after CVS update...

Urs Hunkler added a comment - 13/Jan/08 11:35 PM
Matt, here are the tabs ok in IE6. Have you cleared the cache - not with the browser shortcut but from the menus?

You may check styles_ie6.css if top is set to 4.2em. If yes tabs should work.

.tabrow0 div,
.tabrow0 ul {
top: 4.2em;
}


Matt Gibson added a comment - 15/Jan/08 02:09 AM - edited
Thanks Urs, that fixed it when I attached it to the end of my styles_ie6.css. I realised that I had parentmetainclude set to false, but if I set it to true and use my original styles_ie6.css, it doesn't work. My theme is supposed to use custom_corners as its parent. Here's my config for comparison:

<?php // $Id: config.php,v 1.7 2007-08-09 11:47:24 urs_hunkler Exp $

$THEME->sheets = array('user_styles');
$THEME->standardsheets = array('styles_layout');
$THEME->parent = 'custom_corners';
$THEME->parentsheets = array('user_styles');
$THEME->modsheets = true;
$THEME->blocksheets = true;
$THEME->langsheets = false;
$THEME->block_l_min_width = 180;
$THEME->block_l_max_width = 210;
$THEME->block_r_min_width = 180;
$THEME->block_r_max_width = 210;
$THEME->courseformatsheets = true;
$THEME->metainclude = true;
$THEME->standardmetainclude = true;
$THEME->parentmetainclude = true;
$THEME->navmenuwidth = 50;
$THEME->makenavmenulist = false;
$THEME->customcorners = true;
$THEME->chameleonenabled = false;
$THEME->chameleonteachereditenabled = false;
$THEME->resource_mp3player_colors =

'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.

'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.

'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
$THEME->filter_mediaplugin_colors =

'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.

'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.

'waitForPlay=yes';
$THEME->custompix = false;
?>