`table-input` details-menu is always open
See original GitHub issueDescription
You probably already noticed this since it’s hard to miss, but the table input button’s grid popup is always open. I think it’s just a CSS issue
:root .rgh-table-input {
width: auto;
padding: 3px;
z-index: 99;
display: grid !important;
grid-template: repeat(5, 20px) / repeat(5, 20px);
}
has higher priority than
details:not([open]) > :not(summary) {
display: none !important;
}
How to replicate the issue
See the comment box input at the bottom of this page
Extension version
22.9.21
Browser(s) used
Firefox 107.0a1 (Nightly 2022-09-20)
Issue Analytics
- State:
- Created a year ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Table API - AWS Glue
An updated TableInput object to define the metadata table in the catalog. SkipArchive – Boolean. By default, UpdateTable always creates an archived version ......
Read more >Glue — Boto3 Docs 1.26.37 documentation - Amazon AWS
Retrieves the details for the custom patterns specified by a list of names. ... For more information about the available Glue versions and...
Read more >Table input on BAPI not working - SAP Community
The String input always works, but the table input does not. When we execute the BAPI in VC and provide data to the...
Read more >Reading data to table input pentaho - Stack Overflow
The idea is that your transformation takes parameters as input telling it at which ID to start and how many rows to take....
Read more >Tables - Bootstrap
Use contextual classes to color table rows or individual cells. ... Regular table background variants are not available with the dark table, however,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ah, you’re right. Thanks for your patience, it was actually my fault lol. The presence of the author sheet rule hiding the details content confused me, figured that it was intended to override the UA styles, but now (at least in Firefox) they’re not overridable at all.
Even if the final
display
value isgrid
, the browser still hides the element because that’s howdetails
work. I think you should report it to Mozilla before it reaches the stable version.