Skip to main content

Bug Tracker

Side navigation

#2760 closed bug (invalid)

Opened April 29, 2008 12:11PM UTC

Closed January 16, 2009 06:38AM UTC

Display problems of loading icons under IE6

Reported by: laxkin Owned by: klaus
Priority: trivial Milestone: 1.2.4
Component: ui Version: 1.2.3
Keywords: Tabs Cc:
Blocked by: Blocking:
Description

There is a visualization bug under IE6 when you are trying to use ajax tabs. See attached image.

The solution is use <p> tag instead of <em>:

Line 487: 
$span.data('label.tabs', $span.html()).html('<em>' + o.spinner + '</em>');

replace to

Line 487: 
$span.data('label.tabs', $span.html()).html('<p>' + o.spinner + '</p>');

Also you should fix a .css file, replace .ui-tabs-loading em to .ui-tabs-loading p and add padding:

.ui-tabs-loading p {
    padding-left: 20px;
    background: url(loading.gif) no-repeat 0px 50%;
}
Attachments (1)
Change History (2)

Changed April 30, 2008 09:15AM UTC by paul comment:1

owner: paulklaus

Changed January 16, 2009 06:38AM UTC by klaus comment:2

resolution: → invalid
status: newclosed