@fastkit/vui-wysiwyg 8.3.2 → 8.3.4

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.
@@ -1,8 +1,105 @@
1
- :root{
2
- --v-wysiwyg-color-tool:30px;
3
- }
4
-
5
1
  @layer vui{
2
+ .v-linter__problem{
3
+ margin-bottom:-1px;
4
+ cursor:help;
5
+ background:var(--deep-color);
6
+ border-bottom:1px solid var(--main-color);
7
+ }
8
+ .v-linter__issue-icon{
9
+ position:absolute;
10
+ right:2px;
11
+ display:inline-flex;
12
+ align-items:center;
13
+ justify-content:center;
14
+ width:1.2em;
15
+ height:1.2em;
16
+ margin-top:.2em;
17
+ font-family:times,georgia,serif;
18
+ font-size:15px;
19
+ font-weight:700;
20
+ line-height:1;
21
+ color:var(--text-color);
22
+ text-align:center;
23
+ cursor:pointer;
24
+ background:var(--main-color);
25
+ border-radius:100px;
26
+ }
27
+ .v-linter__issue-icon:before{
28
+ content:"!";
29
+ }
30
+ .v-linter__issue-menu-wrapper{
31
+ position:relative;
32
+ display:inline-block;
33
+ width:0;
34
+ height:1em;
35
+ overflow:visible;
36
+ }
37
+ .v-linter__issue-menu{
38
+ font-size:87.5%;
39
+ line-height:1.5;
40
+ }
41
+ .v-linter__issue-menu .v-dialog__body{
42
+ padding:0;
43
+ font-size:inherit;
44
+ }
45
+ .v-linter__issue-menu__message{
46
+ padding:8px;
47
+ }
48
+ .v-linter__issue-menu__fixers{
49
+ position:relative;
50
+ padding:4px 0;
51
+ }
52
+ .v-linter__issue-menu__fixers:before{
53
+ position:absolute;
54
+ top:0;
55
+ right:0;
56
+ left:0;
57
+ display:block;
58
+ height:1px;
59
+ content:"";
60
+ background:currentColor;
61
+ opacity:.5;
62
+ }
63
+ .v-linter__issue-menu__fixer__button{
64
+ position:relative;
65
+ display:block;
66
+ width:100%;
67
+ padding:8px;
68
+ font:inherit;
69
+ font-size:12px;
70
+ text-align:left;
71
+ appearance:none;
72
+ cursor:pointer;
73
+ outline:0;
74
+ background:transparent;
75
+ border:0;
76
+ }
77
+ .v-linter__issue-menu__fixer__button:before{
78
+ position:absolute;
79
+ inset:0;
80
+ display:block;
81
+ content:"";
82
+ background:currentColor;
83
+ opacity:0;
84
+ transition:.15s;
85
+ }
86
+ .v-linter__issue-menu__fixer__button:focus:before,.v-linter__issue-menu__fixer__button:hover:before{
87
+ opacity:.1;
88
+ }
89
+ .v-linter__issue-menu__fixer__button__message{
90
+ position:relative;
91
+ }
92
+ .v-linter__issue-menu__fix{
93
+ display:inline;
94
+ margin-top:8px;
95
+ color:var(--palette-link);
96
+ text-decoration:underline;
97
+ appearance:none;
98
+ cursor:pointer;
99
+ outline:0;
100
+ background:transparent;
101
+ border:0;
102
+ }
6
103
  .v-wysiwyg-color-tool__button{
7
104
  position:relative;
8
105
  display:inline-flex;
@@ -151,105 +248,6 @@
151
248
  .v-wysiwyg-editor--disabled-max-height .v-wysiwyg-editor__body{
152
249
  max-height:none;
153
250
  }
154
- .v-linter__problem{
155
- margin-bottom:-1px;
156
- cursor:help;
157
- background:var(--deep-color);
158
- border-bottom:1px solid var(--main-color);
159
- }
160
- .v-linter__issue-icon{
161
- position:absolute;
162
- right:2px;
163
- display:inline-flex;
164
- align-items:center;
165
- justify-content:center;
166
- width:1.2em;
167
- height:1.2em;
168
- margin-top:.2em;
169
- font-family:times,georgia,serif;
170
- font-size:15px;
171
- font-weight:700;
172
- line-height:1;
173
- color:var(--text-color);
174
- text-align:center;
175
- cursor:pointer;
176
- background:var(--main-color);
177
- border-radius:100px;
178
- }
179
- .v-linter__issue-icon:before{
180
- content:"!";
181
- }
182
- .v-linter__issue-menu-wrapper{
183
- position:relative;
184
- display:inline-block;
185
- width:0;
186
- height:1em;
187
- overflow:visible;
188
- }
189
- .v-linter__issue-menu{
190
- font-size:87.5%;
191
- line-height:1.5;
192
- }
193
- .v-linter__issue-menu .v-dialog__body{
194
- padding:0;
195
- font-size:inherit;
196
- }
197
- .v-linter__issue-menu__message{
198
- padding:8px;
199
- }
200
- .v-linter__issue-menu__fixers{
201
- position:relative;
202
- padding:4px 0;
203
- }
204
- .v-linter__issue-menu__fixers:before{
205
- position:absolute;
206
- top:0;
207
- right:0;
208
- left:0;
209
- display:block;
210
- height:1px;
211
- content:"";
212
- background:currentColor;
213
- opacity:.5;
214
- }
215
- .v-linter__issue-menu__fixer__button{
216
- position:relative;
217
- display:block;
218
- width:100%;
219
- padding:8px;
220
- font:inherit;
221
- font-size:12px;
222
- text-align:left;
223
- appearance:none;
224
- cursor:pointer;
225
- outline:0;
226
- background:transparent;
227
- border:0;
228
- }
229
- .v-linter__issue-menu__fixer__button:before{
230
- position:absolute;
231
- inset:0;
232
- display:block;
233
- content:"";
234
- background:currentColor;
235
- opacity:0;
236
- transition:.15s;
237
- }
238
- .v-linter__issue-menu__fixer__button:focus:before,.v-linter__issue-menu__fixer__button:hover:before{
239
- opacity:.1;
240
- }
241
- .v-linter__issue-menu__fixer__button__message{
242
- position:relative;
243
- }
244
- .v-linter__issue-menu__fix{
245
- display:inline;
246
- margin-top:8px;
247
- color:var(--palette-link);
248
- text-decoration:underline;
249
- appearance:none;
250
- cursor:pointer;
251
- outline:0;
252
- background:transparent;
253
- border:0;
254
- }
251
+ }:root{
252
+ --v-wysiwyg-color-tool:30px;
255
253
  }