@posiwise/core-styles 1.0.19 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -492,6 +492,23 @@
492
492
  border-width: 0 !important; // collapse the residual 2px from transparent borders
493
493
  }
494
494
 
495
+ // Non-conformant tables: some Action headers use a bare <th> with no
496
+ // `actions-list-*` class, so the rules above leave the "ACTIONS" header
497
+ // visible while the icons still float (the hybrid state). The Action
498
+ // column is always last, so collapse the last header cell of any table
499
+ // that actually has an Action body cell. (Added 2026-05-22.)
500
+ table:has(td[data-head='Action']) thead tr th:last-child {
501
+ width: 0 !important;
502
+ min-width: 0 !important;
503
+ max-width: 0 !important;
504
+ padding: 0 !important;
505
+ font-size: 0 !important;
506
+ color: transparent !important;
507
+ border-color: transparent !important;
508
+ border-width: 0 !important;
509
+ overflow: hidden !important;
510
+ }
511
+
495
512
  td[data-head='Action'] {
496
513
  position: relative;
497
514
  overflow: visible !important;