Closed
Bug 329143
Opened 19 years ago
Closed 10 years ago
Border style of "non-visible" case is shown
Categories
(Core Graveyard :: XForms, defect, P3)
Core Graveyard
XForms
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: allan, Unassigned)
References
()
Details
Attachments
(1 file)
|
1.11 KB,
application/xhtml+xml
|
Details |
If I set a border style on cases, the border style on the non-visible ones are still shown on the page.
| Reporter | ||
Comment 1•19 years ago
|
||
| Reporter | ||
Updated•19 years ago
|
Priority: -- → P3
| Reporter | ||
Updated•19 years ago
|
Assignee: aaronr → xforms
| Reporter | ||
Comment 2•19 years ago
|
||
The problem is that a style rule like:
xf|case {
border: 1px solid blue;
}
targets the case element itself, while we set the display attribute on the div we create inside the case. This means that this will work now:
xf|case > div {
border: 1px solid blue;
}
But obviously we do not want that. Styling the case should be enough.
Comment 3•10 years ago
|
||
RIP xforms
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
Updated•9 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•