ordars_rails_editor 0.1.2 → 0.1.3
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b89e6539a946d620004e54bbd9f8b0dbe500faa39c9dbd156136964311ab11c3
|
|
4
|
+
data.tar.gz: 8452b2d90230c3c16e899e76dd2e0ecdd267d68793949a0b6630051d086d86f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8eaf386e5d2eb1c33be1290d5c0558ba208d8333078abb3ee18fa3622e06c194f7e95532bb911cdbc695c11fdeea759e59cf58e9a0ee7149aa6c736c8f7e4793
|
|
7
|
+
data.tar.gz: cd50ea53511e80ec199c71a628cf548ae18e2ac2998253f26c4924b1800539246802a9b731fceaaa738e5ffd563fa73303d5e999544622093599d2fb1c7d883c
|
|
@@ -52,6 +52,12 @@
|
|
|
52
52
|
/* ── 본문 ── */
|
|
53
53
|
.ore-content { min-height: 300px; max-height: 55vh; overflow-y: auto; padding: 18px 20px; font-size: 15px; line-height: 1.75; color: var(--ore-text); }
|
|
54
54
|
.ore-content .tiptap { outline: none; min-height: 260px; }
|
|
55
|
+
/* 편집 영역 포커스 링 억제 — 호스트의 전역 :focus-visible 링(예: rails_modal_manager 의
|
|
56
|
+
`.rmm-modal :focus-visible { box-shadow: ring }`)이 contenteditable/소스 textarea 에 얹히는 것 방지.
|
|
57
|
+
(.ore 스코프 3중 선택자로 특이성 우위 확보 — 0.1.3 실사고: 본문 클릭 시 파란 외곽 링) */
|
|
58
|
+
.ore .ore-content :focus, .ore .ore-content :focus-visible,
|
|
59
|
+
.ore .ore-content .tiptap:focus, .ore .ore-content .tiptap:focus-visible,
|
|
60
|
+
.ore .ore-html:focus, .ore .ore-html:focus-visible { outline: none; box-shadow: none; }
|
|
55
61
|
.ore-content .tiptap p { margin: 0 0 .35em; }
|
|
56
62
|
.ore-content .tiptap h1, .ore-content .tiptap h2, .ore-content .tiptap h3 { margin: .6em 0 .35em; line-height: 1.35; }
|
|
57
63
|
.ore-content .tiptap ul, .ore-content .tiptap ol { padding-left: 1.5em; margin: .3em 0; }
|