@kernhq/module-quire 0.10.8 → 0.10.9

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": "@kernhq/module-quire",
3
- "version": "0.10.8",
3
+ "version": "0.10.9",
4
4
  "description": "Kern Quire: collaborative documents, spaces and page trees",
5
5
  "homepage": "https://github.com/KernAIO/module-quire#readme",
6
6
  "license": "AGPL-3.0-only",
@@ -412,8 +412,15 @@ async function trash() {
412
412
  background: none;
413
413
  padding: 0;
414
414
  }
415
- .title-field:focus {
415
+ /*
416
+ * The title is the page's heading, not a form field, so it carries no ring — the caret says where
417
+ * you are. `outline: none` is not enough on its own: the global `:focus-visible` rule draws a
418
+ * `box-shadow`, which drew a box around the title on every click.
419
+ */
420
+ .title-field:focus,
421
+ .title-field:focus-visible {
416
422
  outline: none;
423
+ box-shadow: none;
417
424
  }
418
425
  .byline {
419
426
  display: flex;