@yurikilian/lex4 1.5.6 → 1.5.8
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/style.css +5 -7
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1125,12 +1125,14 @@
|
|
|
1125
1125
|
overflow: visible;
|
|
1126
1126
|
font-size: var(--lex4-body-font-size);
|
|
1127
1127
|
line-height: var(--lex4-body-line-height);
|
|
1128
|
+
caret-color: var(--color-canvas-foreground);
|
|
1128
1129
|
}
|
|
1129
1130
|
|
|
1130
1131
|
.lex4-root {
|
|
1131
1132
|
outline: none;
|
|
1132
1133
|
font-size: var(--lex4-body-font-size);
|
|
1133
1134
|
line-height: var(--lex4-body-line-height);
|
|
1135
|
+
caret-color: var(--color-canvas-foreground);
|
|
1134
1136
|
}
|
|
1135
1137
|
|
|
1136
1138
|
.lex4-page-body-editable::-moz-selection, .lex4-page-body-editable *::-moz-selection, .lex4-root::-moz-selection, .lex4-root *::-moz-selection {
|
|
@@ -1155,11 +1157,6 @@
|
|
|
1155
1157
|
min-height: calc(1em * var(--lex4-body-line-height));
|
|
1156
1158
|
}
|
|
1157
1159
|
|
|
1158
|
-
.lex4-paragraph:has(> br:only-child)::before {
|
|
1159
|
-
content: '\00a0';
|
|
1160
|
-
color: transparent;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
1160
|
.lex4-heading {
|
|
1164
1161
|
margin: 0 0 0.5rem;
|
|
1165
1162
|
font-weight: 600;
|
|
@@ -1255,11 +1252,12 @@
|
|
|
1255
1252
|
-webkit-user-select: none;
|
|
1256
1253
|
-moz-user-select: none;
|
|
1257
1254
|
user-select: none;
|
|
1258
|
-
|
|
1255
|
+
opacity: 1;
|
|
1256
|
+
transition: opacity 120ms ease;
|
|
1259
1257
|
}
|
|
1260
1258
|
|
|
1261
1259
|
.lex4-page-body:focus-within .lex4-page-placeholder {
|
|
1262
|
-
|
|
1260
|
+
opacity: 0;
|
|
1263
1261
|
}
|
|
1264
1262
|
|
|
1265
1263
|
/* ── Page header / footer ────────────────────────────────── */
|