Closed
Bug 279950
Opened 20 years ago
Closed 20 years ago
tab border on search and prefs pages isn't black in Internet Explorer
Categories
(Bugzilla :: User Interface, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.20
People
(Reporter: robzilla, Assigned: robzilla)
Details
Attachments
(1 file, 1 obsolete file)
|
1.65 KB,
patch
|
Wurblzap
:
review+
|
Details | Diff | Splinter Review |
the tabs in the search and prefs pages look much nicer in Mozilla than in Internet Explorer. This is because in Mozilla, the "border" of the tabs is black, while in IE, it's light gray.
| Assignee | ||
Comment 1•20 years ago
|
||
Attachment #172484 -
Flags: review?
| Assignee | ||
Updated•20 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•20 years ago
|
||
sorry, here's a better-formed patch
Attachment #172484 -
Attachment is obsolete: true
Attachment #172485 -
Flags: review?
| Assignee | ||
Updated•20 years ago
|
Attachment #172484 -
Flags: review?
Updated•20 years ago
|
Attachment #172485 -
Flags: review? → review+
Updated•20 years ago
|
Flags: approval?
Updated•20 years ago
|
Flags: approval? → approval+
OS: Windows Server 2003 → All
Hardware: PC → All
Target Milestone: --- → Bugzilla 2.20
Updated•20 years ago
|
Whiteboard: patch awaiting checkin
Comment 3•20 years ago
|
||
Instead of putting the style declaration into the template file directly I'd
suggest to omit it there completely and move it to web/css/global.css (thus
adding the following lines):
td.selected_tab
{
border-width: 2px 2px 0px;
border-style: solid;
border-color: black;
}
td.unselected_tab, td.spacer
{
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: black;
}
dl.bug_changes, dt
{
margin-top: 15px;
}
Wouldn't that be much better?
This way one could customize the tabs' appearence without having to mess around
in the templates. Modifying web/css/global.css would do it all.
Peter
Comment 4•20 years ago
|
||
(In reply to comment #3) > Modifying web/css/global.css would do it all. For the same reason I would remove the "bgcolor=" attributes from the td-tags that define background-color in td.selected_tab and td.unselected_tab, respectively. When all such markup (I'd like to address '<font size="+2">' etc. too) is moved from the template code into the css-files we will sooner or later have a fully skinnable web application just providing different versions of css-files. -- And that would *really* be nice! Cheers, Peter
Comment 5•20 years ago
|
||
Peter Bittner: your ideas and suggestions are worthy of another bug. This one solves the problem, albeit not in what you perceive to be the most elegant way, so it's being checked in for now. Checking in template/en/default/account/prefs/prefs.html.tmpl; /cvsroot/mozilla/webtools/bugzilla/template/en/default/account/prefs/prefs.html. tmpl,v <-- prefs.html.tmpl new revision: 1.16; previous revision: 1.15 done Checking in template/en/default/search/search-advanced.html.tmpl; /cvsroot/mozilla/webtools/bugzilla/template/en/default/search/search- advanced.html.tmpl,v <-- search-advanced.html.tmpl new revision: 1.23; previous revision: 1.22 done
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Whiteboard: patch awaiting checkin
You need to log in
before you can comment on or make changes to this bug.
Description
•