pinokiod 8.0.113 → 8.0.114

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": "pinokiod",
3
- "version": "8.0.113",
3
+ "version": "8.0.114",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1647,16 +1647,20 @@ body[data-vault-mode="global"] .vault-explorer {
1647
1647
  }
1648
1648
  .vault-text-button:hover { color: var(--task-text); }
1649
1649
  .vault-text-button:disabled { cursor: progress; opacity: .55; }
1650
+ /* The list is the only part that grows and scrolls; every other row keeps its
1651
+ own height. Laying this out as fixed grid rows tied the footer's position to
1652
+ how many children happened to be in flow, and a status row appearing or a
1653
+ mode declaring a different count pushed the footer out of the pane, where no
1654
+ amount of scrolling could reach it. */
1650
1655
  .vault-pane {
1651
- display: grid;
1656
+ display: flex;
1652
1657
  min-width: 0;
1653
1658
  min-height: 0;
1654
- grid-template-rows: auto auto minmax(0, 1fr) auto;
1659
+ flex-direction: column;
1655
1660
  overflow: hidden;
1656
1661
  }
1657
- body[data-vault-mode="global"] .vault-pane {
1658
- grid-template-rows: auto auto auto minmax(0, 1fr) auto;
1659
- }
1662
+ .vault-pane > * { flex: 0 0 auto; }
1663
+ .vault-pane > .vault-table-wrap { min-height: 0; flex: 1 1 auto; }
1660
1664
  body.vault-page .vault-view-tabs {
1661
1665
  display: block;
1662
1666
  min-width: 0;
@@ -2192,6 +2196,10 @@ body.dark .vault-row-action .vault-text-button:hover:not(:disabled) {
2192
2196
  align-items: center;
2193
2197
  justify-content: space-between;
2194
2198
  gap: 12px;
2199
+ /* Now that it holds its own place at the bottom, it needs an edge: a short
2200
+ list leaves empty space above it, and without a rule it reads as a stray
2201
+ line of text rather than the foot of the table. */
2202
+ border-top: 1px solid var(--task-border);
2195
2203
  padding: 9px var(--vault-inline) 11px;
2196
2204
  color: var(--task-muted);
2197
2205
  font-size: 10.5px;