Closed
Bug 248675
Opened 21 years ago
Closed 21 years ago
radio button with disabled="false" attribute rendered incorrectly
Categories
(SeaMonkey :: Themes, defect)
SeaMonkey
Themes
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.8alpha2
People
(Reporter: asqueella, Assigned: durbacher)
Details
Attachments
(2 files)
390 bytes,
application/vnd.mozilla.xul+xml
|
Details | |
599 bytes,
patch
|
neil
:
review+
jag+mozilla
:
superreview+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.9 (best browser EVAR1!!)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040514
In the Modern theme a radio button with disabled="false" attribute (ie. <radio
disabled="false" ... />) looks the same when selected and when not selected.
This is because of incorrect rule in chrome://global/skin/radio.css (IMHO)
It reads:
---------
radio[disabled] > .radio-check {
list-style-image: url("chrome://global/skin/radio/radio-dis.gif") !important;
}
---------
and it should be:
---------
radio[disabled="true"] > .radio-check {
list-style-image: url("chrome://global/skin/radio/radio-dis.gif") !important;
}
Reproducible: Always
Steps to Reproduce:
1. go to http://quicknote.mozdev.org/
2. install QuickNote 0.5.9.1 or earlier
3. open QN's settings window
Actual Results:
send to tab 1 radio button looks like it is not selected, though it is.
this has also been seen with
Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7) Gecko/20040618
Assignee | ||
Comment 1•21 years ago
|
||
Confirming.
This is not only a rendering problem, but also prevents the user from activating
the given radio element (but this problem is solved with the corrected style).
Testcase and patch coming...
Nickolay: thank you very much for finding the exact problem causing this!!
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Assignee | ||
Updated•21 years ago
|
Assignee: themes → durbacher
Status: ASSIGNED → NEW
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
OS: Windows XP → All
Hardware: PC → All
Target Milestone: --- → mozilla1.8alpha2
Assignee | ||
Comment 2•21 years ago
|
||
Assignee | ||
Comment 3•21 years ago
|
||
Patch as proposed in the bug description.
Tested, works fine.
Other places like
http://lxr.mozilla.org/seamonkey/source/themes/classic/global/mac/radio.css#85
already get this right. Seems to be the only place where it's wrong.
Assignee | ||
Comment 4•21 years ago
|
||
Comment on attachment 151744 [details] [diff] [review]
patch
Requesting r= from Neil.
Attachment #151744 -
Flags: review?(neil.parkwaycc.co.uk)
Updated•21 years ago
|
Attachment #151744 -
Flags: review?(neil.parkwaycc.co.uk) → review+
Assignee | ||
Comment 5•21 years ago
|
||
Comment on attachment 151744 [details] [diff] [review]
patch
Requesting sr= from alecf.
Attachment #151744 -
Flags: superreview?(alecf)
Assignee | ||
Comment 6•21 years ago
|
||
Comment on attachment 151744 [details] [diff] [review]
patch
Changing sr= request to jag.
Attachment #151744 -
Flags: superreview?(alecf) → superreview?(jag)
Comment 7•21 years ago
|
||
Comment on attachment 151744 [details] [diff] [review]
patch
sr=jag
Attachment #151744 -
Flags: superreview?(jag) → superreview+
Comment 8•21 years ago
|
||
Checking in themes/modern/global/radio.css;
/cvsroot/mozilla/themes/modern/global/radio.css,v <-- radio.css
new revision: 1.23; previous revision: 1.22
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Product: Core → SeaMonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•