Closed
Bug 51006
Opened 25 years ago
Closed 25 years ago
Disabled text input, no type specified, doesn't look disabled
Categories
(Core :: Layout: Form Controls, defect, P4)
Core
Layout: Form Controls
Tracking
()
VERIFIED
FIXED
M18
People
(Reporter: pollmann, Assigned: ian)
References
()
Details
(Keywords: polish, testcase)
This looks like a one-liner in html.css.
Test case:
<input disabled value=foo>
The text is not grey as it would be if I had written:
<input type=text disabled value=foo>
The selector in html.css is:
input[type="text"][disabled] {
color: gray;
cursor: default;
}
Since in the above case there is no type attribute "text", we are defaulting to
a text input, but the selector above does not match. This can be fixed by
changing the above to:
input[disabled] {
color: gray;
cursor: default;
}
| Reporter | ||
Comment 1•25 years ago
|
||
(Rod, can you look this over and see if the one-liner looks reasonable to you?
Thanks!)
Whiteboard: fix in hand
| Assignee | ||
Comment 2•25 years ago
|
||
Taking this since I am doing it anyway as part of my ua.css changes.
| Assignee | ||
Updated•25 years ago
|
Whiteboard: [fix in hand] → [fix in hand] [nsbeta3+]
Comment 3•25 years ago
|
||
PDT thinks is is a P4 for nsbeta3
Priority: P1 → P4
Whiteboard: [fix in hand] [nsbeta3+] → [fix in hand] [nsbeta3+] [PDTP4]
Comment 4•25 years ago
|
||
Ian, when will your ua.css changes be going in?
Comment 5•25 years ago
|
||
Ian, fixed with your *.css checkin, right? Reopen if I'm wrong.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 6•25 years ago
|
||
FIXED as part of the ua.css changes.
| Assignee | ||
Updated•25 years ago
|
Whiteboard: [fix in hand] [nsbeta3+] [PDTP4]
You need to log in
before you can comment on or make changes to this bug.
Description
•