@jsenv/navi 0.27.44 → 0.27.46

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.
@@ -37462,7 +37462,12 @@ installImportMetaCssBuild(import.meta);const css$n = /* css */`
37462
37462
  --list-item-background-color-keyboard-pointed
37463
37463
  );
37464
37464
  outline-style: solid;
37465
+ /* When outline displayed + border radius behind the outline we can see some pixels of borders + background */
37466
+ /* To avoid this we need to hide borders and background */
37467
+ /* border transparent + background clip padding box work */
37468
+ /* We set background clip only here otherwise we would have the pixel issue all the time between borders and background */
37465
37469
  --x-list-item-border-color: transparent;
37470
+ background-clip: padding-box;
37466
37471
 
37467
37472
  /* Selected must win over keyboard-pointed */
37468
37473
  &[data-selected] {
@@ -38226,10 +38231,6 @@ const css$m = /* css */`
38226
38231
  );
38227
38232
  color: var(--x-list-item-color);
38228
38233
  font-weight: var(--x-list-item-font-weight);
38229
- /* Border-radius can cause background to appear behind the borders or behind the outline */
38230
- /* padding-box ensure background stays inside borders */
38231
- /* For outline we also set border-color transparent when focused */
38232
- background-clip: padding-box;
38233
38234
  background-color: var(--x-list-item-background-color);
38234
38235
  border: var(--x-list-item-border-width) solid
38235
38236
  var(--x-list-item-border-color);
@@ -40381,7 +40382,7 @@ installImportMetaCssBuild(import.meta);const css$i = /* css */`
40381
40382
  --x-picker-padding-right: 0;
40382
40383
  --x-picker-padding-bottom: 0;
40383
40384
  --x-picker-padding-left: 0;
40384
- --picker-border-width: 0;
40385
+ --picker-border-width: 0px; /* must carry a unit (px) — used in calc() to offset the custom input overlay */
40385
40386
  --x-picker-border-color: transparent;
40386
40387
  --x-picker-background-color: transparent;
40387
40388
  --x-picker-icon-color: currentColor;
@@ -40391,7 +40392,7 @@ installImportMetaCssBuild(import.meta);const css$i = /* css */`
40391
40392
  --x-picker-padding-right: 0;
40392
40393
  --x-picker-padding-bottom: 0;
40393
40394
  --x-picker-padding-left: 0;
40394
- --picker-border-width: 0;
40395
+ --picker-border-width: 0px; /* must carry a unit (px) — used in calc() to offset the custom input overlay */
40395
40396
  --x-picker-border-color: transparent;
40396
40397
  --x-picker-background-color: transparent;
40397
40398
  --x-picker-icon-color: currentColor;