Closed
Bug 83895
Opened 24 years ago
Closed 24 years ago
option's shouldn't be internally indented
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
mozilla1.0
People
(Reporter: mpalczew, Assigned: rods)
References
()
Details
Attachments
(1 file)
|
401 bytes,
text/html
|
Details |
The options inside the select are indented, scrolling to them doesn't work well
Comment 1•24 years ago
|
||
-> This is HTML Form Controls (<select><option>...).
It's actually been this way since at least March (in builds I tested).
Below is a simpler test case. The 'text-indent' for the <P> is applied
to the option text of the select, leading to scrollbar's being placed
on the dropdown menu (and the text being indented to the right).
<html>
<head>
<style>
p {
text-indent: 3em;
}
</style>
</head>
<body>
<p>
<select>
<option>stuff
<option>stuff1
<option>stuff2
<option>stuff3
</select>
</body>
</html>
Assignee: trudelle → rods
Component: XP Toolkit/Widgets → HTML Form Controls
QA Contact: aegis → vladimire
| Reporter | ||
Comment 2•24 years ago
|
||
This also applies to buttons. The text inside the button will also indent.
| Assignee | ||
Updated•24 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla1.0
Comment 3•24 years ago
|
||
Comment 4•24 years ago
|
||
*** This bug has been marked as a duplicate of 56253 ***
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•