xmlui 0.9.2 → 0.9.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.
- package/dist/{apiInterceptorWorker-DJ_oGB-F.mjs → apiInterceptorWorker-Y5MxQ95G.mjs} +1 -1
- package/dist/{core-XLM8cuFP.mjs → core-DowI-7YH.mjs} +2 -52
- package/dist/{index-2qtmUAFJ.mjs → index-DHAz4bv_.mjs} +14895 -1503
- package/dist/index.css +297 -219
- package/dist/scripts/src/components/HtmlTags/HtmlTags.js +11 -1
- package/dist/scripts/src/components/Markdown/Markdown.js +17 -13
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +38 -19
- package/dist/scripts/src/components/Slider/Slider.js +25 -6
- package/dist/scripts/src/components/Slider/SliderNative.js +78 -18
- package/dist/scripts/src/components/Theme/ThemeNative.js +1 -1
- package/dist/scripts/src/components-core/InspectorContext.js +1 -1
- package/dist/scripts/src/components-core/RestApiProxy.js +19 -9
- package/dist/scripts/src/components-core/{DevTools.js → devtools/DevTools.js} +71 -10
- package/dist/scripts/src/syntax/monaco/grammar.monacoLanguage.js +286 -0
- package/dist/scripts/src/syntax/monaco/xmlui-dark.js +27 -0
- package/dist/scripts/src/syntax/monaco/xmlui-light.js +26 -0
- package/dist/scripts/src/syntax/monaco/xmluiscript.monacoLanguage.js +310 -0
- package/dist/style.css +210 -138
- package/dist/xmlui-metadata.mjs +306 -477
- package/dist/xmlui-metadata.umd.js +308 -476
- package/dist/xmlui-standalone.umd.js +34026 -29168
- package/dist/xmlui.mjs +10 -10
- package/package.json +3 -4
package/dist/index.css
CHANGED
|
@@ -2276,17 +2276,46 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2276
2276
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2277
2277
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2278
2278
|
*/
|
|
2279
|
-
.
|
|
2279
|
+
._text_uu1r2_13 {
|
|
2280
2280
|
overflow: hidden;
|
|
2281
2281
|
text-overflow: ellipsis;
|
|
2282
2282
|
margin: 0;
|
|
2283
2283
|
padding: 0;
|
|
2284
2284
|
min-height: fit-content;
|
|
2285
2285
|
}
|
|
2286
|
-
.
|
|
2286
|
+
._text_uu1r2_13._markdown_uu1r2_20 {
|
|
2287
|
+
font-family: var(--xmlui-fontFamily-Text-markdown);
|
|
2288
|
+
font-size: var(--xmlui-fontSize-Text-markdown);
|
|
2289
|
+
font-weight: var(--xmlui-fontWeight-Text-markdown);
|
|
2290
|
+
font-style: var(--xmlui-fontStyle-Text-markdown);
|
|
2291
|
+
font-stretch: var(--xmlui-fontStretch-Text-markdown);
|
|
2292
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Text-markdown);
|
|
2293
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Text-markdown);
|
|
2294
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Text-markdown);
|
|
2295
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-markdown);
|
|
2296
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-markdown);
|
|
2297
|
+
line-height: var(--xmlui-lineHeight-Text-markdown);
|
|
2298
|
+
color: var(--xmlui-textColor-Text-markdown);
|
|
2299
|
+
background-color: var(--xmlui-backgroundColor-Text-markdown);
|
|
2300
|
+
border-radius: var(--xmlui-borderRadius-Text-markdown);
|
|
2301
|
+
border-color: var(--xmlui-borderColor-Text-markdown);
|
|
2302
|
+
border-width: var(--xmlui-borderWidth-Text-markdown);
|
|
2303
|
+
border-style: var(--xmlui-borderStyle-Text-markdown);
|
|
2304
|
+
padding: var(--xmlui-padding-Text-markdown);
|
|
2305
|
+
padding-left: var(--xmlui-paddingLeft-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
2306
|
+
padding-right: var(--xmlui-paddingRight-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
2307
|
+
padding-top: var(--xmlui-paddingTop-Text-markdown, var(--xmlui-paddingVertical-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
2308
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-markdown, var(--xmlui-paddingVertical-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
2309
|
+
margin-top: var(--xmlui-marginTop-Text-markdown);
|
|
2310
|
+
margin-bottom: var(--xmlui-marginBottom-Text-markdown);
|
|
2311
|
+
text-transform: var(--xmlui-textTransform-Text-markdown);
|
|
2312
|
+
vertical-align: var(--xmlui-verticalAlign-Text-markdown);
|
|
2313
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-markdown);
|
|
2314
|
+
}
|
|
2315
|
+
._text_uu1r2_13 ._text_uu1r2_13 {
|
|
2287
2316
|
display: inline;
|
|
2288
2317
|
}
|
|
2289
|
-
.
|
|
2318
|
+
._text_uu1r2_13._abbr_uu1r2_52 {
|
|
2290
2319
|
font-family: var(--xmlui-fontFamily-Text-abbr);
|
|
2291
2320
|
font-size: var(--xmlui-fontSize-Text-abbr);
|
|
2292
2321
|
font-weight: var(--xmlui-fontWeight-Text-abbr);
|
|
@@ -2315,7 +2344,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2315
2344
|
vertical-align: var(--xmlui-verticalAlign-Text-abbr);
|
|
2316
2345
|
letter-spacing: var(--xmlui-letterSpacing-Text-abbr);
|
|
2317
2346
|
}
|
|
2318
|
-
.
|
|
2347
|
+
._text_uu1r2_13._cite_uu1r2_81 {
|
|
2319
2348
|
font-family: var(--xmlui-fontFamily-Text-cite);
|
|
2320
2349
|
font-size: var(--xmlui-fontSize-Text-cite);
|
|
2321
2350
|
font-weight: var(--xmlui-fontWeight-Text-cite);
|
|
@@ -2344,10 +2373,10 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2344
2373
|
vertical-align: var(--xmlui-verticalAlign-Text-cite);
|
|
2345
2374
|
letter-spacing: var(--xmlui-letterSpacing-Text-cite);
|
|
2346
2375
|
}
|
|
2347
|
-
.
|
|
2376
|
+
._text_uu1r2_13 ._text_uu1r2_13._codefence_uu1r2_110 {
|
|
2348
2377
|
display: block;
|
|
2349
2378
|
}
|
|
2350
|
-
:not(.
|
|
2379
|
+
:not(._text_uu1r2_13._codefence_uu1r2_110) > ._text_uu1r2_13._code_uu1r2_110 {
|
|
2351
2380
|
font-family: var(--xmlui-fontFamily-Text-code);
|
|
2352
2381
|
font-size: var(--xmlui-fontSize-Text-code);
|
|
2353
2382
|
font-weight: var(--xmlui-fontWeight-Text-code);
|
|
@@ -2376,7 +2405,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2376
2405
|
vertical-align: var(--xmlui-verticalAlign-Text-code);
|
|
2377
2406
|
letter-spacing: var(--xmlui-letterSpacing-Text-code);
|
|
2378
2407
|
}
|
|
2379
|
-
.
|
|
2408
|
+
._text_uu1r2_13._codefence_uu1r2_110:has(> ._text_uu1r2_13._code_uu1r2_110) {
|
|
2380
2409
|
font-family: var(--xmlui-fontFamily-Text-codefence);
|
|
2381
2410
|
font-size: var(--xmlui-fontSize-Text-codefence);
|
|
2382
2411
|
font-weight: var(--xmlui-fontWeight-Text-codefence);
|
|
@@ -2407,7 +2436,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2407
2436
|
overflow-x: auto;
|
|
2408
2437
|
text-overflow: initial;
|
|
2409
2438
|
}
|
|
2410
|
-
.
|
|
2439
|
+
._text_uu1r2_13._deleted_uu1r2_173 {
|
|
2411
2440
|
font-family: var(--xmlui-fontFamily-Text-deleted);
|
|
2412
2441
|
font-size: var(--xmlui-fontSize-Text-deleted);
|
|
2413
2442
|
font-weight: var(--xmlui-fontWeight-Text-deleted);
|
|
@@ -2436,7 +2465,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2436
2465
|
vertical-align: var(--xmlui-verticalAlign-Text-deleted);
|
|
2437
2466
|
letter-spacing: var(--xmlui-letterSpacing-Text-deleted);
|
|
2438
2467
|
}
|
|
2439
|
-
.
|
|
2468
|
+
._text_uu1r2_13._deleted_uu1r2_173::before, ._text_uu1r2_13._deleted_uu1r2_173::after {
|
|
2440
2469
|
clip-path: inset(100%);
|
|
2441
2470
|
clip: rect(1px, 1px, 1px, 1px);
|
|
2442
2471
|
height: 1px;
|
|
@@ -2445,13 +2474,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2445
2474
|
white-space: nowrap;
|
|
2446
2475
|
width: 1px;
|
|
2447
2476
|
}
|
|
2448
|
-
.
|
|
2477
|
+
._text_uu1r2_13._deleted_uu1r2_173::before {
|
|
2449
2478
|
content: " [deletion start] ";
|
|
2450
2479
|
}
|
|
2451
|
-
.
|
|
2480
|
+
._text_uu1r2_13._deleted_uu1r2_173::after {
|
|
2452
2481
|
content: " [deletion end] ";
|
|
2453
2482
|
}
|
|
2454
|
-
.
|
|
2483
|
+
._text_uu1r2_13._inserted_uu1r2_217 {
|
|
2455
2484
|
font-family: var(--xmlui-fontFamily-Text-inserted);
|
|
2456
2485
|
font-size: var(--xmlui-fontSize-Text-inserted);
|
|
2457
2486
|
font-weight: var(--xmlui-fontWeight-Text-inserted);
|
|
@@ -2480,7 +2509,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2480
2509
|
vertical-align: var(--xmlui-verticalAlign-Text-inserted);
|
|
2481
2510
|
letter-spacing: var(--xmlui-letterSpacing-Text-inserted);
|
|
2482
2511
|
}
|
|
2483
|
-
.
|
|
2512
|
+
._text_uu1r2_13._inserted_uu1r2_217::before, ._text_uu1r2_13._inserted_uu1r2_217::after {
|
|
2484
2513
|
clip-path: inset(100%);
|
|
2485
2514
|
clip: rect(1px, 1px, 1px, 1px);
|
|
2486
2515
|
height: 1px;
|
|
@@ -2489,13 +2518,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2489
2518
|
white-space: nowrap;
|
|
2490
2519
|
width: 1px;
|
|
2491
2520
|
}
|
|
2492
|
-
.
|
|
2521
|
+
._text_uu1r2_13._inserted_uu1r2_217::before {
|
|
2493
2522
|
content: " [insertion start] ";
|
|
2494
2523
|
}
|
|
2495
|
-
.
|
|
2524
|
+
._text_uu1r2_13._inserted_uu1r2_217::after {
|
|
2496
2525
|
content: " [insertion end] ";
|
|
2497
2526
|
}
|
|
2498
|
-
.
|
|
2527
|
+
._text_uu1r2_13._keyboard_uu1r2_261 {
|
|
2499
2528
|
font-family: var(--xmlui-fontFamily-Text-keyboard);
|
|
2500
2529
|
font-size: var(--xmlui-fontSize-Text-keyboard);
|
|
2501
2530
|
font-weight: var(--xmlui-fontWeight-Text-keyboard);
|
|
@@ -2524,7 +2553,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2524
2553
|
vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
|
|
2525
2554
|
letter-spacing: var(--xmlui-letterSpacing-Text-keyboard);
|
|
2526
2555
|
}
|
|
2527
|
-
.
|
|
2556
|
+
._text_uu1r2_13._marked_uu1r2_290 {
|
|
2528
2557
|
font-family: var(--xmlui-fontFamily-Text-marked);
|
|
2529
2558
|
font-size: var(--xmlui-fontSize-Text-marked);
|
|
2530
2559
|
font-weight: var(--xmlui-fontWeight-Text-marked);
|
|
@@ -2553,7 +2582,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2553
2582
|
vertical-align: var(--xmlui-verticalAlign-Text-marked);
|
|
2554
2583
|
letter-spacing: var(--xmlui-letterSpacing-Text-marked);
|
|
2555
2584
|
}
|
|
2556
|
-
.
|
|
2585
|
+
._text_uu1r2_13._marked_uu1r2_290::before, ._text_uu1r2_13._marked_uu1r2_290::after {
|
|
2557
2586
|
clip-path: inset(100%);
|
|
2558
2587
|
clip: rect(1px, 1px, 1px, 1px);
|
|
2559
2588
|
height: 1px;
|
|
@@ -2562,13 +2591,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2562
2591
|
white-space: nowrap;
|
|
2563
2592
|
width: 1px;
|
|
2564
2593
|
}
|
|
2565
|
-
.
|
|
2594
|
+
._text_uu1r2_13._marked_uu1r2_290::before {
|
|
2566
2595
|
content: " [highlight start] ";
|
|
2567
2596
|
}
|
|
2568
|
-
.
|
|
2597
|
+
._text_uu1r2_13._marked_uu1r2_290::after {
|
|
2569
2598
|
content: " [highlight end] ";
|
|
2570
2599
|
}
|
|
2571
|
-
.
|
|
2600
|
+
._text_uu1r2_13._mono_uu1r2_334 {
|
|
2572
2601
|
font-family: var(--xmlui-fontFamily-Text-mono);
|
|
2573
2602
|
font-size: var(--xmlui-fontSize-Text-mono);
|
|
2574
2603
|
font-weight: var(--xmlui-fontWeight-Text-mono);
|
|
@@ -2597,7 +2626,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2597
2626
|
vertical-align: var(--xmlui-verticalAlign-Text-mono);
|
|
2598
2627
|
letter-spacing: var(--xmlui-letterSpacing-Text-mono);
|
|
2599
2628
|
}
|
|
2600
|
-
.
|
|
2629
|
+
._text_uu1r2_13._sample_uu1r2_363 {
|
|
2601
2630
|
font-family: var(--xmlui-fontFamily-Text-sample);
|
|
2602
2631
|
font-size: var(--xmlui-fontSize-Text-sample);
|
|
2603
2632
|
font-weight: var(--xmlui-fontWeight-Text-sample);
|
|
@@ -2626,7 +2655,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2626
2655
|
vertical-align: var(--xmlui-verticalAlign-Text-sample);
|
|
2627
2656
|
letter-spacing: var(--xmlui-letterSpacing-Text-sample);
|
|
2628
2657
|
}
|
|
2629
|
-
.
|
|
2658
|
+
._text_uu1r2_13._sup_uu1r2_392 {
|
|
2630
2659
|
font-family: var(--xmlui-fontFamily-Text-sup);
|
|
2631
2660
|
font-size: var(--xmlui-fontSize-Text-sup);
|
|
2632
2661
|
font-weight: var(--xmlui-fontWeight-Text-sup);
|
|
@@ -2655,7 +2684,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2655
2684
|
vertical-align: var(--xmlui-verticalAlign-Text-sup);
|
|
2656
2685
|
letter-spacing: var(--xmlui-letterSpacing-Text-sup);
|
|
2657
2686
|
}
|
|
2658
|
-
.
|
|
2687
|
+
._text_uu1r2_13._sub_uu1r2_421 {
|
|
2659
2688
|
font-family: var(--xmlui-fontFamily-Text-sub);
|
|
2660
2689
|
font-size: var(--xmlui-fontSize-Text-sub);
|
|
2661
2690
|
font-weight: var(--xmlui-fontWeight-Text-sub);
|
|
@@ -2684,7 +2713,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2684
2713
|
vertical-align: var(--xmlui-verticalAlign-Text-sub);
|
|
2685
2714
|
letter-spacing: var(--xmlui-letterSpacing-Text-sub);
|
|
2686
2715
|
}
|
|
2687
|
-
.
|
|
2716
|
+
._text_uu1r2_13._var_uu1r2_450 {
|
|
2688
2717
|
font-family: var(--xmlui-fontFamily-Text-var);
|
|
2689
2718
|
font-size: var(--xmlui-fontSize-Text-var);
|
|
2690
2719
|
font-weight: var(--xmlui-fontWeight-Text-var);
|
|
@@ -2713,7 +2742,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2713
2742
|
vertical-align: var(--xmlui-verticalAlign-Text-var);
|
|
2714
2743
|
letter-spacing: var(--xmlui-letterSpacing-Text-var);
|
|
2715
2744
|
}
|
|
2716
|
-
.
|
|
2745
|
+
._text_uu1r2_13._title_uu1r2_479 {
|
|
2717
2746
|
font-family: var(--xmlui-fontFamily-Text-title);
|
|
2718
2747
|
font-size: var(--xmlui-fontSize-Text-title);
|
|
2719
2748
|
font-weight: var(--xmlui-fontWeight-Text-title);
|
|
@@ -2742,7 +2771,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2742
2771
|
vertical-align: var(--xmlui-verticalAlign-Text-title);
|
|
2743
2772
|
letter-spacing: var(--xmlui-letterSpacing-Text-title);
|
|
2744
2773
|
}
|
|
2745
|
-
.
|
|
2774
|
+
._text_uu1r2_13._subtitle_uu1r2_508 {
|
|
2746
2775
|
font-family: var(--xmlui-fontFamily-Text-subtitle);
|
|
2747
2776
|
font-size: var(--xmlui-fontSize-Text-subtitle);
|
|
2748
2777
|
font-weight: var(--xmlui-fontWeight-Text-subtitle);
|
|
@@ -2771,7 +2800,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2771
2800
|
vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
|
|
2772
2801
|
letter-spacing: var(--xmlui-letterSpacing-Text-subtitle);
|
|
2773
2802
|
}
|
|
2774
|
-
.
|
|
2803
|
+
._text_uu1r2_13._small_uu1r2_537 {
|
|
2775
2804
|
font-family: var(--xmlui-fontFamily-Text-small);
|
|
2776
2805
|
font-size: var(--xmlui-fontSize-Text-small);
|
|
2777
2806
|
font-weight: var(--xmlui-fontWeight-Text-small);
|
|
@@ -2800,7 +2829,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2800
2829
|
vertical-align: var(--xmlui-verticalAlign-Text-small);
|
|
2801
2830
|
letter-spacing: var(--xmlui-letterSpacing-Text-small);
|
|
2802
2831
|
}
|
|
2803
|
-
.
|
|
2832
|
+
._text_uu1r2_13._caption_uu1r2_566 {
|
|
2804
2833
|
font-family: var(--xmlui-fontFamily-Text-caption);
|
|
2805
2834
|
font-size: var(--xmlui-fontSize-Text-caption);
|
|
2806
2835
|
font-weight: var(--xmlui-fontWeight-Text-caption);
|
|
@@ -2829,7 +2858,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2829
2858
|
vertical-align: var(--xmlui-verticalAlign-Text-caption);
|
|
2830
2859
|
letter-spacing: var(--xmlui-letterSpacing-Text-caption);
|
|
2831
2860
|
}
|
|
2832
|
-
.
|
|
2861
|
+
._text_uu1r2_13._placeholder_uu1r2_595 {
|
|
2833
2862
|
font-family: var(--xmlui-fontFamily-Text-placeholder);
|
|
2834
2863
|
font-size: var(--xmlui-fontSize-Text-placeholder);
|
|
2835
2864
|
font-weight: var(--xmlui-fontWeight-Text-placeholder);
|
|
@@ -2858,7 +2887,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2858
2887
|
vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
|
|
2859
2888
|
letter-spacing: var(--xmlui-letterSpacing-Text-placeholder);
|
|
2860
2889
|
}
|
|
2861
|
-
.
|
|
2890
|
+
._text_uu1r2_13._paragraph_uu1r2_624 {
|
|
2862
2891
|
font-family: var(--xmlui-fontFamily-Text-paragraph);
|
|
2863
2892
|
font-size: var(--xmlui-fontSize-Text-paragraph);
|
|
2864
2893
|
font-weight: var(--xmlui-fontWeight-Text-paragraph);
|
|
@@ -2887,7 +2916,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2887
2916
|
vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
|
|
2888
2917
|
letter-spacing: var(--xmlui-letterSpacing-Text-paragraph);
|
|
2889
2918
|
}
|
|
2890
|
-
.
|
|
2919
|
+
._text_uu1r2_13._subheading_uu1r2_653 {
|
|
2891
2920
|
font-family: var(--xmlui-fontFamily-Text-subheading);
|
|
2892
2921
|
font-size: var(--xmlui-fontSize-Text-subheading);
|
|
2893
2922
|
font-weight: var(--xmlui-fontWeight-Text-subheading);
|
|
@@ -2916,7 +2945,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2916
2945
|
vertical-align: var(--xmlui-verticalAlign-Text-subheading);
|
|
2917
2946
|
letter-spacing: var(--xmlui-letterSpacing-Text-subheading);
|
|
2918
2947
|
}
|
|
2919
|
-
.
|
|
2948
|
+
._text_uu1r2_13._tableheading_uu1r2_682 {
|
|
2920
2949
|
font-family: var(--xmlui-fontFamily-Text-tableheading);
|
|
2921
2950
|
font-size: var(--xmlui-fontSize-Text-tableheading);
|
|
2922
2951
|
font-weight: var(--xmlui-fontWeight-Text-tableheading);
|
|
@@ -2945,7 +2974,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2945
2974
|
vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
|
|
2946
2975
|
letter-spacing: var(--xmlui-letterSpacing-Text-tableheading);
|
|
2947
2976
|
}
|
|
2948
|
-
.
|
|
2977
|
+
._text_uu1r2_13._secondary_uu1r2_711 {
|
|
2949
2978
|
font-family: var(--xmlui-fontFamily-Text-secondary);
|
|
2950
2979
|
font-size: var(--xmlui-fontSize-Text-secondary);
|
|
2951
2980
|
font-weight: var(--xmlui-fontWeight-Text-secondary);
|
|
@@ -2974,7 +3003,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2974
3003
|
vertical-align: var(--xmlui-verticalAlign-Text-secondary);
|
|
2975
3004
|
letter-spacing: var(--xmlui-letterSpacing-Text-secondary);
|
|
2976
3005
|
}
|
|
2977
|
-
.
|
|
3006
|
+
._text_uu1r2_13._strong_uu1r2_740 {
|
|
2978
3007
|
font-weight: var(--xmlui-fontWeight-bold);
|
|
2979
3008
|
}
|
|
2980
3009
|
|
|
@@ -2982,18 +3011,18 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2982
3011
|
This is a Chromium based solution that is supported by most modern browsers.
|
|
2983
3012
|
See this source for details: https://css-tricks.com/line-clampin/
|
|
2984
3013
|
*/
|
|
2985
|
-
.
|
|
3014
|
+
._truncateOverflow_uu1r2_748 {
|
|
2986
3015
|
overflow: hidden;
|
|
2987
3016
|
overflow-wrap: break-word;
|
|
2988
3017
|
white-space: nowrap;
|
|
2989
3018
|
max-width: 100%;
|
|
2990
3019
|
}
|
|
2991
3020
|
|
|
2992
|
-
.
|
|
3021
|
+
._preserveLinebreaks_uu1r2_755 {
|
|
2993
3022
|
white-space: pre-wrap;
|
|
2994
3023
|
}
|
|
2995
3024
|
|
|
2996
|
-
.
|
|
3025
|
+
._noEllipsis_uu1r2_759 {
|
|
2997
3026
|
text-overflow: clip;
|
|
2998
3027
|
}/*
|
|
2999
3028
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -6181,21 +6210,29 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6181
6210
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6182
6211
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6183
6212
|
*/
|
|
6184
|
-
.
|
|
6213
|
+
._sliderContainer_d4hsx_13 {
|
|
6214
|
+
width: 100%;
|
|
6215
|
+
position: relative;
|
|
6216
|
+
padding: var(--xmlui-space-2) 0;
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
._sliderRoot_d4hsx_19 {
|
|
6185
6220
|
position: relative;
|
|
6186
6221
|
display: flex;
|
|
6187
6222
|
width: 100%;
|
|
6188
6223
|
touch-action: none;
|
|
6189
6224
|
user-select: none;
|
|
6190
6225
|
align-items: center;
|
|
6226
|
+
height: 20px;
|
|
6191
6227
|
}
|
|
6192
6228
|
|
|
6193
|
-
.
|
|
6229
|
+
._sliderTrack_d4hsx_29 {
|
|
6194
6230
|
position: relative;
|
|
6195
6231
|
height: 8px;
|
|
6196
6232
|
width: 100%;
|
|
6197
6233
|
flex-grow: 1;
|
|
6198
6234
|
overflow: hidden;
|
|
6235
|
+
border-radius: 9999px;
|
|
6199
6236
|
background-color: var(--xmlui-backgroundColor-track-Slider);
|
|
6200
6237
|
border-radius: var(--xmlui-borderRadius-Slider-default);
|
|
6201
6238
|
border-color: var(--xmlui-borderColor-Slider-default);
|
|
@@ -6203,73 +6240,74 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6203
6240
|
border-style: var(--xmlui-borderStyle-Slider-default);
|
|
6204
6241
|
box-shadow: var(--xmlui-boxShadow-Slider-default);
|
|
6205
6242
|
}
|
|
6206
|
-
.
|
|
6243
|
+
._sliderTrack_d4hsx_29:hover {
|
|
6207
6244
|
border-color: var(--xmlui-borderColor-Slider-default--hover);
|
|
6208
6245
|
box-shadow: var(--xmlui-boxShadow-Slider-default--hover);
|
|
6209
6246
|
}
|
|
6210
|
-
.
|
|
6247
|
+
._sliderTrack_d4hsx_29:focus-within {
|
|
6211
6248
|
border-color: var(--xmlui-borderColor-Slider-default--focus);
|
|
6212
6249
|
box-shadow: var(--xmlui-boxShadow-Slider-default--focus);
|
|
6213
6250
|
}
|
|
6214
|
-
.
|
|
6251
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51 {
|
|
6215
6252
|
border-radius: var(--xmlui-borderRadius-Slider-error);
|
|
6216
6253
|
border-color: var(--xmlui-borderColor-Slider-error);
|
|
6217
6254
|
border-width: var(--xmlui-borderWidth-Slider-error);
|
|
6218
6255
|
border-style: var(--xmlui-borderStyle-Slider-error);
|
|
6219
6256
|
box-shadow: var(--xmlui-boxShadow-Slider-error);
|
|
6220
6257
|
}
|
|
6221
|
-
.
|
|
6258
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51:hover {
|
|
6222
6259
|
border-color: var(--xmlui-borderColor-Slider-error--hover);
|
|
6223
6260
|
box-shadow: var(--xmlui-boxShadow-Slider-error--hover);
|
|
6224
6261
|
}
|
|
6225
|
-
.
|
|
6262
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51:focus-within {
|
|
6226
6263
|
border-color: var(--xmlui-borderColor-Slider-error--focus);
|
|
6227
6264
|
box-shadow: var(--xmlui-boxShadow-Slider-error--focus);
|
|
6228
6265
|
}
|
|
6229
|
-
.
|
|
6266
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66 {
|
|
6230
6267
|
border-radius: var(--xmlui-borderRadius-Slider-warning);
|
|
6231
6268
|
border-color: var(--xmlui-borderColor-Slider-warning);
|
|
6232
6269
|
border-width: var(--xmlui-borderWidth-Slider-warning);
|
|
6233
6270
|
border-style: var(--xmlui-borderStyle-Slider-warning);
|
|
6234
6271
|
box-shadow: var(--xmlui-boxShadow-Slider-warning);
|
|
6235
6272
|
}
|
|
6236
|
-
.
|
|
6273
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66:hover {
|
|
6237
6274
|
border-color: var(--xmlui-borderColor-Slider-warning--hover);
|
|
6238
6275
|
box-shadow: var(--xmlui-boxShadow-Slider-warning--hover);
|
|
6239
6276
|
}
|
|
6240
|
-
.
|
|
6277
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66:focus-within {
|
|
6241
6278
|
border-color: var(--xmlui-borderColor-Slider-warning--focus);
|
|
6242
6279
|
box-shadow: var(--xmlui-boxShadow-Slider-warning--focus);
|
|
6243
6280
|
}
|
|
6244
|
-
.
|
|
6281
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81 {
|
|
6245
6282
|
border-radius: var(--xmlui-borderRadius-Slider-success);
|
|
6246
6283
|
border-color: var(--xmlui-borderColor-Slider-success);
|
|
6247
6284
|
border-width: var(--xmlui-borderWidth-Slider-success);
|
|
6248
6285
|
border-style: var(--xmlui-borderStyle-Slider-success);
|
|
6249
6286
|
box-shadow: var(--xmlui-boxShadow-Slider-success);
|
|
6250
6287
|
}
|
|
6251
|
-
.
|
|
6288
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81:hover {
|
|
6252
6289
|
border-color: var(--xmlui-borderColor-Slider-success--hover);
|
|
6253
6290
|
box-shadow: var(--xmlui-boxShadow-Slider-success--hover);
|
|
6254
6291
|
}
|
|
6255
|
-
.
|
|
6292
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81:focus-within {
|
|
6256
6293
|
border-color: var(--xmlui-borderColor-Slider-success--focus);
|
|
6257
6294
|
box-shadow: var(--xmlui-boxShadow-Slider-success--focus);
|
|
6258
6295
|
}
|
|
6259
|
-
.
|
|
6296
|
+
._sliderTrack_d4hsx_29._disabled_d4hsx_96, ._sliderTrack_d4hsx_29[data-disabled] {
|
|
6260
6297
|
background-color: var(--xmlui-backgroundColor-track-Slider--disabled);
|
|
6261
6298
|
}
|
|
6262
6299
|
|
|
6263
|
-
.
|
|
6300
|
+
._sliderRange_d4hsx_100 {
|
|
6264
6301
|
position: absolute;
|
|
6265
6302
|
height: 100%;
|
|
6266
6303
|
background-color: var(--xmlui-backgroundColor-range-Slider);
|
|
6304
|
+
border-radius: 9999px;
|
|
6267
6305
|
}
|
|
6268
|
-
.
|
|
6306
|
+
._sliderRange_d4hsx_100._disabled_d4hsx_96, ._sliderRange_d4hsx_100[data-disabled] {
|
|
6269
6307
|
background-color: var(--xmlui-backgroundColor-range-Slider--disabled);
|
|
6270
6308
|
}
|
|
6271
6309
|
|
|
6272
|
-
.
|
|
6310
|
+
._sliderThumb_d4hsx_110 {
|
|
6273
6311
|
display: block;
|
|
6274
6312
|
width: 20px;
|
|
6275
6313
|
height: 20px;
|
|
@@ -6277,13 +6315,36 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6277
6315
|
border: var(--xmlui-borderWidth-thumb-Slider) var(--xmlui-borderStyle-thumb-Slider) var(--xmlui-borderColor-thumb-Slider);
|
|
6278
6316
|
background-color: var(--xmlui-backgroundColor-thumb-Slider);
|
|
6279
6317
|
box-shadow: var(--xmlui-boxShadow-thumb-Slider);
|
|
6318
|
+
position: relative;
|
|
6280
6319
|
transition: background-color 0.2s;
|
|
6281
6320
|
outline: none;
|
|
6282
6321
|
}
|
|
6283
|
-
|
|
6284
|
-
._sliderThumb_1irri_101:disabled {
|
|
6322
|
+
._sliderThumb_d4hsx_110._disabled_d4hsx_96, ._sliderThumb_d4hsx_110[data-disabled] {
|
|
6285
6323
|
pointer-events: none;
|
|
6286
6324
|
opacity: 0.5;
|
|
6325
|
+
}
|
|
6326
|
+
|
|
6327
|
+
/* States */
|
|
6328
|
+
._disabled_d4hsx_96 {
|
|
6329
|
+
opacity: 0.5;
|
|
6330
|
+
cursor: not-allowed;
|
|
6331
|
+
}
|
|
6332
|
+
|
|
6333
|
+
._readOnly_d4hsx_133 {
|
|
6334
|
+
opacity: 0.7;
|
|
6335
|
+
cursor: default;
|
|
6336
|
+
}
|
|
6337
|
+
|
|
6338
|
+
._error_d4hsx_51 {
|
|
6339
|
+
border-color: var(--xmlui-borderColor-Slider-error);
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6342
|
+
._warning_d4hsx_66 {
|
|
6343
|
+
border-color: var(--xmlui-borderColor-Slider-warning);
|
|
6344
|
+
}
|
|
6345
|
+
|
|
6346
|
+
._valid_d4hsx_81 {
|
|
6347
|
+
border-color: var(--xmlui-borderColor-Slider-success);
|
|
6287
6348
|
}/*
|
|
6288
6349
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6289
6350
|
*
|
|
@@ -6525,98 +6586,94 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6525
6586
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6526
6587
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6527
6588
|
*/
|
|
6528
|
-
.
|
|
6529
|
-
margin-top: 1em;
|
|
6530
|
-
margin-bottom: 0.5;
|
|
6531
|
-
}
|
|
6532
|
-
._markdownContent_1y6tk_13 > *:first-child {
|
|
6533
|
-
margin-top: 0;
|
|
6534
|
-
}
|
|
6535
|
-
._markdownContent_1y6tk_13 > *:last-child {
|
|
6536
|
-
margin-bottom: 0;
|
|
6537
|
-
}
|
|
6538
|
-
._markdownContent_1y6tk_13 hr {
|
|
6539
|
-
border: 0;
|
|
6540
|
-
height: 1px;
|
|
6541
|
-
background-color: #ddd;
|
|
6542
|
-
margin: 1.5em 0;
|
|
6543
|
-
}
|
|
6544
|
-
|
|
6545
|
-
._horizontalRule_1y6tk_30 {
|
|
6546
|
-
border: var(--xmlui-borderWidth-HorizontalRule) var(--xmlui-borderStyle-HorizontalRule) var(--xmlui-borderColor-HorizontalRule);
|
|
6547
|
-
}
|
|
6548
|
-
|
|
6549
|
-
._blockquote_1y6tk_34 {
|
|
6589
|
+
._markdownContent_1ldtu_13 ._blockquote_1ldtu_13 {
|
|
6550
6590
|
position: relative;
|
|
6591
|
+
margin-top: var(--xmlui-marginTop-Blockquote);
|
|
6592
|
+
margin-bottom: var(--xmlui-marginBottom-Blockquote);
|
|
6593
|
+
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
6551
6594
|
border-radius: var(--xmlui-borderRadius-Blockquote);
|
|
6552
|
-
|
|
6553
|
-
box-shadow: var(--xmlui-boxShadow-Blockquote);
|
|
6554
|
-
padding: var(--xmlui-padding-Blockquote);
|
|
6555
|
-
margin-top: var(--xmlui-margin-Blockquote);
|
|
6556
|
-
margin-bottom: var(--xmlui-margin-Blockquote);
|
|
6595
|
+
padding-left: var(--xmlui-paddingLeft-Blockquote);
|
|
6557
6596
|
}
|
|
6558
|
-
.
|
|
6597
|
+
._markdownContent_1ldtu_13 ._blockquote_1ldtu_13::before {
|
|
6598
|
+
background-color: var(--xmlui-accentColor-Blockquote);
|
|
6559
6599
|
position: absolute;
|
|
6560
6600
|
top: 0;
|
|
6561
6601
|
left: 0;
|
|
6562
6602
|
display: block;
|
|
6563
6603
|
content: "";
|
|
6564
6604
|
height: 100%;
|
|
6565
|
-
width:
|
|
6566
|
-
background-color: var(--xmlui-accent-Blockquote);
|
|
6605
|
+
width: var(--xmlui-accentWidth-Blockquote);
|
|
6567
6606
|
}
|
|
6568
|
-
|
|
6569
|
-
.
|
|
6570
|
-
|
|
6571
|
-
|
|
6607
|
+
._markdownContent_1ldtu_13 ._blockquoteContainer_1ldtu_31 {
|
|
6608
|
+
padding: 0.5rem;
|
|
6609
|
+
}
|
|
6610
|
+
._markdownContent_1ldtu_13 ._admonitionBlockquote_1ldtu_34 {
|
|
6611
|
+
margin-top: var(--xmlui-marginTop-Admonition);
|
|
6612
|
+
margin-bottom: var(--xmlui-marginBottom-Admonition);
|
|
6572
6613
|
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
6573
|
-
|
|
6574
|
-
padding: var(--xmlui-padding-Blockquote);
|
|
6575
|
-
margin: var(--xmlui-margin-Blockquote);
|
|
6576
|
-
color: var(--xmlui-textColor-Admonition);
|
|
6614
|
+
border-radius: var(--xmlui-borderRadius-Admonition);
|
|
6577
6615
|
}
|
|
6578
|
-
|
|
6579
|
-
.
|
|
6616
|
+
._markdownContent_1ldtu_13 ._admonitionContainer_1ldtu_40 {
|
|
6617
|
+
padding: 0.5rem;
|
|
6580
6618
|
display: flex;
|
|
6581
6619
|
align-items: flex-start;
|
|
6582
|
-
gap: 12px;
|
|
6583
6620
|
}
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
font-size: var(--xmlui-size-icon-Admonition);
|
|
6587
|
-
padding-top: 0;
|
|
6588
|
-
flex-shrink: 0;
|
|
6621
|
+
._markdownContent_1ldtu_13 ._admonitionContent_1ldtu_45 {
|
|
6622
|
+
margin-left: var(--xmlui-marginLeft-Admonition-content);
|
|
6589
6623
|
}
|
|
6590
|
-
|
|
6591
|
-
|
|
6624
|
+
._markdownContent_1ldtu_13 ._admonitionIcon_1ldtu_48 {
|
|
6625
|
+
font-size: var(--xmlui-iconSize-Admonition);
|
|
6626
|
+
line-height: 1;
|
|
6627
|
+
}
|
|
6628
|
+
._markdownContent_1ldtu_13 ._admonitionContent_1ldtu_45 {
|
|
6592
6629
|
flex: 1;
|
|
6593
6630
|
min-width: 0;
|
|
6594
6631
|
}
|
|
6632
|
+
._markdownContent_1ldtu_13 ._admonitionBlockquote_1ldtu_34 ._admonitionContent_1ldtu_45 [class*=text_][class*=markdown_] {
|
|
6633
|
+
margin-top: 0;
|
|
6634
|
+
margin-bottom: 0;
|
|
6635
|
+
}
|
|
6636
|
+
._markdownContent_1ldtu_13 > *:first-child {
|
|
6637
|
+
margin-top: 0;
|
|
6638
|
+
}
|
|
6639
|
+
._markdownContent_1ldtu_13 > *:last-child {
|
|
6640
|
+
margin-bottom: 0;
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
/*
|
|
6644
|
+
|
|
6645
|
+
$paddingLeft-UnorderedList: createThemeVar("paddingLeft-UnorderedList");
|
|
6595
6646
|
|
|
6596
|
-
.
|
|
6647
|
+
// the basic <ul> and <ol> styles are the same in tabler.io too
|
|
6648
|
+
.unorderedList {
|
|
6597
6649
|
list-style-type: revert;
|
|
6598
6650
|
list-style-position: outside;
|
|
6599
|
-
padding-left:
|
|
6651
|
+
padding-left: $paddingLeft-UnorderedList;
|
|
6600
6652
|
}
|
|
6601
6653
|
|
|
6602
|
-
|
|
6654
|
+
// --- OrderedList
|
|
6655
|
+
$paddingLeft-OrderedList: createThemeVar("paddingLeft-OrderedList");
|
|
6656
|
+
|
|
6657
|
+
// the basic <ul> and <ol> styles are the same in tabler.io too
|
|
6658
|
+
.orderedList {
|
|
6603
6659
|
list-style-type: revert;
|
|
6604
6660
|
list-style-position: outside;
|
|
6605
|
-
padding-left:
|
|
6661
|
+
padding-left: $paddingLeft-OrderedList;
|
|
6606
6662
|
}
|
|
6607
6663
|
|
|
6608
|
-
|
|
6609
|
-
padding-left: var(--xmlui-paddingLeft-ListItem);
|
|
6610
|
-
}
|
|
6664
|
+
// --- ListItem
|
|
6611
6665
|
|
|
6612
|
-
|
|
6613
|
-
|
|
6666
|
+
$paddingLeft-ListItem: createThemeVar("paddingLeft-ListItem");
|
|
6667
|
+
$color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
6668
|
+
|
|
6669
|
+
.listItem {
|
|
6670
|
+
padding-left: $paddingLeft-ListItem;
|
|
6614
6671
|
}
|
|
6615
6672
|
|
|
6616
|
-
.
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6673
|
+
.listItem::marker {
|
|
6674
|
+
color: $color-marker-ListItem;
|
|
6675
|
+
}
|
|
6676
|
+
*//*
|
|
6620
6677
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6621
6678
|
*
|
|
6622
6679
|
* We use a subset of these CSS variables in themes.
|
|
@@ -6628,7 +6685,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6628
6685
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6629
6686
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6630
6687
|
*/
|
|
6631
|
-
.
|
|
6688
|
+
._htmlTable_1wzn5_13 {
|
|
6632
6689
|
background-color: var(--xmlui-backgroundColor-HtmlTable);
|
|
6633
6690
|
color: var(--xmlui-textColor-HtmlTable);
|
|
6634
6691
|
font-family: var(--xmlui-fontFamily-HtmlTable);
|
|
@@ -6664,7 +6721,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6664
6721
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)));
|
|
6665
6722
|
}
|
|
6666
6723
|
|
|
6667
|
-
.
|
|
6724
|
+
._htmlThead_1wzn5_49 {
|
|
6668
6725
|
background-color: var(--xmlui-backgroundColor-HtmlThead);
|
|
6669
6726
|
color: var(--xmlui-textColor-HtmlThead);
|
|
6670
6727
|
font-weight: var(--xmlui-fontWeight-HtmlThead);
|
|
@@ -6697,7 +6754,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6697
6754
|
padding-bottom: var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)));
|
|
6698
6755
|
}
|
|
6699
6756
|
|
|
6700
|
-
.
|
|
6757
|
+
._htmlTbody_1wzn5_82 {
|
|
6701
6758
|
background-color: var(--xmlui-backgroundColor-HtmlTbody);
|
|
6702
6759
|
color: var(--xmlui-textColor-HtmlTbody);
|
|
6703
6760
|
text-align: var(--xmlui-textAlign-HtmlTbody);
|
|
@@ -6705,12 +6762,12 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6705
6762
|
text-transform: var(--xmlui-textTransform-HtmlTbody);
|
|
6706
6763
|
}
|
|
6707
6764
|
|
|
6708
|
-
.
|
|
6765
|
+
._htmlTfoot_1wzn5_90 {
|
|
6709
6766
|
background-color: var(--xmlui-backgroundColor-HtmlTfoot);
|
|
6710
6767
|
color: var(--xmlui-textColor-HtmlTfoot);
|
|
6711
6768
|
}
|
|
6712
6769
|
|
|
6713
|
-
.
|
|
6770
|
+
._htmlTh_1wzn5_49 {
|
|
6714
6771
|
background-color: var(--xmlui-backgroundColor-HtmlTh);
|
|
6715
6772
|
color: var(--xmlui-textColor-HtmlTh);
|
|
6716
6773
|
font-weight: var(--xmlui-fontWeight-HtmlTh);
|
|
@@ -6741,11 +6798,11 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6741
6798
|
padding-top: var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
6742
6799
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
6743
6800
|
}
|
|
6744
|
-
.
|
|
6801
|
+
._htmlTh_1wzn5_49:hover {
|
|
6745
6802
|
background-color: var(--xmlui-backgroundColor-HtmlTh--hover);
|
|
6746
6803
|
}
|
|
6747
6804
|
|
|
6748
|
-
.
|
|
6805
|
+
._htmlTr_1wzn5_130 {
|
|
6749
6806
|
background-color: var(--xmlui-backgroundColor-HtmlTr);
|
|
6750
6807
|
color: var(--xmlui-textColor-HtmlTr);
|
|
6751
6808
|
font-weight: var(--xmlui-fontWeight-HtmlTr);
|
|
@@ -6771,18 +6828,18 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6771
6828
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
6772
6829
|
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
6773
6830
|
}
|
|
6774
|
-
.
|
|
6831
|
+
._htmlTr_1wzn5_130:nth-child(even) {
|
|
6775
6832
|
background-color: var(--xmlui-backgroundColor-even-HtmlTr);
|
|
6776
6833
|
}
|
|
6777
|
-
.
|
|
6834
|
+
._htmlTr_1wzn5_130:hover {
|
|
6778
6835
|
background-color: var(--xmlui-backgroundColor-HtmlTr--hover);
|
|
6779
6836
|
color: var(--xmlui-textColor-HtmlTr--hover);
|
|
6780
6837
|
}
|
|
6781
|
-
.
|
|
6838
|
+
._htmlTr_1wzn5_130:hover:not(:has(:not(th))) {
|
|
6782
6839
|
background-color: initial;
|
|
6783
6840
|
}
|
|
6784
6841
|
|
|
6785
|
-
.
|
|
6842
|
+
._htmlTd_1wzn5_167 {
|
|
6786
6843
|
background-color: var(--xmlui-backgroundColor-HtmlTd);
|
|
6787
6844
|
text-align: var(--xmlui-text-align-HtmlTd);
|
|
6788
6845
|
vertical-align: var(--xmlui-verticalAlign-HtmlTd);
|
|
@@ -6815,37 +6872,52 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6815
6872
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)));
|
|
6816
6873
|
}
|
|
6817
6874
|
|
|
6818
|
-
.
|
|
6875
|
+
._htmlUl_1wzn5_200 {
|
|
6819
6876
|
margin-top: var(--xmlui-marginTop-HtmlUl);
|
|
6820
6877
|
margin-bottom: var(--xmlui-marginBottom-HtmlUl);
|
|
6821
6878
|
}
|
|
6822
6879
|
|
|
6823
|
-
.
|
|
6880
|
+
._htmlOl_1wzn5_205 {
|
|
6824
6881
|
margin-top: var(--xmlui-marginTop-HtmlOl);
|
|
6825
6882
|
margin-bottom: var(--xmlui-marginBottom-HtmlOl);
|
|
6826
6883
|
}
|
|
6827
6884
|
|
|
6828
|
-
li .
|
|
6829
|
-
li .
|
|
6885
|
+
li ._htmlUl_1wzn5_200,
|
|
6886
|
+
li ._htmlOl_1wzn5_205 {
|
|
6830
6887
|
margin-top: 0;
|
|
6831
6888
|
margin-bottom: 0;
|
|
6832
6889
|
}
|
|
6833
6890
|
|
|
6834
|
-
.
|
|
6835
|
-
.
|
|
6891
|
+
._htmlUl_1wzn5_200 li:has(> input[type=checkbox]),
|
|
6892
|
+
._htmlOl_1wzn5_205 li:has(> input[type=checkbox]) {
|
|
6836
6893
|
display: flex;
|
|
6837
6894
|
align-items: flex-start;
|
|
6838
6895
|
}
|
|
6839
|
-
.
|
|
6840
|
-
.
|
|
6896
|
+
._htmlUl_1wzn5_200 li:has(> input[type=checkbox]) > input[type=checkbox],
|
|
6897
|
+
._htmlOl_1wzn5_205 li:has(> input[type=checkbox]) > input[type=checkbox] {
|
|
6841
6898
|
margin-right: 8px;
|
|
6842
6899
|
margin-top: 4px;
|
|
6843
6900
|
flex-shrink: 0;
|
|
6844
6901
|
}
|
|
6845
6902
|
|
|
6846
|
-
.
|
|
6903
|
+
._htmlH1_1wzn5_228, ._htmlH2_1wzn5_228, ._htmlH3_1wzn5_228, ._htmlH4_1wzn5_228, ._htmlH5_1wzn5_228, ._htmlH6_1wzn5_228 {
|
|
6847
6904
|
margin-top: var(--xmlui-marginTop-HtmlHeading);
|
|
6848
6905
|
margin-bottom: var(--xmlui-marginBottom-HtmlHeading);
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6908
|
+
._htmlVideo_1wzn5_233 {
|
|
6909
|
+
margin-top: var(--xmlui-marginTop-HtmlVideo);
|
|
6910
|
+
margin-bottom: var(--xmlui-marginBottom-HtmlVideo);
|
|
6911
|
+
}
|
|
6912
|
+
|
|
6913
|
+
._htmlDetails_1wzn5_238 {
|
|
6914
|
+
margin-top: var(--xmlui-marginTop-HtmlDetails);
|
|
6915
|
+
margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
|
|
6916
|
+
}
|
|
6917
|
+
|
|
6918
|
+
._htmlDetails_1wzn5_238 {
|
|
6919
|
+
margin-top: var(--xmlui-marginTop-HtmlDetails);
|
|
6920
|
+
margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
|
|
6849
6921
|
}/*
|
|
6850
6922
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6851
6923
|
*
|
|
@@ -7012,76 +7084,7 @@ li ._htmlOl_1snis_205 {
|
|
|
7012
7084
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7013
7085
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7014
7086
|
*/
|
|
7015
|
-
.
|
|
7016
|
-
width: 100%;
|
|
7017
|
-
height: 100%;
|
|
7018
|
-
overflow: auto;
|
|
7019
|
-
padding: 12px;
|
|
7020
|
-
--syntax-token-component: #cb5291;
|
|
7021
|
-
--syntax-token-delimiter-angle: #66748E;
|
|
7022
|
-
--syntax-token-attribute-name: #2d2d2d;
|
|
7023
|
-
--syntax-token-equal-sign: #2d2d2d;
|
|
7024
|
-
--syntax-token-string: #0074a9;
|
|
7025
|
-
--syntax-token-script: #02A1A1;
|
|
7026
|
-
--syntax-token-helper: #005AE1;
|
|
7027
|
-
--syntax-token-comment: #4E4E4E;
|
|
7028
|
-
--syntax-token-escape: #00B248;
|
|
7029
|
-
--syntax-token-constant: #708C00;
|
|
7030
|
-
--syntax-token-cdata: #079CF1;
|
|
7031
|
-
--syntax-token-delimiter-curly: #000000;
|
|
7032
|
-
--syntax-token-text: #4e5fb3;
|
|
7033
|
-
}
|
|
7034
|
-
._innerWrapper_x6hwk_13._dark_x6hwk_32 {
|
|
7035
|
-
--syntax-token-component: #f472b6;
|
|
7036
|
-
--syntax-token-delimiter-angle: #97A7C5;
|
|
7037
|
-
--syntax-token-attribute-name: #cbd5e1;
|
|
7038
|
-
--syntax-token-equal-sign: #cbd5e1;
|
|
7039
|
-
--syntax-token-string: #7dd3fc;
|
|
7040
|
-
--syntax-token-script: #78DBDB;
|
|
7041
|
-
--syntax-token-helper: #80A6F8;
|
|
7042
|
-
--syntax-token-comment: #CFCFCF;
|
|
7043
|
-
--syntax-token-escape: #61F69D;
|
|
7044
|
-
--syntax-token-constant: #BAF80A;
|
|
7045
|
-
--syntax-token-cdata: #5CC1F9;
|
|
7046
|
-
--syntax-token-delimiter-curly: #FFFFFF;
|
|
7047
|
-
--syntax-token-text: #f5f5ff;
|
|
7048
|
-
}
|
|
7049
|
-
._innerWrapper_x6hwk_13 > .shiki {
|
|
7050
|
-
background-color: transparent !important;
|
|
7051
|
-
}
|
|
7052
|
-
|
|
7053
|
-
._wrapper_x6hwk_51 {
|
|
7054
|
-
width: 100%;
|
|
7055
|
-
height: 100%;
|
|
7056
|
-
position: relative;
|
|
7057
|
-
overflow: auto;
|
|
7058
|
-
}
|
|
7059
|
-
|
|
7060
|
-
._copyButton_x6hwk_58 {
|
|
7061
|
-
position: absolute;
|
|
7062
|
-
top: 2px;
|
|
7063
|
-
right: 2px;
|
|
7064
|
-
border: none;
|
|
7065
|
-
padding: 4px;
|
|
7066
|
-
border-radius: 5px;
|
|
7067
|
-
cursor: pointer;
|
|
7068
|
-
display: flex;
|
|
7069
|
-
align-items: center;
|
|
7070
|
-
gap: 5px;
|
|
7071
|
-
transition: opacity 0.2s;
|
|
7072
|
-
}/*
|
|
7073
|
-
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7074
|
-
*
|
|
7075
|
-
* We use a subset of these CSS variables in themes.
|
|
7076
|
-
*/
|
|
7077
|
-
/*
|
|
7078
|
-
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7079
|
-
*/
|
|
7080
|
-
/*
|
|
7081
|
-
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7082
|
-
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7083
|
-
*/
|
|
7084
|
-
._wrapper_1f03i_13 {
|
|
7087
|
+
._wrapper_1buy3_13 {
|
|
7085
7088
|
z-index: 9999;
|
|
7086
7089
|
overflow: hidden;
|
|
7087
7090
|
box-shadow: 0 2px 6px 0 rgba(58, 57, 68, 0.4);
|
|
@@ -7092,32 +7095,32 @@ li ._htmlOl_1snis_205 {
|
|
|
7092
7095
|
border: 1px solid var(--xmlui-borderColor);
|
|
7093
7096
|
}
|
|
7094
7097
|
|
|
7095
|
-
.
|
|
7098
|
+
._actions_1buy3_24 {
|
|
7096
7099
|
display: inline-flex;
|
|
7097
7100
|
align-items: center;
|
|
7098
7101
|
justify-content: flex-end;
|
|
7099
7102
|
}
|
|
7100
7103
|
|
|
7101
|
-
.
|
|
7104
|
+
._tabs_1buy3_30 {
|
|
7102
7105
|
display: flex;
|
|
7103
7106
|
flex-direction: column;
|
|
7104
7107
|
background-color: var(--xmlui-backgroundColor);
|
|
7105
7108
|
}
|
|
7106
7109
|
|
|
7107
|
-
.
|
|
7110
|
+
._tabItems_1buy3_36 {
|
|
7108
7111
|
display: flex;
|
|
7109
7112
|
flex-direction: row;
|
|
7110
7113
|
}
|
|
7111
7114
|
|
|
7112
|
-
.
|
|
7115
|
+
._sideButtons_1buy3_41 {
|
|
7113
7116
|
display: flex;
|
|
7114
7117
|
}
|
|
7115
7118
|
|
|
7116
|
-
.
|
|
7119
|
+
._sideButton_1buy3_41 {
|
|
7117
7120
|
padding: 2px;
|
|
7118
7121
|
}
|
|
7119
7122
|
|
|
7120
|
-
.
|
|
7123
|
+
._menuItem_1buy3_49 {
|
|
7121
7124
|
width: 240px;
|
|
7122
7125
|
display: flex;
|
|
7123
7126
|
justify-content: space-between;
|
|
@@ -7127,7 +7130,7 @@ li ._htmlOl_1snis_205 {
|
|
|
7127
7130
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
7128
7131
|
}
|
|
7129
7132
|
|
|
7130
|
-
.
|
|
7133
|
+
._list_1buy3_59 {
|
|
7131
7134
|
padding: 0.2rem;
|
|
7132
7135
|
display: flex;
|
|
7133
7136
|
flex: 0 0 auto;
|
|
@@ -7137,18 +7140,19 @@ li ._htmlOl_1snis_205 {
|
|
|
7137
7140
|
border-bottom: 1px solid var(--xmlui-borderColor);
|
|
7138
7141
|
}
|
|
7139
7142
|
|
|
7140
|
-
.
|
|
7143
|
+
._menu_1buy3_49 {
|
|
7141
7144
|
position: relative;
|
|
7142
7145
|
z-index: 9999;
|
|
7143
7146
|
padding: var(--xmlui-space-1_5);
|
|
7144
7147
|
}
|
|
7145
7148
|
|
|
7146
|
-
.
|
|
7149
|
+
._content_1buy3_75 {
|
|
7147
7150
|
flex: 1;
|
|
7148
7151
|
position: relative;
|
|
7149
7152
|
overflow: auto;
|
|
7150
7153
|
}
|
|
7151
|
-
.
|
|
7154
|
+
._content_1buy3_75 ._copyButton_1buy3_80 {
|
|
7155
|
+
z-index: 9999;
|
|
7152
7156
|
position: absolute;
|
|
7153
7157
|
top: 16px;
|
|
7154
7158
|
right: 16px;
|
|
@@ -7161,8 +7165,13 @@ li ._htmlOl_1snis_205 {
|
|
|
7161
7165
|
gap: 5px;
|
|
7162
7166
|
transition: opacity 0.2s;
|
|
7163
7167
|
}
|
|
7164
|
-
.
|
|
7168
|
+
._content_1buy3_75:hover ._copyButton_1buy3_80 {
|
|
7165
7169
|
display: flex;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
7172
|
+
._xmluiEditor_1buy3_98 {
|
|
7173
|
+
height: 100%;
|
|
7174
|
+
width: 100%;
|
|
7166
7175
|
}/*
|
|
7167
7176
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7168
7177
|
*
|
|
@@ -7660,6 +7669,75 @@ li ._htmlOl_1snis_205 {
|
|
|
7660
7669
|
/*
|
|
7661
7670
|
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7662
7671
|
*/
|
|
7672
|
+
/*
|
|
7673
|
+
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7674
|
+
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7675
|
+
*/
|
|
7676
|
+
._innerWrapper_x6hwk_13 {
|
|
7677
|
+
width: 100%;
|
|
7678
|
+
height: 100%;
|
|
7679
|
+
overflow: auto;
|
|
7680
|
+
padding: 12px;
|
|
7681
|
+
--syntax-token-component: #cb5291;
|
|
7682
|
+
--syntax-token-delimiter-angle: #66748E;
|
|
7683
|
+
--syntax-token-attribute-name: #2d2d2d;
|
|
7684
|
+
--syntax-token-equal-sign: #2d2d2d;
|
|
7685
|
+
--syntax-token-string: #0074a9;
|
|
7686
|
+
--syntax-token-script: #02A1A1;
|
|
7687
|
+
--syntax-token-helper: #005AE1;
|
|
7688
|
+
--syntax-token-comment: #4E4E4E;
|
|
7689
|
+
--syntax-token-escape: #00B248;
|
|
7690
|
+
--syntax-token-constant: #708C00;
|
|
7691
|
+
--syntax-token-cdata: #079CF1;
|
|
7692
|
+
--syntax-token-delimiter-curly: #000000;
|
|
7693
|
+
--syntax-token-text: #4e5fb3;
|
|
7694
|
+
}
|
|
7695
|
+
._innerWrapper_x6hwk_13._dark_x6hwk_32 {
|
|
7696
|
+
--syntax-token-component: #f472b6;
|
|
7697
|
+
--syntax-token-delimiter-angle: #97A7C5;
|
|
7698
|
+
--syntax-token-attribute-name: #cbd5e1;
|
|
7699
|
+
--syntax-token-equal-sign: #cbd5e1;
|
|
7700
|
+
--syntax-token-string: #7dd3fc;
|
|
7701
|
+
--syntax-token-script: #78DBDB;
|
|
7702
|
+
--syntax-token-helper: #80A6F8;
|
|
7703
|
+
--syntax-token-comment: #CFCFCF;
|
|
7704
|
+
--syntax-token-escape: #61F69D;
|
|
7705
|
+
--syntax-token-constant: #BAF80A;
|
|
7706
|
+
--syntax-token-cdata: #5CC1F9;
|
|
7707
|
+
--syntax-token-delimiter-curly: #FFFFFF;
|
|
7708
|
+
--syntax-token-text: #f5f5ff;
|
|
7709
|
+
}
|
|
7710
|
+
._innerWrapper_x6hwk_13 > .shiki {
|
|
7711
|
+
background-color: transparent !important;
|
|
7712
|
+
}
|
|
7713
|
+
|
|
7714
|
+
._wrapper_x6hwk_51 {
|
|
7715
|
+
width: 100%;
|
|
7716
|
+
height: 100%;
|
|
7717
|
+
position: relative;
|
|
7718
|
+
overflow: auto;
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7721
|
+
._copyButton_x6hwk_58 {
|
|
7722
|
+
position: absolute;
|
|
7723
|
+
top: 2px;
|
|
7724
|
+
right: 2px;
|
|
7725
|
+
border: none;
|
|
7726
|
+
padding: 4px;
|
|
7727
|
+
border-radius: 5px;
|
|
7728
|
+
cursor: pointer;
|
|
7729
|
+
display: flex;
|
|
7730
|
+
align-items: center;
|
|
7731
|
+
gap: 5px;
|
|
7732
|
+
transition: opacity 0.2s;
|
|
7733
|
+
}/*
|
|
7734
|
+
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7735
|
+
*
|
|
7736
|
+
* We use a subset of these CSS variables in themes.
|
|
7737
|
+
*/
|
|
7738
|
+
/*
|
|
7739
|
+
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7740
|
+
*/
|
|
7663
7741
|
/*
|
|
7664
7742
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7665
7743
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|