shelving 1.216.1 → 1.216.3

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": "shelving",
3
- "version": "1.216.1",
3
+ "version": "1.216.3",
4
4
  "author": "Dave Houlbrooke <dave@shax.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
 
15
15
  /* Font faces */
16
16
  --font-sans: system-ui;
17
- --font-mono: "Courier New", "Courier", monospace;
17
+ --font-mono: ui-monospace, "SF Mono", "Consolas", "Menlo", monospace;
18
18
  --font-serif: "Palatino", "Garamond", serif;
19
19
 
20
20
  /* Semantic font faces */
@@ -10,6 +10,6 @@
10
10
  background-color: var(--color-surface);
11
11
 
12
12
  /* Typography */
13
- font-weight: var(--weight-normal);
13
+ font-weight: inherit;
14
14
  font-size: var(--size-smaller);
15
15
  }
@@ -55,6 +55,8 @@
55
55
  /* Submenu — Blockquote-style left border to signal hierarchy. */
56
56
  .menu .menu {
57
57
  margin-block: var(--menu-nested-spacing, var(--space-xxsmall));
58
+ /* Inset the border by the link's inline padding so it lines up with the parent item's label. */
59
+ margin-inline-start: var(--menu-link-padding, var(--space-xsmall));
58
60
  border-inline-start: var(--menu-nested-border, var(--stroke-focus)) solid var(--menu-nested-color-border, var(--color-border));
59
- padding-inline-start: var(--menu-nested-indent, var(--space-normal));
61
+ padding-inline-start: var(--menu-nested-indent, var(--space-xsmall));
60
62
  }