@lumir-company/editor 0.4.22 → 0.4.23
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/README.md +5 -0
- package/dist/index.js +133 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +123 -18
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +6 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -559,6 +559,12 @@
|
|
|
559
559
|
overflow-y: auto;
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
+
/* blur 상태에서도 텍스트 선택 하이라이트 유지 (InactiveSelectionExtension).
|
|
563
|
+
툴바 드롭다운(글자 크기 등) 조작 시 에디터가 blur돼 네이티브 선택이 사라지는 문제 보완. */
|
|
564
|
+
.bn-inactive-selection {
|
|
565
|
+
background-color: var(--lumir-inactive-selection, rgba(35, 131, 226, 0.28));
|
|
566
|
+
}
|
|
567
|
+
|
|
562
568
|
/* Font Size 1px Stepper (글자 크기 −/+ + 직접 입력) — 두 드롭다운(FormattingToolbar/FloatingMenu) 공용 */
|
|
563
569
|
.lumir-fs-stepper {
|
|
564
570
|
display: flex;
|
package/package.json
CHANGED