ckeditor-math-chem-editor 1.0.3 → 1.0.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.
- package/package.json +1 -1
- package/src/Ckeditor.jsx +1855 -623
- package/src/CustomMathEditor.css +554 -68
package/src/CustomMathEditor.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* ============================================================
|
|
2
|
-
Custom Math & Chemistry Editor
|
|
2
|
+
Custom Math & Chemistry Editor — Purple Dark Theme
|
|
3
3
|
============================================================ */
|
|
4
4
|
|
|
5
5
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
/*
|
|
18
|
+
/* ── Tab Bar ─────────────────────────────────────────────── */
|
|
19
19
|
.cme-tabs {
|
|
20
20
|
display: flex;
|
|
21
21
|
background: #1a1a2e;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
opacity: 0.9;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
/*
|
|
64
|
+
/* ── Symbol Toolbar ──────────────────────────────────────── */
|
|
65
65
|
.cme-toolbar {
|
|
66
66
|
background: linear-gradient(180deg, #dbe4ea 0%, #c7d3dc 100%);
|
|
67
67
|
padding: 0;
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
display: flex;
|
|
77
77
|
flex-wrap: wrap;
|
|
78
78
|
background: linear-gradient(180deg, #8ea3b0 0%, #758d9c 100%);
|
|
79
|
+
background: #ffffff;
|
|
79
80
|
padding: 6px 6px 0 6px;
|
|
80
81
|
gap: 2px;
|
|
81
82
|
border-bottom: 1px solid #8fa1ae;
|
|
@@ -84,7 +85,8 @@
|
|
|
84
85
|
}
|
|
85
86
|
|
|
86
87
|
.cme-group-tab {
|
|
87
|
-
background: linear-gradient(180deg, #7d93a0 0%, #
|
|
88
|
+
background: linear-gradient(180deg, #7d93a0 0%, #556e7b 100%);
|
|
89
|
+
/* background: #556e7b; */
|
|
88
90
|
border: 1px solid #6f8795;
|
|
89
91
|
border-bottom: none;
|
|
90
92
|
border-top-left-radius: 5px;
|
|
@@ -107,6 +109,44 @@
|
|
|
107
109
|
box-sizing: border-box;
|
|
108
110
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
|
|
109
111
|
}
|
|
112
|
+
.cme-group-tab--math {
|
|
113
|
+
flex: 0 0 56px;
|
|
114
|
+
width: 56px;
|
|
115
|
+
min-width: 56px;
|
|
116
|
+
max-width: 56px;
|
|
117
|
+
padding: 0 4px;
|
|
118
|
+
overflow: hidden;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.cme-group-tab-label {
|
|
122
|
+
display: inline-flex;
|
|
123
|
+
align-items: center;
|
|
124
|
+
justify-content: center;
|
|
125
|
+
width: 100%;
|
|
126
|
+
min-width: 0;
|
|
127
|
+
max-width: 100%;
|
|
128
|
+
overflow: hidden;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.cme-group-tab--math .cme-tab-icon {
|
|
132
|
+
width: 100%;
|
|
133
|
+
max-width: 38px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.cme-group-tab--math .cme-tab-icon--svg,
|
|
137
|
+
.cme-group-tab--math .cme-tab-svg-icon {
|
|
138
|
+
width: 38px;
|
|
139
|
+
height: 16px;
|
|
140
|
+
max-width: 100%;
|
|
141
|
+
flex-shrink: 1;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.cme-group-tab--math .cme-tab-icon-top,
|
|
145
|
+
.cme-group-tab--math .cme-tab-icon-bottom {
|
|
146
|
+
max-width: 100%;
|
|
147
|
+
overflow: hidden;
|
|
148
|
+
white-space: nowrap;
|
|
149
|
+
}
|
|
110
150
|
|
|
111
151
|
.cme-tab-icon {
|
|
112
152
|
display: inline-flex;
|
|
@@ -149,7 +189,7 @@
|
|
|
149
189
|
}
|
|
150
190
|
|
|
151
191
|
.cme-tab-icon.compact .cme-tab-icon-top {
|
|
152
|
-
font-size:
|
|
192
|
+
font-size: 15px;
|
|
153
193
|
}
|
|
154
194
|
|
|
155
195
|
.cme-group-tab:hover {
|
|
@@ -158,7 +198,7 @@
|
|
|
158
198
|
}
|
|
159
199
|
|
|
160
200
|
.cme-group-tab.active {
|
|
161
|
-
background: linear-gradient(180deg, #f3d6d9 0%, #
|
|
201
|
+
background: linear-gradient(180deg, #f3d6d9 0%, #dc9e9e 100%);
|
|
162
202
|
color: #ffffff;
|
|
163
203
|
border-color: #d79ba2;
|
|
164
204
|
z-index: 2;
|
|
@@ -225,9 +265,9 @@
|
|
|
225
265
|
}
|
|
226
266
|
|
|
227
267
|
.cme-toolbar-items--first-tab .cme-symbol-subgroup {
|
|
228
|
-
padding: 0
|
|
268
|
+
padding: 0 5px;
|
|
229
269
|
margin: 0;
|
|
230
|
-
gap:
|
|
270
|
+
gap: 6px;
|
|
231
271
|
}
|
|
232
272
|
|
|
233
273
|
.cme-toolbar-items--first-tab .cme-btn,
|
|
@@ -236,13 +276,40 @@
|
|
|
236
276
|
margin: 0;
|
|
237
277
|
}
|
|
238
278
|
|
|
279
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup {
|
|
280
|
+
align-self: stretch;
|
|
281
|
+
height: 100%;
|
|
282
|
+
align-content: stretch;
|
|
283
|
+
justify-content: stretch;
|
|
284
|
+
grid-template-rows: var(--cme-subgroup-rows, repeat(2, minmax(0, 1fr))) !important;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup .cme-btn,
|
|
288
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup .cme-btn--compact,
|
|
289
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup .cme-style-select-trigger {
|
|
290
|
+
width: 100%;
|
|
291
|
+
height: 100%;
|
|
292
|
+
min-height: 0;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup--stack {
|
|
296
|
+
min-width: 26px;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.cme-toolbar-items--first-tab .cme-roots-main-subgroup--dropdown {
|
|
300
|
+
min-width: 88px;
|
|
301
|
+
}
|
|
302
|
+
|
|
239
303
|
.cme-toolbar-items--relations {
|
|
240
304
|
overflow: hidden;
|
|
241
305
|
gap: 1px;
|
|
242
306
|
}
|
|
243
307
|
|
|
244
308
|
.cme-toolbar-items--relations .cme-symbol-subgroup {
|
|
245
|
-
padding: 0
|
|
309
|
+
padding: 0 3px;
|
|
310
|
+
margin: 0;
|
|
311
|
+
align-content: start;
|
|
312
|
+
grid-template-rows: repeat(3, auto) !important;
|
|
246
313
|
}
|
|
247
314
|
|
|
248
315
|
.cme-toolbar-items--relations .cme-btn {
|
|
@@ -253,10 +320,113 @@
|
|
|
253
320
|
}
|
|
254
321
|
|
|
255
322
|
.cme-toolbar-items--relations .cme-btn.arrow-picker-tool {
|
|
256
|
-
min-width:
|
|
257
|
-
width:
|
|
323
|
+
min-width: 14px;
|
|
324
|
+
width: 14px;
|
|
325
|
+
height: 100%;
|
|
326
|
+
min-height: 100%;
|
|
327
|
+
padding: 0;
|
|
328
|
+
border: none;
|
|
329
|
+
border-radius: 3px;
|
|
330
|
+
background: transparent;
|
|
331
|
+
box-shadow: none;
|
|
332
|
+
grid-row: 1 / -1;
|
|
333
|
+
align-self: stretch;
|
|
334
|
+
justify-self: center;
|
|
335
|
+
display: inline-flex;
|
|
336
|
+
flex-direction: column;
|
|
337
|
+
align-items: center;
|
|
338
|
+
justify-content: flex-end;
|
|
339
|
+
color: #526a79;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.cme-toolbar-items--arrows {
|
|
343
|
+
overflow: hidden;
|
|
344
|
+
gap: 1px;
|
|
345
|
+
height: 84px;
|
|
346
|
+
min-height: 84px;
|
|
347
|
+
max-height: 84px;
|
|
258
348
|
}
|
|
259
349
|
|
|
350
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup {
|
|
351
|
+
align-self: stretch;
|
|
352
|
+
height: 100%;
|
|
353
|
+
align-content: stretch;
|
|
354
|
+
justify-content: stretch;
|
|
355
|
+
grid-template-rows: var(--cme-subgroup-rows, repeat(2, minmax(0, 1fr))) !important;
|
|
356
|
+
padding: 3px 4px;
|
|
357
|
+
margin: 0;
|
|
358
|
+
gap: 7px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup .cme-btn,
|
|
362
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup .cme-btn--compact {
|
|
363
|
+
width: 100%;
|
|
364
|
+
height: 100%;
|
|
365
|
+
min-height: 0;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup--stack {
|
|
369
|
+
min-width: 20px;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup--picker {
|
|
373
|
+
min-width: 14px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.cme-toolbar-items--arrows .cme-arrows-subgroup--before-picker {
|
|
377
|
+
border-right: none;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
.cme-toolbar-items--matrix .cme-btn.matrix-roomy-template {
|
|
382
|
+
min-width: 32px;
|
|
383
|
+
padding: 0 4px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.cme-toolbar-items--matrix .cme-btn.matrix-roomy-template.matrix-tall-template {
|
|
387
|
+
height: 37px;
|
|
388
|
+
min-height: 37px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.cme-toolbar-items--matrix .cme-btn.matrix-roomy-template.matrix-extra-tall-template {
|
|
392
|
+
height:37px;
|
|
393
|
+
min-height: 37px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.cme-toolbar-items--matrix .cme-btn.matrix-roomy-template .cme-toolbar-icon-image-wrapper {
|
|
397
|
+
padding: 2px 2px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.cme-toolbar-items--brackets {
|
|
401
|
+
overflow: hidden;
|
|
402
|
+
gap: 1px;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.cme-toolbar-items--brackets .cme-brackets-subgroup {
|
|
406
|
+
align-self: stretch;
|
|
407
|
+
height: 100%;
|
|
408
|
+
align-content: stretch;
|
|
409
|
+
justify-content: stretch;
|
|
410
|
+
grid-template-rows: var(--cme-subgroup-rows, repeat(2, minmax(0, 1fr))) !important;
|
|
411
|
+
padding: 0 3px;
|
|
412
|
+
margin: 0;
|
|
413
|
+
gap: 0;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.cme-toolbar-items--brackets .cme-brackets-subgroup .cme-btn,
|
|
417
|
+
.cme-toolbar-items--brackets .cme-brackets-subgroup .cme-btn--compact {
|
|
418
|
+
width: 100%;
|
|
419
|
+
height: 100%;
|
|
420
|
+
min-height: 0;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.cme-toolbar-items--brackets .cme-brackets-subgroup--picker {
|
|
424
|
+
min-width: 14px;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.cme-toolbar-items--brackets .cme-brackets-subgroup--before-picker {
|
|
428
|
+
border-right: none;
|
|
429
|
+
}
|
|
260
430
|
.cme-toolbar-items::-webkit-scrollbar { height: 5px; }
|
|
261
431
|
.cme-toolbar-items::-webkit-scrollbar-track { background: transparent; }
|
|
262
432
|
.cme-toolbar-items::-webkit-scrollbar-thumb { background: #3a3a5c; border-radius: 3px; }
|
|
@@ -280,12 +450,72 @@
|
|
|
280
450
|
|
|
281
451
|
.cme-symbol-subgroup:last-child { border-right: none; }
|
|
282
452
|
|
|
283
|
-
.cme-symbol-subgroup--compact {
|
|
453
|
+
.cme-symbol-subgroup--compact {
|
|
454
|
+
gap: 8px;
|
|
455
|
+
padding: 0 3px;
|
|
456
|
+
margin: 0;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.cme-symbol-subgroup--tab-roots-main {
|
|
460
|
+
gap: 8px;
|
|
461
|
+
padding: 0 3px;
|
|
462
|
+
margin: 0;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.cme-symbol-subgroup--tab-relations {
|
|
466
|
+
gap: 8px;
|
|
467
|
+
padding: 0 3px;
|
|
468
|
+
margin: 0;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.cme-symbol-subgroup--tab-arrows {
|
|
472
|
+
gap: 8px;
|
|
473
|
+
padding: 0 3px;
|
|
474
|
+
margin: 0;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.cme-symbol-subgroup--tab-greek {
|
|
478
|
+
gap: 8px;
|
|
479
|
+
padding: 0 3px;
|
|
480
|
+
margin: 0;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.cme-symbol-subgroup--tab-matrix {
|
|
484
|
+
gap: 8px;
|
|
485
|
+
padding: 0 3px;
|
|
486
|
+
margin: 0;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.cme-symbol-subgroup--tab-power-frac {
|
|
490
|
+
gap: 8px;
|
|
491
|
+
padding: 0 3px;
|
|
492
|
+
margin: 0;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.cme-symbol-subgroup--tab-brackets {
|
|
496
|
+
gap: 8px;
|
|
497
|
+
padding: 0 3px;
|
|
498
|
+
margin: 0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.cme-symbol-subgroup--tab-sets {
|
|
502
|
+
gap: 8px;
|
|
503
|
+
padding: 0 3px;
|
|
504
|
+
margin: 0;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.cme-symbol-subgroup--tab-calc {
|
|
284
508
|
gap: 2px;
|
|
285
509
|
padding: 0 3px;
|
|
286
510
|
margin: 0;
|
|
287
511
|
}
|
|
288
512
|
|
|
513
|
+
.cme-symbol-subgroup--tab-move-text {
|
|
514
|
+
gap: 8px;
|
|
515
|
+
padding: 0 3px;
|
|
516
|
+
margin: 0;
|
|
517
|
+
}
|
|
518
|
+
|
|
289
519
|
.cme-greek-panel {
|
|
290
520
|
display: inline-flex;
|
|
291
521
|
flex-direction: row;
|
|
@@ -304,6 +534,22 @@
|
|
|
304
534
|
justify-content: start;
|
|
305
535
|
}
|
|
306
536
|
|
|
537
|
+
.cme-toolbar-items--greek .cme-symbol-subgroup {
|
|
538
|
+
grid-auto-flow: row;
|
|
539
|
+
grid-template-rows: var(--cme-greek-rows, repeat(2, auto)) !important;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.cme-toolbar-items--greek .cme-greek-subgroup--picker {
|
|
543
|
+
align-self: stretch;
|
|
544
|
+
height: 100%;
|
|
545
|
+
align-content: stretch;
|
|
546
|
+
grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.cme-toolbar-items--greek .cme-greek-subgroup--before-picker {
|
|
550
|
+
border-right: none;
|
|
551
|
+
}
|
|
552
|
+
|
|
307
553
|
.cme-greek-btn {
|
|
308
554
|
font-size: 14px;
|
|
309
555
|
border-radius: 0;
|
|
@@ -312,7 +558,7 @@
|
|
|
312
558
|
|
|
313
559
|
|
|
314
560
|
|
|
315
|
-
/*
|
|
561
|
+
/* ── Symbol Buttons ── */
|
|
316
562
|
.cme-btn {
|
|
317
563
|
min-width: 24px;
|
|
318
564
|
height: 24px;
|
|
@@ -599,12 +845,113 @@
|
|
|
599
845
|
display: block;
|
|
600
846
|
width: 100%;
|
|
601
847
|
height: 125%;
|
|
602
|
-
max-width:
|
|
848
|
+
max-width: 41px;
|
|
603
849
|
max-height: 30px;
|
|
604
850
|
object-fit: contain;
|
|
605
851
|
object-position: center;
|
|
606
852
|
}
|
|
607
853
|
|
|
854
|
+
.cme-toolbar-icon-image-wrapper--log-base-template-image {
|
|
855
|
+
padding: 1px 0;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.cme-toolbar-icon-image--log-base-template-image {
|
|
859
|
+
width: 100%;
|
|
860
|
+
height: 100%;
|
|
861
|
+
max-width: none;
|
|
862
|
+
max-height: none;
|
|
863
|
+
object-fit: fill;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
/* Brackets-tab accent icons: resize these without affecting other toolbar icons */
|
|
868
|
+
.cme-toolbar-icon-image-wrapper--vec-accent-template-image,
|
|
869
|
+
.cme-toolbar-icon-image-wrapper--overrightarrow-accent-template-image,
|
|
870
|
+
.cme-toolbar-icon-image-wrapper--overleftrightarrow-accent-template-image,
|
|
871
|
+
.cme-toolbar-icon-image-wrapper--overline-accent-template-image,
|
|
872
|
+
.cme-toolbar-icon-image-wrapper--hat-accent-template-image,
|
|
873
|
+
.cme-toolbar-icon-image-wrapper--tilde-accent-template-image,
|
|
874
|
+
.cme-toolbar-icon-image-wrapper--ddot-accent-template-image,
|
|
875
|
+
.cme-toolbar-icon-image-wrapper--dot-accent-template-image {
|
|
876
|
+
padding: 1px 1px;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.cme-toolbar-icon-image--vec-accent-template-image,
|
|
880
|
+
.cme-toolbar-icon-image--overrightarrow-accent-template-image,
|
|
881
|
+
.cme-toolbar-icon-image--overleftrightarrow-accent-template-image,
|
|
882
|
+
.cme-toolbar-icon-image--overline-accent-template-image,
|
|
883
|
+
.cme-toolbar-icon-image--hat-accent-template-image,
|
|
884
|
+
.cme-toolbar-icon-image--tilde-accent-template-image,
|
|
885
|
+
.cme-toolbar-icon-image--ddot-accent-template-image,
|
|
886
|
+
.cme-toolbar-icon-image--dot-accent-template-image {
|
|
887
|
+
width: 100%;
|
|
888
|
+
height: 100%;
|
|
889
|
+
max-width: 25px;
|
|
890
|
+
max-height: 20px;
|
|
891
|
+
object-fit: contain;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/* Brackets-tab brace/paren arc icons */
|
|
895
|
+
.cme-toolbar-icon-image-wrapper--overbrace-arc-template-image,
|
|
896
|
+
.cme-toolbar-icon-image-wrapper--underbrace-arc-template-image,
|
|
897
|
+
.cme-toolbar-icon-image-wrapper--overparen-template-image,
|
|
898
|
+
.cme-toolbar-icon-image-wrapper--underparen-template-image {
|
|
899
|
+
padding: 1px 1px;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.cme-toolbar-icon-image--overbrace-arc-template-image,
|
|
903
|
+
.cme-toolbar-icon-image--underbrace-arc-template-image,
|
|
904
|
+
.cme-toolbar-icon-image--overparen-template-image,
|
|
905
|
+
.cme-toolbar-icon-image--underparen-template-image {
|
|
906
|
+
width: 100%;
|
|
907
|
+
height: 100%;
|
|
908
|
+
max-width: 33px;
|
|
909
|
+
max-height: 23px;
|
|
910
|
+
object-fit: contain;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
/* Brackets-tab enclosure/frame icons */
|
|
914
|
+
.cme-toolbar-icon-image-wrapper--overline-frame-template-image,
|
|
915
|
+
.cme-toolbar-icon-image-wrapper--underline-frame-template-image,
|
|
916
|
+
.cme-toolbar-icon-image-wrapper--left-bar-template-image,
|
|
917
|
+
.cme-toolbar-icon-image-wrapper--right-bar-template-image,
|
|
918
|
+
.cme-toolbar-icon-image-wrapper--boxed-square-template-image,
|
|
919
|
+
.cme-toolbar-icon-image-wrapper--paren-frame-template-image {
|
|
920
|
+
padding: 1px 1px;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.cme-toolbar-icon-image--overline-frame-template-image,
|
|
924
|
+
.cme-toolbar-icon-image--underline-frame-template-image,
|
|
925
|
+
.cme-toolbar-icon-image--left-bar-template-image,
|
|
926
|
+
.cme-toolbar-icon-image--right-bar-template-image,
|
|
927
|
+
.cme-toolbar-icon-image--boxed-square-template-image,
|
|
928
|
+
.cme-toolbar-icon-image--paren-frame-template-image {
|
|
929
|
+
width: 100%;
|
|
930
|
+
height: 100%;
|
|
931
|
+
max-width: 31px;
|
|
932
|
+
max-height: 25px;
|
|
933
|
+
object-fit: contain;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
/* Brackets-tab strike icons */
|
|
937
|
+
.cme-toolbar-icon-image-wrapper--cancel-diagonal-template-image,
|
|
938
|
+
.cme-toolbar-icon-image-wrapper--bcancel-template-image,
|
|
939
|
+
.cme-toolbar-icon-image-wrapper--sout-template-image,
|
|
940
|
+
.cme-toolbar-icon-image-wrapper--xcancel-template-image {
|
|
941
|
+
padding: 1px 1px;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.cme-toolbar-icon-image--cancel-diagonal-template-image,
|
|
945
|
+
.cme-toolbar-icon-image--bcancel-template-image,
|
|
946
|
+
.cme-toolbar-icon-image--sout-template-image,
|
|
947
|
+
.cme-toolbar-icon-image--xcancel-template-image {
|
|
948
|
+
width: 100%;
|
|
949
|
+
height: 100%;
|
|
950
|
+
max-width: 30px;
|
|
951
|
+
max-height: 25px;
|
|
952
|
+
object-fit: contain;
|
|
953
|
+
}
|
|
954
|
+
|
|
608
955
|
.cme-fraction-icon.cme-fraction-stack {
|
|
609
956
|
width: 22px;
|
|
610
957
|
height: 24px;
|
|
@@ -630,28 +977,28 @@
|
|
|
630
977
|
display: inline-flex;
|
|
631
978
|
align-items: center;
|
|
632
979
|
justify-content: center;
|
|
633
|
-
width:
|
|
634
|
-
height:
|
|
980
|
+
width: 25px;
|
|
981
|
+
height: 25px;
|
|
635
982
|
overflow: hidden;
|
|
636
983
|
}
|
|
637
984
|
|
|
638
985
|
.cme-arrow-label-svg {
|
|
639
986
|
display: block;
|
|
640
|
-
width:
|
|
641
|
-
height:
|
|
987
|
+
width: 25px;
|
|
988
|
+
height: 25px;
|
|
642
989
|
overflow: hidden;
|
|
643
990
|
}
|
|
644
991
|
|
|
645
992
|
.cme-arrow-label-svg rect {
|
|
646
993
|
stroke: #2c8a43;
|
|
647
|
-
stroke-width: 1
|
|
994
|
+
stroke-width: 1;
|
|
648
995
|
fill: none;
|
|
649
996
|
}
|
|
650
997
|
|
|
651
998
|
.cme-arrow-label-svg line,
|
|
652
999
|
.cme-arrow-label-svg path {
|
|
653
1000
|
stroke: #22343d;
|
|
654
|
-
stroke-width:
|
|
1001
|
+
stroke-width: 0.8;
|
|
655
1002
|
fill: none;
|
|
656
1003
|
stroke-linecap: round;
|
|
657
1004
|
stroke-linejoin: round;
|
|
@@ -671,8 +1018,9 @@
|
|
|
671
1018
|
align-self: stretch;
|
|
672
1019
|
justify-self: center;
|
|
673
1020
|
display: inline-flex;
|
|
674
|
-
|
|
675
|
-
|
|
1021
|
+
flex-direction: column;
|
|
1022
|
+
align-items: center;
|
|
1023
|
+
justify-content: flex-end;
|
|
676
1024
|
color: #526a79;
|
|
677
1025
|
}
|
|
678
1026
|
|
|
@@ -1178,16 +1526,16 @@
|
|
|
1178
1526
|
display: inline-flex;
|
|
1179
1527
|
align-items: center;
|
|
1180
1528
|
justify-content: center;
|
|
1181
|
-
width:
|
|
1182
|
-
height:
|
|
1529
|
+
width: 28px;
|
|
1530
|
+
height: 30px;
|
|
1183
1531
|
overflow: hidden;
|
|
1184
1532
|
flex-shrink: 0;
|
|
1185
1533
|
}
|
|
1186
1534
|
|
|
1187
1535
|
.cme-matrix-template-svg {
|
|
1188
1536
|
display: block;
|
|
1189
|
-
width:
|
|
1190
|
-
height:
|
|
1537
|
+
width: 28px;
|
|
1538
|
+
height: 30px;
|
|
1191
1539
|
overflow: hidden;
|
|
1192
1540
|
}
|
|
1193
1541
|
|
|
@@ -1226,59 +1574,58 @@
|
|
|
1226
1574
|
display: inline-flex;
|
|
1227
1575
|
align-items: center;
|
|
1228
1576
|
justify-content: center;
|
|
1229
|
-
width:
|
|
1230
|
-
height:
|
|
1577
|
+
width: 30px;
|
|
1578
|
+
height: 29px;
|
|
1231
1579
|
overflow: hidden;
|
|
1232
1580
|
flex-shrink: 0;
|
|
1233
1581
|
}
|
|
1234
1582
|
|
|
1235
1583
|
.cme-root-svg {
|
|
1236
1584
|
display: block;
|
|
1237
|
-
width:
|
|
1238
|
-
height:
|
|
1585
|
+
width: 30px;
|
|
1586
|
+
height: 29px;
|
|
1239
1587
|
overflow: hidden;
|
|
1240
1588
|
}
|
|
1241
1589
|
|
|
1242
1590
|
.cme-root-svg path {
|
|
1243
|
-
stroke: #
|
|
1244
|
-
stroke-width:
|
|
1591
|
+
stroke: #222;
|
|
1592
|
+
stroke-width: 2.5;
|
|
1245
1593
|
fill: none;
|
|
1246
|
-
stroke-linecap: round;
|
|
1247
|
-
stroke-linejoin: round;
|
|
1594
|
+
/* stroke-linecap: round;
|
|
1595
|
+
stroke-linejoin: round; */
|
|
1248
1596
|
}
|
|
1249
1597
|
|
|
1250
1598
|
.cme-root-svg-box {
|
|
1251
|
-
stroke: #
|
|
1252
|
-
stroke-width:
|
|
1599
|
+
stroke: #43a047;
|
|
1600
|
+
stroke-width: 2.5;
|
|
1253
1601
|
fill: none;
|
|
1254
1602
|
}
|
|
1255
1603
|
|
|
1256
1604
|
.cme-root-svg-box--small {
|
|
1257
|
-
stroke-width:
|
|
1258
|
-
opacity: 0.95;
|
|
1605
|
+
stroke-width: 2.5;
|
|
1259
1606
|
}
|
|
1260
1607
|
|
|
1261
1608
|
.cme-accent-icon {
|
|
1262
1609
|
display: inline-flex;
|
|
1263
1610
|
align-items: center;
|
|
1264
1611
|
justify-content: center;
|
|
1265
|
-
width:
|
|
1266
|
-
height:
|
|
1612
|
+
width: 26px;
|
|
1613
|
+
height: 28px;
|
|
1267
1614
|
overflow: hidden;
|
|
1268
1615
|
flex-shrink: 0;
|
|
1269
1616
|
}
|
|
1270
1617
|
|
|
1271
1618
|
.cme-accent-svg {
|
|
1272
1619
|
display: block;
|
|
1273
|
-
width:
|
|
1274
|
-
height:
|
|
1620
|
+
width: 26px;
|
|
1621
|
+
height: 28px;
|
|
1275
1622
|
overflow: hidden;
|
|
1276
1623
|
}
|
|
1277
1624
|
|
|
1278
1625
|
.cme-accent-svg line,
|
|
1279
1626
|
.cme-accent-svg path {
|
|
1280
1627
|
stroke: #22343d;
|
|
1281
|
-
stroke-width:
|
|
1628
|
+
stroke-width: 0.7;
|
|
1282
1629
|
fill: none;
|
|
1283
1630
|
stroke-linecap: round;
|
|
1284
1631
|
stroke-linejoin: round;
|
|
@@ -1312,7 +1659,7 @@
|
|
|
1312
1659
|
|
|
1313
1660
|
.cme-toolbar-glyph--math {
|
|
1314
1661
|
font-family: "Cambria Math", "STIX Two Math", "Segoe UI Symbol", "Segoe UI", serif;
|
|
1315
|
-
font-size:
|
|
1662
|
+
font-size: 17px;
|
|
1316
1663
|
font-weight: 800;
|
|
1317
1664
|
letter-spacing: -0.01em;
|
|
1318
1665
|
}
|
|
@@ -1369,8 +1716,8 @@
|
|
|
1369
1716
|
}
|
|
1370
1717
|
|
|
1371
1718
|
.cme-toolbar-glyph--template {
|
|
1372
|
-
font-size:
|
|
1373
|
-
color: #
|
|
1719
|
+
font-size: 16.4px;
|
|
1720
|
+
color: #000000;
|
|
1374
1721
|
}
|
|
1375
1722
|
|
|
1376
1723
|
.cme-toolbar-glyph--tool {
|
|
@@ -1392,7 +1739,7 @@
|
|
|
1392
1739
|
}
|
|
1393
1740
|
|
|
1394
1741
|
.cme-toolbar-glyph--very-wide {
|
|
1395
|
-
font-size:
|
|
1742
|
+
font-size: 12.2px;
|
|
1396
1743
|
letter-spacing: -0.02em;
|
|
1397
1744
|
}
|
|
1398
1745
|
|
|
@@ -1422,7 +1769,7 @@
|
|
|
1422
1769
|
flex-shrink: 0;
|
|
1423
1770
|
}
|
|
1424
1771
|
|
|
1425
|
-
/*
|
|
1772
|
+
/* ── MathLive Container ───────────────────────────────────── */
|
|
1426
1773
|
.cme-mathfield-container {
|
|
1427
1774
|
background: #ffffff;
|
|
1428
1775
|
border: 1px solid #97aab7;
|
|
@@ -1495,7 +1842,7 @@ math-field.cme-mathfield--rtl::part(container) {
|
|
|
1495
1842
|
math-field.cme-mathfield::part(virtual-keyboard-toggle),
|
|
1496
1843
|
math-field.cme-mathfield::part(menu-toggle) { display: none; }
|
|
1497
1844
|
|
|
1498
|
-
/*
|
|
1845
|
+
/* ── Footer ──────────────────────────────────────────────── */
|
|
1499
1846
|
.cme-footer {
|
|
1500
1847
|
display: flex;
|
|
1501
1848
|
align-items: center;
|
|
@@ -1525,7 +1872,7 @@ math-field.cme-mathfield::part(menu-toggle) { display: none; }
|
|
|
1525
1872
|
|
|
1526
1873
|
.cme-hint { font-size: 10px; color: #3a3a5c; }
|
|
1527
1874
|
|
|
1528
|
-
/*
|
|
1875
|
+
/* ── Main Input Box ──────────────────────────────────────── */
|
|
1529
1876
|
.Input-question-box { padding: 0; background: transparent; width: 100%; }
|
|
1530
1877
|
|
|
1531
1878
|
math-field.cme-main-mathfield {
|
|
@@ -1560,7 +1907,7 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1560
1907
|
.question-preview math-field::part(virtual-keyboard-toggle),
|
|
1561
1908
|
.question-preview math-field::part(menu-toggle) { display: none; }
|
|
1562
1909
|
|
|
1563
|
-
/*
|
|
1910
|
+
/* ── Popup ───────────────────────────────────────────────── */
|
|
1564
1911
|
.cme-editor-popup {
|
|
1565
1912
|
position: fixed;
|
|
1566
1913
|
bottom: 24px;
|
|
@@ -1577,26 +1924,60 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1577
1924
|
overflow: hidden;
|
|
1578
1925
|
box-sizing: border-box;
|
|
1579
1926
|
animation: slideUp 0.2s ease-out;
|
|
1580
|
-
will-change: top, left;
|
|
1927
|
+
will-change: width, height, top, left;
|
|
1928
|
+
transition:
|
|
1929
|
+
width 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
1930
|
+
height 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
1931
|
+
top 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
1932
|
+
left 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
|
|
1933
|
+
background-color 180ms ease,
|
|
1934
|
+
border-color 180ms ease,
|
|
1935
|
+
box-shadow 180ms ease;
|
|
1581
1936
|
}
|
|
1582
1937
|
|
|
1583
1938
|
.cme-editor-popup.maximized {
|
|
1584
|
-
top:
|
|
1585
|
-
right:
|
|
1586
|
-
bottom:
|
|
1587
|
-
left:
|
|
1588
|
-
width:
|
|
1589
|
-
height:
|
|
1939
|
+
top: 75px;
|
|
1940
|
+
right: auto;
|
|
1941
|
+
bottom: auto;
|
|
1942
|
+
left: 189px;
|
|
1943
|
+
width: 75vw;
|
|
1944
|
+
height: 80vh;
|
|
1945
|
+
height: 80dvh;
|
|
1946
|
+
max-width: none;
|
|
1947
|
+
max-height: none;
|
|
1948
|
+
border-radius: 0;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.cme-editor-popup.maximized .cme-popup-header,
|
|
1952
|
+
.cme-editor-popup.maximized .cme-toolbar,
|
|
1953
|
+
.cme-editor-popup.maximized .cme-popup-footer {
|
|
1954
|
+
flex: 0 0 auto;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.cme-editor-popup.maximized .cme-popup-header {
|
|
1958
|
+
border-radius: 0;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.cme-editor-popup.maximized .cme-mathfield-container {
|
|
1962
|
+
flex: 1 1 auto;
|
|
1963
|
+
min-height: 0;
|
|
1964
|
+
max-height: none;
|
|
1590
1965
|
}
|
|
1591
1966
|
|
|
1592
1967
|
.cme-editor-popup.minimized {
|
|
1593
|
-
width: 420px;
|
|
1594
|
-
height:
|
|
1968
|
+
width: min(420px, calc(100vw - 24px));
|
|
1969
|
+
height: 32px;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.cme-editor-popup.dragging {
|
|
1973
|
+
transition: none;
|
|
1595
1974
|
}
|
|
1596
1975
|
|
|
1597
|
-
.cme-editor-popup.
|
|
1598
|
-
|
|
1599
|
-
|
|
1976
|
+
.cme-editor-popup.dragging .cme-popup-header {
|
|
1977
|
+
cursor: grabbing;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.cme-editor-popup.minimized > :not(.cme-popup-header) {
|
|
1600
1981
|
display: none;
|
|
1601
1982
|
}
|
|
1602
1983
|
|
|
@@ -1610,7 +1991,8 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1610
1991
|
align-items: center;
|
|
1611
1992
|
justify-content: space-between;
|
|
1612
1993
|
padding: 6px 10px;
|
|
1613
|
-
background: linear-gradient(180deg, #7f97a6 0%, #718997 100%);
|
|
1994
|
+
/* background: linear-gradient(180deg, #7f97a6 0%, #718997 100%); */
|
|
1995
|
+
background: #778D9A;
|
|
1614
1996
|
color: #ffffff;
|
|
1615
1997
|
font-weight: 600;
|
|
1616
1998
|
font-size: 12px;
|
|
@@ -1623,6 +2005,45 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1623
2005
|
user-select: none;
|
|
1624
2006
|
touch-action: none;
|
|
1625
2007
|
}
|
|
2008
|
+
.cme-popup-header,
|
|
2009
|
+
.cme-toolbar,
|
|
2010
|
+
.cme-mathfield-container,
|
|
2011
|
+
.cme-popup-footer,
|
|
2012
|
+
.cme-toolbar-groups,
|
|
2013
|
+
.cme-toolbar-items,
|
|
2014
|
+
.cme-group-tab,
|
|
2015
|
+
.cme-btn,
|
|
2016
|
+
.cme-btn--compact,
|
|
2017
|
+
.cme-popup-window-btn,
|
|
2018
|
+
.cme-popup-close {
|
|
2019
|
+
transition:
|
|
2020
|
+
background-color 1s ease,
|
|
2021
|
+
border-color 1s ease,
|
|
2022
|
+
box-shadow 1s ease,
|
|
2023
|
+
color 1s ease,
|
|
2024
|
+
opacity 1s ease,
|
|
2025
|
+
transform 1s ease,
|
|
2026
|
+
max-height 1s ease;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
.cme-toolbar,
|
|
2030
|
+
.cme-mathfield-container,
|
|
2031
|
+
.cme-popup-footer {
|
|
2032
|
+
opacity: 1;
|
|
2033
|
+
transform: translateY(0);
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
.cme-toolbar {
|
|
2037
|
+
max-height: 260px;
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
.cme-mathfield-container {
|
|
2041
|
+
max-height: 320px;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.cme-popup-footer {
|
|
2045
|
+
max-height: 80px;
|
|
2046
|
+
}
|
|
1626
2047
|
|
|
1627
2048
|
|
|
1628
2049
|
.cme-popup-header:active {
|
|
@@ -1699,7 +2120,8 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1699
2120
|
}
|
|
1700
2121
|
|
|
1701
2122
|
.cme-insert-btn {
|
|
1702
|
-
background: linear-gradient(180deg, #8da2b0 0%, #
|
|
2123
|
+
background: linear-gradient(180deg, #8da2b0 0%, #778e9a 100%);
|
|
2124
|
+
/* background: #405B68; */
|
|
1703
2125
|
color: #ffffff;
|
|
1704
2126
|
border: 1px solid #7a92a1;
|
|
1705
2127
|
min-width: 100px;
|
|
@@ -1750,7 +2172,7 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1750
2172
|
}
|
|
1751
2173
|
}
|
|
1752
2174
|
|
|
1753
|
-
/*
|
|
2175
|
+
/* ── Matrix Selector ─────────────────────────────────────── */
|
|
1754
2176
|
.cme-matrix-selector {
|
|
1755
2177
|
padding: 12px;
|
|
1756
2178
|
display: flex;
|
|
@@ -1773,7 +2195,7 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1773
2195
|
.cme-matrix-cell { width: 20px; height: 20px; border: 1px solid #2a2a45; border-radius: 2px; background: #13131f; cursor: pointer; transition: background 0.1s, border-color 0.1s; }
|
|
1774
2196
|
.cme-matrix-cell.selected { background: #8b5cf6; border-color: #7c3aed; }
|
|
1775
2197
|
|
|
1776
|
-
/*
|
|
2198
|
+
/* ── Matrix Hover ────────────────────────────────────────── */
|
|
1777
2199
|
.cme-matrix-btn-wrapper { position: relative; display: inline-block; }
|
|
1778
2200
|
|
|
1779
2201
|
.cme-matrix-hover-popover {
|
|
@@ -1872,7 +2294,7 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1872
2294
|
.cme-counter-btns button { background: linear-gradient(180deg, #ffffff 0%, #e9eef2 100%); border: 1px solid #b8c8d2; border-radius: 3px; color: #47606d; font-size: 10px; font-weight: 700; width: 16px; height: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; padding: 0; transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease; }
|
|
1873
2295
|
.cme-counter-btns button:hover { background: linear-gradient(180deg, #f7fcf9 0%, #e2f1e8 100%); border-color: #7faa93; color: #1f593f; }
|
|
1874
2296
|
|
|
1875
|
-
/*
|
|
2297
|
+
/* ── CKEditor specific ── */
|
|
1876
2298
|
.cme-matrix-hover-popover.ck-only { width: 136px; min-height: 146px; box-sizing: border-box; padding: 8px; overflow: hidden; gap: 6px; display: flex; flex-direction: column; align-items: stretch; }
|
|
1877
2299
|
.cme-matrix-hover-popover.ck-only { width: 152px; min-height: 148px; padding: 8px; gap: 8px; }
|
|
1878
2300
|
.cme-matrix-hover-popover.ck-only .cme-matrix-hover-title-wrap { display: none; }
|
|
@@ -1930,3 +2352,67 @@ math-field.cme-main-mathfield::part(menu-toggle) { display: none; }
|
|
|
1930
2352
|
transform: none !important;
|
|
1931
2353
|
transition: none !important;
|
|
1932
2354
|
}
|
|
2355
|
+
|
|
2356
|
+
.cme-toolbar-items--power-frac {
|
|
2357
|
+
height: 88px;
|
|
2358
|
+
min-height: 68px;
|
|
2359
|
+
max-height: 68px;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
|
|
2365
|
+
|
|
2366
|
+
.cme-toolbar-placeholder-box-green {
|
|
2367
|
+
color: #2ca02c;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
.cme-btn.green-template.black-glyph-template {
|
|
2371
|
+
color: #111111;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
.cme-fraction-stack--black-glyph-template .cme-fraction-svg rect {
|
|
2375
|
+
stroke: #2c8a43;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
.cme-fraction-stack--black-glyph-template .cme-fraction-svg line {
|
|
2379
|
+
stroke: #111111;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
.cme-toolbar-placeholder-box-black {
|
|
2383
|
+
color: #2ca02c;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
.cme-arrow-label-picker-popup .cme-arrow-label-svg rect,
|
|
2387
|
+
.cme-arrow-label-picker-btn .cme-arrow-label-svg rect {
|
|
2388
|
+
stroke: #2ca02c !important;
|
|
2389
|
+
fill: none;
|
|
2390
|
+
}
|
|
2391
|
+
.cme-arrow-label-placeholder-box {
|
|
2392
|
+
stroke: #2ca02c !important;
|
|
2393
|
+
fill: none;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
/* cme-instant-hover */
|
|
2397
|
+
.cme-group-tab,
|
|
2398
|
+
.cme-btn,
|
|
2399
|
+
.cme-btn--compact,
|
|
2400
|
+
.cme-select,
|
|
2401
|
+
.cme-style-select-trigger,
|
|
2402
|
+
.cme-popup-window-btn,
|
|
2403
|
+
.cme-popup-close,
|
|
2404
|
+
.cme-arrow-picker-btn,
|
|
2405
|
+
.cme-arrow-label-picker-btn,
|
|
2406
|
+
.cme-greek-italic-picker-btn,
|
|
2407
|
+
.cme-blackboard-bold-picker-btn,
|
|
2408
|
+
.cme-fraktur-script-picker-btn,
|
|
2409
|
+
.cme-hebrew-symbol-picker-btn,
|
|
2410
|
+
.cme-insert-btn,
|
|
2411
|
+
.cme-cancel-btn,
|
|
2412
|
+
.cme-counter-btns button,
|
|
2413
|
+
.cme-style-dropdown-option {
|
|
2414
|
+
transition: none !important;
|
|
2415
|
+
}
|
|
2416
|
+
.cme-toolbar-items--greek .cme-greek-subgroup--no-right-border {
|
|
2417
|
+
border-right: none;
|
|
2418
|
+
}
|