tandem-editor 0.14.0 → 0.14.2
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/CHANGELOG.md +22 -0
- package/LICENSE +6 -3
- package/README.md +2 -2
- package/dist/channel/index.js.map +1 -1
- package/dist/cli/index.js +32 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/client/assets/CoworkSettings-vFVSs4Qc.js +5 -0
- package/dist/client/assets/index-D8TCH-cH.js +262 -0
- package/dist/client/assets/{index-DnfqQPoz.css → index-DF05z-td.css} +1 -1
- package/dist/client/index.html +14 -10
- package/dist/monitor/index.js.map +1 -1
- package/dist/server/index.js +768 -519
- package/dist/server/index.js.map +1 -1
- package/package.json +8 -7
- package/sample/welcome.md +1 -1
- package/dist/client/assets/CoworkSettings-DyolPw-M.js +0 -3
- package/dist/client/assets/index-KMogjPDL.js +0 -261
package/dist/client/index.html
CHANGED
|
@@ -211,11 +211,15 @@
|
|
|
211
211
|
/* Directional rail shadows — cast inward toward the editor only. The
|
|
212
212
|
rails sit flush to the window edge; an isotropic shadow would be
|
|
213
213
|
clipped on the outer side. Light theme. Dark-theme override below. */
|
|
214
|
-
--tandem-rail-shadow-left:
|
|
215
|
-
1px 0 1px rgba(0, 0, 0, 0.
|
|
216
|
-
--tandem-rail-shadow-right: -
|
|
217
|
-
-1px 0 1px rgba(0, 0, 0, 0.
|
|
214
|
+
--tandem-rail-shadow-left: 6px 0 20px -7px rgba(0, 0, 0, 0.24),
|
|
215
|
+
1px 0 1px rgba(0, 0, 0, 0.05);
|
|
216
|
+
--tandem-rail-shadow-right: -6px 0 20px -7px rgba(0, 0, 0, 0.24),
|
|
217
|
+
-1px 0 1px rgba(0, 0, 0, 0.05);
|
|
218
218
|
--tandem-z-base: 1;
|
|
219
|
+
/* Hover-revealed floating rail: above the editor body + the right
|
|
220
|
+
rail's at-rest z-index:1, but below dropdown so an in-panel menu
|
|
221
|
+
rendered inside the float still escapes. */
|
|
222
|
+
--tandem-z-rail-float: 5;
|
|
219
223
|
--tandem-z-dropdown: 10;
|
|
220
224
|
--tandem-z-sticky: 100;
|
|
221
225
|
--tandem-z-overlay: 900;
|
|
@@ -511,10 +515,10 @@
|
|
|
511
515
|
--tandem-page-bg: #2a2a2a;
|
|
512
516
|
--tandem-page-paper: #1a1a1a;
|
|
513
517
|
--tandem-page-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
|
|
514
|
-
--tandem-rail-shadow-left:
|
|
515
|
-
1px 0 1px rgba(0, 0, 0, 0.
|
|
516
|
-
--tandem-rail-shadow-right: -
|
|
517
|
-
-1px 0 1px rgba(0, 0, 0, 0.
|
|
518
|
+
--tandem-rail-shadow-left: 6px 0 22px -5px rgba(0, 0, 0, 0.62),
|
|
519
|
+
1px 0 1px rgba(0, 0, 0, 0.3);
|
|
520
|
+
--tandem-rail-shadow-right: -6px 0 22px -5px rgba(0, 0, 0, 0.62),
|
|
521
|
+
-1px 0 1px rgba(0, 0, 0, 0.3);
|
|
518
522
|
}
|
|
519
523
|
|
|
520
524
|
/* Warm canvas theme — v7 floating chrome. OKLCH values come straight
|
|
@@ -675,8 +679,8 @@
|
|
|
675
679
|
line-height: var(--tandem-ui-leading);
|
|
676
680
|
}
|
|
677
681
|
</style>
|
|
678
|
-
<script type="module" crossorigin src="/assets/index-
|
|
679
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
682
|
+
<script type="module" crossorigin src="/assets/index-D8TCH-cH.js"></script>
|
|
683
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DF05z-td.css">
|
|
680
684
|
</head>
|
|
681
685
|
<body>
|
|
682
686
|
<div id="root"></div>
|