RESOLVED FIXED 29811
Text in Inspector's Styles gear menu is invisible
https://bugs.webkit.org/show_bug.cgi?id=29811
Summary Text in Inspector's Styles gear menu is invisible
Adam Roben (:aroben)
Reported 2009-09-28 09:24:30 PDT
To reproduce: 1. Go to any page 2. Right-click and choose "Inspect Element" 3. Hover over the Styles section header in the right sidebar 4. Click on the gear that appears The text in the menu is invisible. It looks like this is due to <http://trac.webkit.org/browser/trunk/WebCore/inspector/front-end/inspector.css?rev=48809#L1617>, where we set the color of the <select> to be transparent. This affects the text in the menu on Windows. One fix for this would be to add a rule like: .pane > .title > select > option { color: black } "black" might not always be the right color, though.
Attachments
Fix described by comment 5 (1.15 KB, patch)
2009-10-08 10:21 PDT, Brian Weinstein
aroben: review+
bweinstein: commit-queue-
Adam Roben (:aroben)
Comment 1 2009-09-28 09:27:31 PDT
Timothy Hatcher
Comment 2 2009-09-28 09:39:16 PDT
I think we could also use: .pane > .title > select { text-indent: 30; } And then let the color be unchanged.
Adam Roben (:aroben)
Comment 3 2009-09-29 15:03:13 PDT
(In reply to comment #2) > I think we could also use: > > .pane > .title > select { text-indent: 30; } > > And then let the color be unchanged. I'm pretty sure that doing that will indent the text inside the menu, too.
Brian Weinstein
Comment 4 2009-10-07 23:07:58 PDT
*** Bug 30192 has been marked as a duplicate of this bug. ***
Timothy Hatcher
Comment 5 2009-10-08 08:22:30 PDT
So the fix would be: .pane > .title > select > option { color: black; } .pane > .title > select > hr { color: black; }
Brian Weinstein
Comment 6 2009-10-08 10:21:15 PDT
Created attachment 40888 [details] Fix described by comment 5
Adam Roben (:aroben)
Comment 7 2009-10-08 10:38:56 PDT
Comment on attachment 40888 [details] Fix described by comment 5 r=me
Brian Weinstein
Comment 8 2009-10-08 13:30:38 PDT
Note You need to log in before you can comment on or make changes to this bug.