-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Open
Labels
needs investigationThe bug has not yet been reproduced by me. Analysis or more details are needed.The bug has not yet been reproduced by me. Analysis or more details are needed.staleThis issue will be closed soon because of prolonged inactivityThis issue will be closed soon because of prolonged inactivity
Milestone
Description
Lines 691 to 696 in b60313e
| /* wrapper divs hidden by default */ | |
| #liveview, #liveview2D, #roverstar, #pql | |
| #rgbwrap, #swrap, #hwrap, #kwrap, #wwrap, #wbal, #qcs-w, #hexw, | |
| .clear-icon, .edit-icon, .ptxt { | |
| display: none; | |
| } |
I'm not at expert in CSS, but it could be that a comma is missing at the end of line 692?
Asked the rabbit and he explains is like this
When there is no comma between #pql and #rgbwrap, the parser treats that gap as a descendant combinator. The selector list effectively contains a compound selector "#pql #rgbwrap" (rgbwrap inside pql) instead of two separate selectors "#pql" and "#rgbwrap". That means #pql itself will NOT be matched/hidden unless #rgbwrap is a descendant of it.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
needs investigationThe bug has not yet been reproduced by me. Analysis or more details are needed.The bug has not yet been reproduced by me. Analysis or more details are needed.staleThis issue will be closed soon because of prolonged inactivityThis issue will be closed soon because of prolonged inactivity