@jsenv/navi 0.27.28 → 0.27.30

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.
@@ -32503,10 +32503,12 @@ installImportMetaCssBuild(import.meta);const css$p = /* css */`
32503
32503
  border-style: solid;
32504
32504
  border-color: var(--x-picker-border-color);
32505
32505
  border-radius: var(--picker-border-radius);
32506
- outline-width: var(--x-picker-outline-width);
32506
+ outline-width: var(--picker-outline-width);
32507
32507
  outline-color: var(--picker-outline-color);
32508
- outline-offset: var(--x-picker-outline-offset);
32509
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.22);
32508
+ outline-offset: var(--picker-outline-offset);
32509
+ box-shadow:
32510
+ 0 4px 8px rgba(0, 0, 0, 0.08),
32511
+ 0 12px 40px rgba(0, 0, 0, 0.22);
32510
32512
  cursor: default; /* Reset pointer cursor within the select */
32511
32513
  overflow: hidden;
32512
32514
  overscroll-behavior: none;
@@ -32587,10 +32589,12 @@ installImportMetaCssBuild(import.meta);const css$p = /* css */`
32587
32589
  background: var(--picker-background-color);
32588
32590
  border: var(--picker-border-width) solid var(--x-picker-border-color);
32589
32591
  border-radius: var(--picker-border-radius);
32590
- outline-width: var(--x-picker-outline-width);
32592
+ outline-width: var(--picker-outline-width);
32591
32593
  outline-color: var(--picker-outline-color);
32592
- outline-offset: var(--x-picker-outline-offset);
32593
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.22);
32594
+ outline-offset: var(--picker-outline-offset);
32595
+ box-shadow:
32596
+ 0 4px 8px rgba(0, 0, 0, 0.08),
32597
+ 0 12px 40px rgba(0, 0, 0, 0.22);
32594
32598
  cursor: default; /* Reset pointer cursor within the select */
32595
32599
  /* overscroll-behavior: contain; */
32596
32600
 
@@ -34247,7 +34251,7 @@ const ListItemFooter = props => {
34247
34251
 
34248
34252
  installImportMetaCssBuild(import.meta);const css$m = /* css */`
34249
34253
  @layer navi {
34250
- .navi_list_container {
34254
+ .navi_list_item[navi-selectable] {
34251
34255
  /* Focus outline */
34252
34256
  --list-item-outline-width: var(--navi-focus-outline-width);
34253
34257
  /* here we draw the outline ON the item, not outside of it */
@@ -34255,12 +34259,9 @@ installImportMetaCssBuild(import.meta);const css$m = /* css */`
34255
34259
  --list-item-outline-offset: calc(-1 * var(--list-item-outline-width));
34256
34260
  --list-item-outline-color: var(--navi-focus-outline-color);
34257
34261
  /* Focus outline end */
34258
- --selectable-item-padding-x-default: var(
34259
- --navi-control-padding-x-default
34260
- );
34261
- --selectable-item-padding-y-default: var(
34262
- --navi-control-padding-y-default
34263
- );
34262
+ --list-item-border-color: var(--navi-control-border-color);
34263
+ --list-item-padding-x-default: var(--navi-control-padding-x-default);
34264
+ --list-item-padding-y-default: var(--navi-control-padding-y-default);
34264
34265
 
34265
34266
  /* Hover (mouse) */
34266
34267
  --list-item-background-color-hover: light-dark(#f5f5f5, #2a2a2a);
@@ -34293,10 +34294,7 @@ installImportMetaCssBuild(import.meta);const css$m = /* css */`
34293
34294
  margin: 0; /* Reset margin that might come from fieldset */
34294
34295
  padding: 0; /* Reset padding that might come from fieldset */
34295
34296
  }
34296
-
34297
34297
  .navi_list_container[navi-selectable] {
34298
- font-size: var(--navi-control-font-size);
34299
- font-family: var(--navi-control-font-family);
34300
34298
  &[data-callout] {
34301
34299
  --x-list-border-color: var(--callout-color);
34302
34300
  }
@@ -34304,10 +34302,11 @@ installImportMetaCssBuild(import.meta);const css$m = /* css */`
34304
34302
 
34305
34303
  .navi_list_item[navi-selectable] {
34306
34304
  --x-list-item-cursor: default;
34307
- --list-item-padding-x-default: var(--selectable-item-padding-x-default);
34308
- --list-item-padding-y-default: var(--selectable-item-padding-y-default);
34305
+ --x-list-item-border-color: var(--list-item-border-color);
34309
34306
 
34310
34307
  position: relative;
34308
+ font-size: var(--navi-control-font-size);
34309
+ font-family: var(--navi-control-font-family);
34311
34310
  outline-width: var(--list-item-outline-width);
34312
34311
  outline-color: var(--list-item-outline-color);
34313
34312
  outline-offset: var(--list-item-outline-offset);