Closed
Bug 383270
Opened 18 years ago
Closed 16 years ago
Form should specify text color
Categories
(developer.mozilla.org Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: takenspc, Unassigned)
References
()
Details
Attachments
(1 file)
|
82.37 KB,
image/png
|
Details |
http://developer.mozilla.org/css/wiki.css specifies form's background color.But it doesn't specify form's foreground color.
So when browser's foreground color is near white, it hard to read the texts of form.
in wiki.css
#editform textarea {
border: solid #666 1px;
background: #EEE;
width: 100%;
}
#editform #wpSave {
width: 125px;
background: #DDD;
border: solid #666 1px;
}
#editform #wpPreview {
width: 125px;
background: #DDD;
border: solid #666 1px;
}
so, these should be
#editform textarea {
border: solid #666 1px;
color : #000;
background: #EEE;
width: 100%;
}
#editform #wpSave {
width: 125px;
color : #000;
background: #DDD;
border: solid #666 1px;
}
#editform #wpPreview {
width: 125px;
color : #000;
background: #DDD;
border: solid #666 1px;
}
| Reporter | ||
Comment 1•18 years ago
|
||
| Reporter | ||
Comment 2•16 years ago
|
||
This bug is for MediaWiki not Dekiwiki.
-> WONTFIX
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → WONTFIX
| Assignee | ||
Updated•13 years ago
|
Component: Deki Infrastructure → Other
Updated•5 years ago
|
Product: developer.mozilla.org → developer.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•