I searched for preexisting posts dealing with this and couldn't find
anything (wrong keywords maybe), if this redundant, my apologies.
I've been developing some GWT apps, browsing with Firefox 3.0.3 and
Firebug 1.2.1. I use Firebug extensively to change style rules and see
their affects on the fly. Quite frequently, when I tweak a rule
applied to an element which lies within a TABLE, the rule name itself
disappears along with some of it property declarations. What remains
is often a nameless block. Example:
If I inspect some element, say a DIV, inside a TD and see this in the
Style area:
table.my-tbl td.my-cell .gwt-Label { my_awesome_layout.css
(line 69)
height: 420px;
width: 420px;
border: 1px solid #ccc;
}
Then, I try to change the width to "300px", as soon as I click on
another style rule to apply the change, the style area changes to:
{ my_awesome_layout.css
(line 69)
width: 420px;
border: 1px solid #ccc;
}
Further, if I try to modify the rule further, the entire rule is
removed.
Has anyone else observed this?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---