@licium/editor-plugin-details 1.0.2 → 1.0.13

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.
@@ -0,0 +1,42 @@
1
+ /*!
2
+ * TOAST UI Editor : Text Align Plugin
3
+ * @version 1.0.12 | Mon Jan 05 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+ /* Light Mode */
8
+ .toastui-editor-toolbar-icons.details {
9
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23333%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z%27/%3E%3Cpath d=%27M9 10L12 13 15 10%27 stroke=%27%23333%27/%3E%3C/svg%3E") !important;
10
+ background-size: 24px 24px !important;
11
+ background-repeat: no-repeat !important;
12
+ background-position: center center !important;
13
+ text-indent: -9999px !important;
14
+ }
15
+
16
+ details {
17
+ display: block;
18
+ background-color: #f7f7f7;
19
+ border: 1px solid #e1e1e1;
20
+ border-radius: 4px;
21
+ padding: 10px;
22
+ margin: 10px 0;
23
+ }
24
+
25
+ summary {
26
+ cursor: pointer;
27
+ font-weight: bold;
28
+ margin-bottom: 5px;
29
+ outline: none;
30
+ }
31
+
32
+ /* Dark Mode */
33
+ .toastui-editor-dark .toastui-editor-toolbar-icons.details {
34
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23eee%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z%27/%3E%3Cpath d=%27M9 10L12 13 15 10%27 stroke=%27%23eee%27/%3E%3C/svg%3E") !important;
35
+ }
36
+
37
+ .toastui-editor-dark details {
38
+ background-color: #282a36;
39
+ /* Darker background for contrast against editor bg */
40
+ border-color: #44475a;
41
+ color: #f8f8f2;
42
+ }