xmlui 0.9.1 → 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-230V_-Ds.mjs → apiInterceptorWorker-Y5MxQ95G.mjs} +1 -1
- package/dist/{core-XLM8cuFP.mjs → core-DowI-7YH.mjs} +2 -52
- package/dist/{index-DUwwx3L4.mjs → index-DHAz4bv_.mjs} +14904 -1512
- package/dist/index.css +309 -233
- package/dist/scripts/bin/vite-xmlui-plugin.js +1 -1
- package/dist/scripts/src/abstractions/scripting/ScriptingSourceTree.js +48 -0
- 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 +40 -21
- 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 +21 -11
- package/dist/scripts/src/components-core/{DevTools.js → devtools/DevTools.js} +71 -10
- package/dist/scripts/src/components-core/rendering/Container.js +3 -3
- package/dist/scripts/src/components-core/rendering/StateContainer.js +3 -3
- package/dist/scripts/src/components-core/script-runner/ParameterParser.js +1 -1
- package/dist/scripts/src/components-core/script-runner/eval-tree-async.js +37 -37
- package/dist/scripts/src/components-core/script-runner/eval-tree-common.js +8 -8
- package/dist/scripts/src/components-core/script-runner/eval-tree-sync.js +37 -37
- package/dist/scripts/src/components-core/script-runner/process-statement-async.js +29 -29
- package/dist/scripts/src/components-core/script-runner/process-statement-common.js +5 -5
- package/dist/scripts/src/components-core/script-runner/process-statement-sync.js +29 -29
- package/dist/scripts/src/components-core/script-runner/visitors.js +47 -47
- package/dist/scripts/src/components-core/theming/ThemeProvider.js +2 -2
- package/dist/scripts/src/components-core/theming/themes/root.js +1 -1
- package/dist/scripts/src/components-core/utils/statementUtils.js +32 -32
- package/dist/scripts/src/parsers/scripting/Lexer.js +166 -178
- package/dist/scripts/src/parsers/scripting/Parser.js +555 -701
- package/dist/scripts/src/parsers/scripting/ParserError.js +3 -3
- package/dist/scripts/src/parsers/scripting/TokenTrait.js +103 -105
- package/dist/scripts/src/parsers/{scripting-exp → scripting}/code-behind-collect.js +4 -4
- package/dist/scripts/src/parsers/{scripting-exp → scripting}/modules.js +2 -2
- package/dist/scripts/src/parsers/{scripting-exp → scripting}/tree-visitor.js +45 -45
- package/dist/scripts/src/parsers/xmlui-parser/transform.js +2 -2
- 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 +222 -152
- package/dist/xmlui-metadata.mjs +307 -478
- package/dist/xmlui-metadata.umd.js +309 -477
- package/dist/xmlui-parser.d.ts +1 -11
- package/dist/xmlui-standalone.umd.js +34047 -29191
- package/dist/xmlui.d.ts +2 -75
- package/dist/xmlui.mjs +10 -10
- package/package.json +5 -6
- package/dist/scripts/src/abstractions/scripting/ScriptingSourceTreeExp.js +0 -50
- package/dist/scripts/src/abstractions/scripting/Token.js +0 -112
- package/dist/scripts/src/components-core/theming/abstractions.js +0 -11
- package/dist/scripts/src/parsers/scripting-exp/Lexer.js +0 -1092
- package/dist/scripts/src/parsers/scripting-exp/Parser.js +0 -2635
- package/dist/scripts/src/parsers/scripting-exp/ParserError.js +0 -47
- package/dist/scripts/src/parsers/scripting-exp/TokenTrait.js +0 -109
- /package/dist/scripts/src/abstractions/scripting/{LogicalThreadExp.js → LogicalThread.js} +0 -0
- /package/dist/scripts/src/parsers/{scripting-exp → scripting}/TokenType.js +0 -0
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.
|
|
@@ -4050,7 +4079,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4050
4079
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
4051
4080
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
4052
4081
|
*/
|
|
4053
|
-
.
|
|
4082
|
+
._splitter_12v45_13 {
|
|
4054
4083
|
overflow: hidden;
|
|
4055
4084
|
position: relative;
|
|
4056
4085
|
flex-wrap: nowrap;
|
|
@@ -4063,50 +4092,48 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4063
4092
|
border: var(--xmlui-border-Splitter) var(--xmlui-borderStyle-Splitter) var(--xmlui-borderColor-Splitter);
|
|
4064
4093
|
user-select: none;
|
|
4065
4094
|
}
|
|
4066
|
-
.
|
|
4095
|
+
._splitter_12v45_13._vertical_12v45_26 {
|
|
4067
4096
|
flex-direction: column;
|
|
4068
4097
|
}
|
|
4069
|
-
.
|
|
4098
|
+
._splitter_12v45_13._horizontal_12v45_29 {
|
|
4070
4099
|
flex-direction: row;
|
|
4071
4100
|
}
|
|
4072
4101
|
|
|
4073
|
-
.
|
|
4102
|
+
._panel_12v45_33 {
|
|
4074
4103
|
overflow: hidden;
|
|
4075
4104
|
display: flex;
|
|
4076
4105
|
flex-direction: column;
|
|
4077
4106
|
flex: 1;
|
|
4078
4107
|
}
|
|
4079
4108
|
|
|
4080
|
-
.
|
|
4109
|
+
._primaryPanel_12v45_40 {
|
|
4081
4110
|
flex-shrink: 0;
|
|
4082
4111
|
flex-grow: 0;
|
|
4083
4112
|
overflow: auto;
|
|
4084
4113
|
order: 1;
|
|
4085
4114
|
}
|
|
4086
4115
|
|
|
4087
|
-
.
|
|
4116
|
+
._secondaryPanel_12v45_47 {
|
|
4088
4117
|
flex: 1;
|
|
4089
4118
|
overflow: auto;
|
|
4090
4119
|
order: 3;
|
|
4091
4120
|
}
|
|
4092
4121
|
|
|
4093
|
-
.
|
|
4122
|
+
._resizer_12v45_53 {
|
|
4094
4123
|
order: 2;
|
|
4095
4124
|
overflow: hidden;
|
|
4096
4125
|
background-color: var(--xmlui-backgroundColor-resizer-Splitter, transparent);
|
|
4097
4126
|
}
|
|
4098
|
-
.
|
|
4127
|
+
._resizer_12v45_53._vertical_12v45_26 {
|
|
4099
4128
|
cursor: var(--xmlui-cursor-resizer-vertical-Splitter, ns-resize);
|
|
4100
|
-
width: 100%;
|
|
4101
4129
|
height: var(--xmlui-thickness-resizer-Splitter, 5px);
|
|
4102
4130
|
}
|
|
4103
|
-
.
|
|
4131
|
+
._resizer_12v45_53._horizontal_12v45_29 {
|
|
4104
4132
|
cursor: var(--xmlui-cursor-resizer-horizontal-Splitter, ew-resize);
|
|
4105
4133
|
width: var(--xmlui-thickness-resizer-Splitter, 5px);
|
|
4106
|
-
height: 100%;
|
|
4107
4134
|
}
|
|
4108
4135
|
|
|
4109
|
-
.
|
|
4136
|
+
._floatingResizer_12v45_67 {
|
|
4110
4137
|
position: absolute;
|
|
4111
4138
|
z-index: 1000;
|
|
4112
4139
|
opacity: 0;
|
|
@@ -4114,13 +4141,13 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4114
4141
|
transition: opacity 0.2s;
|
|
4115
4142
|
background-color: var(--xmlui-backgroundColor-resizer-Splitter, transparent);
|
|
4116
4143
|
}
|
|
4117
|
-
.
|
|
4144
|
+
._floatingResizer_12v45_67._vertical_12v45_26 {
|
|
4118
4145
|
cursor: var(--xmlui-cursor-resizer-vertical-Splitter, ns-resize);
|
|
4119
4146
|
width: 100%;
|
|
4120
4147
|
height: var(--xmlui-thickness-resizer-Splitter, 5px);
|
|
4121
4148
|
transform: translateY(-50%);
|
|
4122
4149
|
}
|
|
4123
|
-
.
|
|
4150
|
+
._floatingResizer_12v45_67._horizontal_12v45_29 {
|
|
4124
4151
|
cursor: var(--xmlui-cursor-resizer-horizontal-Splitter, ew-resize);
|
|
4125
4152
|
width: var(--xmlui-thickness-resizer-Splitter, 5px);
|
|
4126
4153
|
height: 100%;
|
|
@@ -6183,21 +6210,29 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6183
6210
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6184
6211
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6185
6212
|
*/
|
|
6186
|
-
.
|
|
6213
|
+
._sliderContainer_d4hsx_13 {
|
|
6214
|
+
width: 100%;
|
|
6215
|
+
position: relative;
|
|
6216
|
+
padding: var(--xmlui-space-2) 0;
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
._sliderRoot_d4hsx_19 {
|
|
6187
6220
|
position: relative;
|
|
6188
6221
|
display: flex;
|
|
6189
6222
|
width: 100%;
|
|
6190
6223
|
touch-action: none;
|
|
6191
6224
|
user-select: none;
|
|
6192
6225
|
align-items: center;
|
|
6226
|
+
height: 20px;
|
|
6193
6227
|
}
|
|
6194
6228
|
|
|
6195
|
-
.
|
|
6229
|
+
._sliderTrack_d4hsx_29 {
|
|
6196
6230
|
position: relative;
|
|
6197
6231
|
height: 8px;
|
|
6198
6232
|
width: 100%;
|
|
6199
6233
|
flex-grow: 1;
|
|
6200
6234
|
overflow: hidden;
|
|
6235
|
+
border-radius: 9999px;
|
|
6201
6236
|
background-color: var(--xmlui-backgroundColor-track-Slider);
|
|
6202
6237
|
border-radius: var(--xmlui-borderRadius-Slider-default);
|
|
6203
6238
|
border-color: var(--xmlui-borderColor-Slider-default);
|
|
@@ -6205,73 +6240,74 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6205
6240
|
border-style: var(--xmlui-borderStyle-Slider-default);
|
|
6206
6241
|
box-shadow: var(--xmlui-boxShadow-Slider-default);
|
|
6207
6242
|
}
|
|
6208
|
-
.
|
|
6243
|
+
._sliderTrack_d4hsx_29:hover {
|
|
6209
6244
|
border-color: var(--xmlui-borderColor-Slider-default--hover);
|
|
6210
6245
|
box-shadow: var(--xmlui-boxShadow-Slider-default--hover);
|
|
6211
6246
|
}
|
|
6212
|
-
.
|
|
6247
|
+
._sliderTrack_d4hsx_29:focus-within {
|
|
6213
6248
|
border-color: var(--xmlui-borderColor-Slider-default--focus);
|
|
6214
6249
|
box-shadow: var(--xmlui-boxShadow-Slider-default--focus);
|
|
6215
6250
|
}
|
|
6216
|
-
.
|
|
6251
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51 {
|
|
6217
6252
|
border-radius: var(--xmlui-borderRadius-Slider-error);
|
|
6218
6253
|
border-color: var(--xmlui-borderColor-Slider-error);
|
|
6219
6254
|
border-width: var(--xmlui-borderWidth-Slider-error);
|
|
6220
6255
|
border-style: var(--xmlui-borderStyle-Slider-error);
|
|
6221
6256
|
box-shadow: var(--xmlui-boxShadow-Slider-error);
|
|
6222
6257
|
}
|
|
6223
|
-
.
|
|
6258
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51:hover {
|
|
6224
6259
|
border-color: var(--xmlui-borderColor-Slider-error--hover);
|
|
6225
6260
|
box-shadow: var(--xmlui-boxShadow-Slider-error--hover);
|
|
6226
6261
|
}
|
|
6227
|
-
.
|
|
6262
|
+
._sliderTrack_d4hsx_29._error_d4hsx_51:focus-within {
|
|
6228
6263
|
border-color: var(--xmlui-borderColor-Slider-error--focus);
|
|
6229
6264
|
box-shadow: var(--xmlui-boxShadow-Slider-error--focus);
|
|
6230
6265
|
}
|
|
6231
|
-
.
|
|
6266
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66 {
|
|
6232
6267
|
border-radius: var(--xmlui-borderRadius-Slider-warning);
|
|
6233
6268
|
border-color: var(--xmlui-borderColor-Slider-warning);
|
|
6234
6269
|
border-width: var(--xmlui-borderWidth-Slider-warning);
|
|
6235
6270
|
border-style: var(--xmlui-borderStyle-Slider-warning);
|
|
6236
6271
|
box-shadow: var(--xmlui-boxShadow-Slider-warning);
|
|
6237
6272
|
}
|
|
6238
|
-
.
|
|
6273
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66:hover {
|
|
6239
6274
|
border-color: var(--xmlui-borderColor-Slider-warning--hover);
|
|
6240
6275
|
box-shadow: var(--xmlui-boxShadow-Slider-warning--hover);
|
|
6241
6276
|
}
|
|
6242
|
-
.
|
|
6277
|
+
._sliderTrack_d4hsx_29._warning_d4hsx_66:focus-within {
|
|
6243
6278
|
border-color: var(--xmlui-borderColor-Slider-warning--focus);
|
|
6244
6279
|
box-shadow: var(--xmlui-boxShadow-Slider-warning--focus);
|
|
6245
6280
|
}
|
|
6246
|
-
.
|
|
6281
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81 {
|
|
6247
6282
|
border-radius: var(--xmlui-borderRadius-Slider-success);
|
|
6248
6283
|
border-color: var(--xmlui-borderColor-Slider-success);
|
|
6249
6284
|
border-width: var(--xmlui-borderWidth-Slider-success);
|
|
6250
6285
|
border-style: var(--xmlui-borderStyle-Slider-success);
|
|
6251
6286
|
box-shadow: var(--xmlui-boxShadow-Slider-success);
|
|
6252
6287
|
}
|
|
6253
|
-
.
|
|
6288
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81:hover {
|
|
6254
6289
|
border-color: var(--xmlui-borderColor-Slider-success--hover);
|
|
6255
6290
|
box-shadow: var(--xmlui-boxShadow-Slider-success--hover);
|
|
6256
6291
|
}
|
|
6257
|
-
.
|
|
6292
|
+
._sliderTrack_d4hsx_29._valid_d4hsx_81:focus-within {
|
|
6258
6293
|
border-color: var(--xmlui-borderColor-Slider-success--focus);
|
|
6259
6294
|
box-shadow: var(--xmlui-boxShadow-Slider-success--focus);
|
|
6260
6295
|
}
|
|
6261
|
-
.
|
|
6296
|
+
._sliderTrack_d4hsx_29._disabled_d4hsx_96, ._sliderTrack_d4hsx_29[data-disabled] {
|
|
6262
6297
|
background-color: var(--xmlui-backgroundColor-track-Slider--disabled);
|
|
6263
6298
|
}
|
|
6264
6299
|
|
|
6265
|
-
.
|
|
6300
|
+
._sliderRange_d4hsx_100 {
|
|
6266
6301
|
position: absolute;
|
|
6267
6302
|
height: 100%;
|
|
6268
6303
|
background-color: var(--xmlui-backgroundColor-range-Slider);
|
|
6304
|
+
border-radius: 9999px;
|
|
6269
6305
|
}
|
|
6270
|
-
.
|
|
6306
|
+
._sliderRange_d4hsx_100._disabled_d4hsx_96, ._sliderRange_d4hsx_100[data-disabled] {
|
|
6271
6307
|
background-color: var(--xmlui-backgroundColor-range-Slider--disabled);
|
|
6272
6308
|
}
|
|
6273
6309
|
|
|
6274
|
-
.
|
|
6310
|
+
._sliderThumb_d4hsx_110 {
|
|
6275
6311
|
display: block;
|
|
6276
6312
|
width: 20px;
|
|
6277
6313
|
height: 20px;
|
|
@@ -6279,13 +6315,36 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6279
6315
|
border: var(--xmlui-borderWidth-thumb-Slider) var(--xmlui-borderStyle-thumb-Slider) var(--xmlui-borderColor-thumb-Slider);
|
|
6280
6316
|
background-color: var(--xmlui-backgroundColor-thumb-Slider);
|
|
6281
6317
|
box-shadow: var(--xmlui-boxShadow-thumb-Slider);
|
|
6318
|
+
position: relative;
|
|
6282
6319
|
transition: background-color 0.2s;
|
|
6283
6320
|
outline: none;
|
|
6284
6321
|
}
|
|
6285
|
-
|
|
6286
|
-
._sliderThumb_1irri_101:disabled {
|
|
6322
|
+
._sliderThumb_d4hsx_110._disabled_d4hsx_96, ._sliderThumb_d4hsx_110[data-disabled] {
|
|
6287
6323
|
pointer-events: none;
|
|
6288
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);
|
|
6289
6348
|
}/*
|
|
6290
6349
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6291
6350
|
*
|
|
@@ -6527,98 +6586,94 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6527
6586
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6528
6587
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6529
6588
|
*/
|
|
6530
|
-
.
|
|
6531
|
-
margin-top: 1em;
|
|
6532
|
-
margin-bottom: 0.5;
|
|
6533
|
-
}
|
|
6534
|
-
._markdownContent_1y6tk_13 > *:first-child {
|
|
6535
|
-
margin-top: 0;
|
|
6536
|
-
}
|
|
6537
|
-
._markdownContent_1y6tk_13 > *:last-child {
|
|
6538
|
-
margin-bottom: 0;
|
|
6539
|
-
}
|
|
6540
|
-
._markdownContent_1y6tk_13 hr {
|
|
6541
|
-
border: 0;
|
|
6542
|
-
height: 1px;
|
|
6543
|
-
background-color: #ddd;
|
|
6544
|
-
margin: 1.5em 0;
|
|
6545
|
-
}
|
|
6546
|
-
|
|
6547
|
-
._horizontalRule_1y6tk_30 {
|
|
6548
|
-
border: var(--xmlui-borderWidth-HorizontalRule) var(--xmlui-borderStyle-HorizontalRule) var(--xmlui-borderColor-HorizontalRule);
|
|
6549
|
-
}
|
|
6550
|
-
|
|
6551
|
-
._blockquote_1y6tk_34 {
|
|
6589
|
+
._markdownContent_1ldtu_13 ._blockquote_1ldtu_13 {
|
|
6552
6590
|
position: relative;
|
|
6591
|
+
margin-top: var(--xmlui-marginTop-Blockquote);
|
|
6592
|
+
margin-bottom: var(--xmlui-marginBottom-Blockquote);
|
|
6593
|
+
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
6553
6594
|
border-radius: var(--xmlui-borderRadius-Blockquote);
|
|
6554
|
-
|
|
6555
|
-
box-shadow: var(--xmlui-boxShadow-Blockquote);
|
|
6556
|
-
padding: var(--xmlui-padding-Blockquote);
|
|
6557
|
-
margin-top: var(--xmlui-margin-Blockquote);
|
|
6558
|
-
margin-bottom: var(--xmlui-margin-Blockquote);
|
|
6595
|
+
padding-left: var(--xmlui-paddingLeft-Blockquote);
|
|
6559
6596
|
}
|
|
6560
|
-
.
|
|
6597
|
+
._markdownContent_1ldtu_13 ._blockquote_1ldtu_13::before {
|
|
6598
|
+
background-color: var(--xmlui-accentColor-Blockquote);
|
|
6561
6599
|
position: absolute;
|
|
6562
6600
|
top: 0;
|
|
6563
6601
|
left: 0;
|
|
6564
6602
|
display: block;
|
|
6565
6603
|
content: "";
|
|
6566
6604
|
height: 100%;
|
|
6567
|
-
width:
|
|
6568
|
-
background-color: var(--xmlui-accent-Blockquote);
|
|
6605
|
+
width: var(--xmlui-accentWidth-Blockquote);
|
|
6569
6606
|
}
|
|
6570
|
-
|
|
6571
|
-
.
|
|
6572
|
-
|
|
6573
|
-
|
|
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);
|
|
6574
6613
|
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
6575
|
-
|
|
6576
|
-
padding: var(--xmlui-padding-Blockquote);
|
|
6577
|
-
margin: var(--xmlui-margin-Blockquote);
|
|
6578
|
-
color: var(--xmlui-textColor-Admonition);
|
|
6614
|
+
border-radius: var(--xmlui-borderRadius-Admonition);
|
|
6579
6615
|
}
|
|
6580
|
-
|
|
6581
|
-
.
|
|
6616
|
+
._markdownContent_1ldtu_13 ._admonitionContainer_1ldtu_40 {
|
|
6617
|
+
padding: 0.5rem;
|
|
6582
6618
|
display: flex;
|
|
6583
6619
|
align-items: flex-start;
|
|
6584
|
-
gap: 12px;
|
|
6585
6620
|
}
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
font-size: var(--xmlui-size-icon-Admonition);
|
|
6589
|
-
padding-top: 0;
|
|
6590
|
-
flex-shrink: 0;
|
|
6621
|
+
._markdownContent_1ldtu_13 ._admonitionContent_1ldtu_45 {
|
|
6622
|
+
margin-left: var(--xmlui-marginLeft-Admonition-content);
|
|
6591
6623
|
}
|
|
6592
|
-
|
|
6593
|
-
|
|
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 {
|
|
6594
6629
|
flex: 1;
|
|
6595
6630
|
min-width: 0;
|
|
6596
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");
|
|
6597
6646
|
|
|
6598
|
-
.
|
|
6647
|
+
// the basic <ul> and <ol> styles are the same in tabler.io too
|
|
6648
|
+
.unorderedList {
|
|
6599
6649
|
list-style-type: revert;
|
|
6600
6650
|
list-style-position: outside;
|
|
6601
|
-
padding-left:
|
|
6651
|
+
padding-left: $paddingLeft-UnorderedList;
|
|
6602
6652
|
}
|
|
6603
6653
|
|
|
6604
|
-
|
|
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 {
|
|
6605
6659
|
list-style-type: revert;
|
|
6606
6660
|
list-style-position: outside;
|
|
6607
|
-
padding-left:
|
|
6661
|
+
padding-left: $paddingLeft-OrderedList;
|
|
6608
6662
|
}
|
|
6609
6663
|
|
|
6610
|
-
|
|
6611
|
-
padding-left: var(--xmlui-paddingLeft-ListItem);
|
|
6612
|
-
}
|
|
6664
|
+
// --- ListItem
|
|
6613
6665
|
|
|
6614
|
-
|
|
6615
|
-
|
|
6666
|
+
$paddingLeft-ListItem: createThemeVar("paddingLeft-ListItem");
|
|
6667
|
+
$color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
6668
|
+
|
|
6669
|
+
.listItem {
|
|
6670
|
+
padding-left: $paddingLeft-ListItem;
|
|
6616
6671
|
}
|
|
6617
6672
|
|
|
6618
|
-
.
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6673
|
+
.listItem::marker {
|
|
6674
|
+
color: $color-marker-ListItem;
|
|
6675
|
+
}
|
|
6676
|
+
*//*
|
|
6622
6677
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6623
6678
|
*
|
|
6624
6679
|
* We use a subset of these CSS variables in themes.
|
|
@@ -6630,7 +6685,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6630
6685
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6631
6686
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6632
6687
|
*/
|
|
6633
|
-
.
|
|
6688
|
+
._htmlTable_1wzn5_13 {
|
|
6634
6689
|
background-color: var(--xmlui-backgroundColor-HtmlTable);
|
|
6635
6690
|
color: var(--xmlui-textColor-HtmlTable);
|
|
6636
6691
|
font-family: var(--xmlui-fontFamily-HtmlTable);
|
|
@@ -6666,7 +6721,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6666
6721
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)));
|
|
6667
6722
|
}
|
|
6668
6723
|
|
|
6669
|
-
.
|
|
6724
|
+
._htmlThead_1wzn5_49 {
|
|
6670
6725
|
background-color: var(--xmlui-backgroundColor-HtmlThead);
|
|
6671
6726
|
color: var(--xmlui-textColor-HtmlThead);
|
|
6672
6727
|
font-weight: var(--xmlui-fontWeight-HtmlThead);
|
|
@@ -6699,7 +6754,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6699
6754
|
padding-bottom: var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)));
|
|
6700
6755
|
}
|
|
6701
6756
|
|
|
6702
|
-
.
|
|
6757
|
+
._htmlTbody_1wzn5_82 {
|
|
6703
6758
|
background-color: var(--xmlui-backgroundColor-HtmlTbody);
|
|
6704
6759
|
color: var(--xmlui-textColor-HtmlTbody);
|
|
6705
6760
|
text-align: var(--xmlui-textAlign-HtmlTbody);
|
|
@@ -6707,12 +6762,12 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6707
6762
|
text-transform: var(--xmlui-textTransform-HtmlTbody);
|
|
6708
6763
|
}
|
|
6709
6764
|
|
|
6710
|
-
.
|
|
6765
|
+
._htmlTfoot_1wzn5_90 {
|
|
6711
6766
|
background-color: var(--xmlui-backgroundColor-HtmlTfoot);
|
|
6712
6767
|
color: var(--xmlui-textColor-HtmlTfoot);
|
|
6713
6768
|
}
|
|
6714
6769
|
|
|
6715
|
-
.
|
|
6770
|
+
._htmlTh_1wzn5_49 {
|
|
6716
6771
|
background-color: var(--xmlui-backgroundColor-HtmlTh);
|
|
6717
6772
|
color: var(--xmlui-textColor-HtmlTh);
|
|
6718
6773
|
font-weight: var(--xmlui-fontWeight-HtmlTh);
|
|
@@ -6743,11 +6798,11 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6743
6798
|
padding-top: var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
6744
6799
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
6745
6800
|
}
|
|
6746
|
-
.
|
|
6801
|
+
._htmlTh_1wzn5_49:hover {
|
|
6747
6802
|
background-color: var(--xmlui-backgroundColor-HtmlTh--hover);
|
|
6748
6803
|
}
|
|
6749
6804
|
|
|
6750
|
-
.
|
|
6805
|
+
._htmlTr_1wzn5_130 {
|
|
6751
6806
|
background-color: var(--xmlui-backgroundColor-HtmlTr);
|
|
6752
6807
|
color: var(--xmlui-textColor-HtmlTr);
|
|
6753
6808
|
font-weight: var(--xmlui-fontWeight-HtmlTr);
|
|
@@ -6773,18 +6828,18 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6773
6828
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
6774
6829
|
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
6775
6830
|
}
|
|
6776
|
-
.
|
|
6831
|
+
._htmlTr_1wzn5_130:nth-child(even) {
|
|
6777
6832
|
background-color: var(--xmlui-backgroundColor-even-HtmlTr);
|
|
6778
6833
|
}
|
|
6779
|
-
.
|
|
6834
|
+
._htmlTr_1wzn5_130:hover {
|
|
6780
6835
|
background-color: var(--xmlui-backgroundColor-HtmlTr--hover);
|
|
6781
6836
|
color: var(--xmlui-textColor-HtmlTr--hover);
|
|
6782
6837
|
}
|
|
6783
|
-
.
|
|
6838
|
+
._htmlTr_1wzn5_130:hover:not(:has(:not(th))) {
|
|
6784
6839
|
background-color: initial;
|
|
6785
6840
|
}
|
|
6786
6841
|
|
|
6787
|
-
.
|
|
6842
|
+
._htmlTd_1wzn5_167 {
|
|
6788
6843
|
background-color: var(--xmlui-backgroundColor-HtmlTd);
|
|
6789
6844
|
text-align: var(--xmlui-text-align-HtmlTd);
|
|
6790
6845
|
vertical-align: var(--xmlui-verticalAlign-HtmlTd);
|
|
@@ -6817,37 +6872,52 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
6817
6872
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)));
|
|
6818
6873
|
}
|
|
6819
6874
|
|
|
6820
|
-
.
|
|
6875
|
+
._htmlUl_1wzn5_200 {
|
|
6821
6876
|
margin-top: var(--xmlui-marginTop-HtmlUl);
|
|
6822
6877
|
margin-bottom: var(--xmlui-marginBottom-HtmlUl);
|
|
6823
6878
|
}
|
|
6824
6879
|
|
|
6825
|
-
.
|
|
6880
|
+
._htmlOl_1wzn5_205 {
|
|
6826
6881
|
margin-top: var(--xmlui-marginTop-HtmlOl);
|
|
6827
6882
|
margin-bottom: var(--xmlui-marginBottom-HtmlOl);
|
|
6828
6883
|
}
|
|
6829
6884
|
|
|
6830
|
-
li .
|
|
6831
|
-
li .
|
|
6885
|
+
li ._htmlUl_1wzn5_200,
|
|
6886
|
+
li ._htmlOl_1wzn5_205 {
|
|
6832
6887
|
margin-top: 0;
|
|
6833
6888
|
margin-bottom: 0;
|
|
6834
6889
|
}
|
|
6835
6890
|
|
|
6836
|
-
.
|
|
6837
|
-
.
|
|
6891
|
+
._htmlUl_1wzn5_200 li:has(> input[type=checkbox]),
|
|
6892
|
+
._htmlOl_1wzn5_205 li:has(> input[type=checkbox]) {
|
|
6838
6893
|
display: flex;
|
|
6839
6894
|
align-items: flex-start;
|
|
6840
6895
|
}
|
|
6841
|
-
.
|
|
6842
|
-
.
|
|
6896
|
+
._htmlUl_1wzn5_200 li:has(> input[type=checkbox]) > input[type=checkbox],
|
|
6897
|
+
._htmlOl_1wzn5_205 li:has(> input[type=checkbox]) > input[type=checkbox] {
|
|
6843
6898
|
margin-right: 8px;
|
|
6844
6899
|
margin-top: 4px;
|
|
6845
6900
|
flex-shrink: 0;
|
|
6846
6901
|
}
|
|
6847
6902
|
|
|
6848
|
-
.
|
|
6903
|
+
._htmlH1_1wzn5_228, ._htmlH2_1wzn5_228, ._htmlH3_1wzn5_228, ._htmlH4_1wzn5_228, ._htmlH5_1wzn5_228, ._htmlH6_1wzn5_228 {
|
|
6849
6904
|
margin-top: var(--xmlui-marginTop-HtmlHeading);
|
|
6850
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);
|
|
6851
6921
|
}/*
|
|
6852
6922
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6853
6923
|
*
|
|
@@ -7014,76 +7084,7 @@ li ._htmlOl_1snis_205 {
|
|
|
7014
7084
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7015
7085
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7016
7086
|
*/
|
|
7017
|
-
.
|
|
7018
|
-
width: 100%;
|
|
7019
|
-
height: 100%;
|
|
7020
|
-
overflow: auto;
|
|
7021
|
-
padding: 12px;
|
|
7022
|
-
--syntax-token-component: #cb5291;
|
|
7023
|
-
--syntax-token-delimiter-angle: #66748E;
|
|
7024
|
-
--syntax-token-attribute-name: #2d2d2d;
|
|
7025
|
-
--syntax-token-equal-sign: #2d2d2d;
|
|
7026
|
-
--syntax-token-string: #0074a9;
|
|
7027
|
-
--syntax-token-script: #02A1A1;
|
|
7028
|
-
--syntax-token-helper: #005AE1;
|
|
7029
|
-
--syntax-token-comment: #4E4E4E;
|
|
7030
|
-
--syntax-token-escape: #00B248;
|
|
7031
|
-
--syntax-token-constant: #708C00;
|
|
7032
|
-
--syntax-token-cdata: #079CF1;
|
|
7033
|
-
--syntax-token-delimiter-curly: #000000;
|
|
7034
|
-
--syntax-token-text: #4e5fb3;
|
|
7035
|
-
}
|
|
7036
|
-
._innerWrapper_x6hwk_13._dark_x6hwk_32 {
|
|
7037
|
-
--syntax-token-component: #f472b6;
|
|
7038
|
-
--syntax-token-delimiter-angle: #97A7C5;
|
|
7039
|
-
--syntax-token-attribute-name: #cbd5e1;
|
|
7040
|
-
--syntax-token-equal-sign: #cbd5e1;
|
|
7041
|
-
--syntax-token-string: #7dd3fc;
|
|
7042
|
-
--syntax-token-script: #78DBDB;
|
|
7043
|
-
--syntax-token-helper: #80A6F8;
|
|
7044
|
-
--syntax-token-comment: #CFCFCF;
|
|
7045
|
-
--syntax-token-escape: #61F69D;
|
|
7046
|
-
--syntax-token-constant: #BAF80A;
|
|
7047
|
-
--syntax-token-cdata: #5CC1F9;
|
|
7048
|
-
--syntax-token-delimiter-curly: #FFFFFF;
|
|
7049
|
-
--syntax-token-text: #f5f5ff;
|
|
7050
|
-
}
|
|
7051
|
-
._innerWrapper_x6hwk_13 > .shiki {
|
|
7052
|
-
background-color: transparent !important;
|
|
7053
|
-
}
|
|
7054
|
-
|
|
7055
|
-
._wrapper_x6hwk_51 {
|
|
7056
|
-
width: 100%;
|
|
7057
|
-
height: 100%;
|
|
7058
|
-
position: relative;
|
|
7059
|
-
overflow: auto;
|
|
7060
|
-
}
|
|
7061
|
-
|
|
7062
|
-
._copyButton_x6hwk_58 {
|
|
7063
|
-
position: absolute;
|
|
7064
|
-
top: 2px;
|
|
7065
|
-
right: 2px;
|
|
7066
|
-
border: none;
|
|
7067
|
-
padding: 4px;
|
|
7068
|
-
border-radius: 5px;
|
|
7069
|
-
cursor: pointer;
|
|
7070
|
-
display: flex;
|
|
7071
|
-
align-items: center;
|
|
7072
|
-
gap: 5px;
|
|
7073
|
-
transition: opacity 0.2s;
|
|
7074
|
-
}/*
|
|
7075
|
-
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7076
|
-
*
|
|
7077
|
-
* We use a subset of these CSS variables in themes.
|
|
7078
|
-
*/
|
|
7079
|
-
/*
|
|
7080
|
-
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7081
|
-
*/
|
|
7082
|
-
/*
|
|
7083
|
-
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7084
|
-
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7085
|
-
*/
|
|
7086
|
-
._wrapper_1f03i_13 {
|
|
7087
|
+
._wrapper_1buy3_13 {
|
|
7087
7088
|
z-index: 9999;
|
|
7088
7089
|
overflow: hidden;
|
|
7089
7090
|
box-shadow: 0 2px 6px 0 rgba(58, 57, 68, 0.4);
|
|
@@ -7094,32 +7095,32 @@ li ._htmlOl_1snis_205 {
|
|
|
7094
7095
|
border: 1px solid var(--xmlui-borderColor);
|
|
7095
7096
|
}
|
|
7096
7097
|
|
|
7097
|
-
.
|
|
7098
|
+
._actions_1buy3_24 {
|
|
7098
7099
|
display: inline-flex;
|
|
7099
7100
|
align-items: center;
|
|
7100
7101
|
justify-content: flex-end;
|
|
7101
7102
|
}
|
|
7102
7103
|
|
|
7103
|
-
.
|
|
7104
|
+
._tabs_1buy3_30 {
|
|
7104
7105
|
display: flex;
|
|
7105
7106
|
flex-direction: column;
|
|
7106
7107
|
background-color: var(--xmlui-backgroundColor);
|
|
7107
7108
|
}
|
|
7108
7109
|
|
|
7109
|
-
.
|
|
7110
|
+
._tabItems_1buy3_36 {
|
|
7110
7111
|
display: flex;
|
|
7111
7112
|
flex-direction: row;
|
|
7112
7113
|
}
|
|
7113
7114
|
|
|
7114
|
-
.
|
|
7115
|
+
._sideButtons_1buy3_41 {
|
|
7115
7116
|
display: flex;
|
|
7116
7117
|
}
|
|
7117
7118
|
|
|
7118
|
-
.
|
|
7119
|
+
._sideButton_1buy3_41 {
|
|
7119
7120
|
padding: 2px;
|
|
7120
7121
|
}
|
|
7121
7122
|
|
|
7122
|
-
.
|
|
7123
|
+
._menuItem_1buy3_49 {
|
|
7123
7124
|
width: 240px;
|
|
7124
7125
|
display: flex;
|
|
7125
7126
|
justify-content: space-between;
|
|
@@ -7129,7 +7130,7 @@ li ._htmlOl_1snis_205 {
|
|
|
7129
7130
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
7130
7131
|
}
|
|
7131
7132
|
|
|
7132
|
-
.
|
|
7133
|
+
._list_1buy3_59 {
|
|
7133
7134
|
padding: 0.2rem;
|
|
7134
7135
|
display: flex;
|
|
7135
7136
|
flex: 0 0 auto;
|
|
@@ -7139,18 +7140,19 @@ li ._htmlOl_1snis_205 {
|
|
|
7139
7140
|
border-bottom: 1px solid var(--xmlui-borderColor);
|
|
7140
7141
|
}
|
|
7141
7142
|
|
|
7142
|
-
.
|
|
7143
|
+
._menu_1buy3_49 {
|
|
7143
7144
|
position: relative;
|
|
7144
7145
|
z-index: 9999;
|
|
7145
7146
|
padding: var(--xmlui-space-1_5);
|
|
7146
7147
|
}
|
|
7147
7148
|
|
|
7148
|
-
.
|
|
7149
|
+
._content_1buy3_75 {
|
|
7149
7150
|
flex: 1;
|
|
7150
7151
|
position: relative;
|
|
7151
7152
|
overflow: auto;
|
|
7152
7153
|
}
|
|
7153
|
-
.
|
|
7154
|
+
._content_1buy3_75 ._copyButton_1buy3_80 {
|
|
7155
|
+
z-index: 9999;
|
|
7154
7156
|
position: absolute;
|
|
7155
7157
|
top: 16px;
|
|
7156
7158
|
right: 16px;
|
|
@@ -7163,8 +7165,13 @@ li ._htmlOl_1snis_205 {
|
|
|
7163
7165
|
gap: 5px;
|
|
7164
7166
|
transition: opacity 0.2s;
|
|
7165
7167
|
}
|
|
7166
|
-
.
|
|
7168
|
+
._content_1buy3_75:hover ._copyButton_1buy3_80 {
|
|
7167
7169
|
display: flex;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
7172
|
+
._xmluiEditor_1buy3_98 {
|
|
7173
|
+
height: 100%;
|
|
7174
|
+
width: 100%;
|
|
7168
7175
|
}/*
|
|
7169
7176
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7170
7177
|
*
|
|
@@ -7662,6 +7669,75 @@ li ._htmlOl_1snis_205 {
|
|
|
7662
7669
|
/*
|
|
7663
7670
|
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7664
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
|
+
*/
|
|
7665
7741
|
/*
|
|
7666
7742
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7667
7743
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|