@saluzi/saluzi-edu 0.1.77 → 0.1.78
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/dist/cli.js +129 -75
- package/dist/parade/web/cube.js +1 -0
- package/dist/parade/web/index.html +3 -3
- package/package.json +1 -1
package/dist/parade/web/cube.js
CHANGED
|
@@ -241,6 +241,7 @@ if (window.parade && typeof window.parade.startDrag === 'function') {
|
|
|
241
241
|
if (e.button !== 0) return // left button only
|
|
242
242
|
if (e.target.closest('#ctx-menu')) return // don't drag from menu
|
|
243
243
|
if (e.target.closest('#close-btn')) return // don't drag from close btn
|
|
244
|
+
if (e.target.closest('.session-jump')) return // don't drag from jump dot
|
|
244
245
|
var cornerEl = e.target.closest('[data-corner]')
|
|
245
246
|
if (cornerEl && typeof window.parade.startResize === 'function') {
|
|
246
247
|
window.parade.startResize(cornerEl.dataset.corner)
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
font-size: 10.5px;
|
|
128
128
|
line-height: 1.35;
|
|
129
129
|
color: var(--text-dim);
|
|
130
|
-
padding: 2px 0 2px
|
|
130
|
+
padding: 2px 0 2px 14px;
|
|
131
131
|
position: relative;
|
|
132
132
|
font-variant-numeric: tabular-nums;
|
|
133
133
|
display: flex;
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
.session-jump:hover {
|
|
164
164
|
color: var(--purple-soft);
|
|
165
165
|
font-size: 12px;
|
|
166
|
-
left: -
|
|
166
|
+
left: -3px;
|
|
167
167
|
}
|
|
168
168
|
.session-jump:hover::before {
|
|
169
169
|
content: '\25B8';
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
font-size: 10px;
|
|
185
185
|
color: var(--text-faint);
|
|
186
186
|
font-style: italic;
|
|
187
|
-
padding-left:
|
|
187
|
+
padding-left: 14px;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
#more-line {
|