Pseudo class toggles could make better use of available space
Categories
(DevTools :: Inspector, enhancement, P3)
Tracking
(firefox-esr102 unaffected, firefox109 unaffected, firefox110 unaffected, firefox111 wontfix, firefox112 wontfix, firefox113 fixed)
Tracking | Status | |
---|---|---|
firefox-esr102 | --- | unaffected |
firefox109 | --- | unaffected |
firefox110 | --- | unaffected |
firefox111 | --- | wontfix |
firefox112 | --- | wontfix |
firefox113 | --- | fixed |
People
(Reporter: ntim, Assigned: zacnomore)
References
Details
Attachments
(2 files)
Updated•3 years ago
|
Comment 1•3 years ago
|
||
Set release status flags based on info from the regressing bug 1639052
:zacnomore, since you are the author of the regressor, bug 1639052, could you take a look?
For more information, please visit auto_nag documentation.
Comment 2•3 years ago
|
||
switching to a grid could work
diff --git a/devtools/client/themes/rules.css b/devtools/client/themes/rules.css
--- a/devtools/client/themes/rules.css
+++ b/devtools/client/themes/rules.css
@@ -60,7 +60,8 @@
.ruleview-reveal-panel {
border-bottom: 1px solid var(--theme-splitter-color);
- display: flex;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(100px, max-content));
overflow: hidden;
flex-wrap: wrap;
margin: 2px;
@@ -77,9 +78,6 @@
.ruleview-reveal-panel label {
user-select: none;
- flex-grow: 1;
- width: 30%;
- min-width: 100px;
display: flex;
align-items: center;
}
Assignee | ||
Comment 3•3 years ago
|
||
Makes sense to me, thank you for checking this out. I'll get right on it.
Assignee | ||
Comment 4•3 years ago
|
||
Comment 5•2 years ago
|
||
Set release status flags based on info from the regressing bug 1639052
Updated•2 years ago
|
Comment 6•2 years ago
|
||
This bug has the keyword regression
, so its type should be defect.
Updated•2 years ago
|
Updated•2 years ago
|
Updated•2 years ago
|
Comment 7•2 years ago
|
||
There's a r+ patch which didn't land and no activity in this bug for 2 weeks.
:zacnomore, could you have a look please?
If you still have some work to do, you can add an action "Plan Changes" in Phabricator.
For more information, please visit auto_nag documentation.
Comment 8•2 years ago
|
||
did the required change and pushed the patch
Comment 10•2 years ago
|
||
bugherder |
Updated•2 years ago
|
Updated•2 years ago
|
Description
•