@retailcrm/datalens-ui 0.2.4 → 0.2.6
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/index.css +587 -587
- package/package.json +1 -6
- package/public/i18n/data.json +2 -1
- package/public/i18n/{en.144c7612.js → en.01e3d689.js} +2 -1
- package/public/i18n/manifest.json +2 -2
- package/public/i18n/{ru.b7e6f7b0.js → ru.a9fbfe3a.js} +2 -1
- package/ui/capabilities/capabilities.d.ts +1 -0
- package/ui/capabilities/capabilities.js +5 -0
- package/ui/components/ActionPanel/ActionPanel.js +2 -1
- package/ui/components/AsideHeaderAdapter/AsideHeaderAdapter.js +9 -1
- package/ui/components/DashKit/helpers.js +4 -4
- package/ui/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.js +4 -1
- package/ui/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.js +3 -8
- package/ui/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.js +4 -3
- package/ui/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.js +4 -3
- package/ui/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.js +4 -3
- package/ui/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.js +4 -3
- package/ui/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.js +4 -3
- package/ui/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.js +18 -4
- package/ui/components/Navigation/Base/configure.d.ts +0 -20
- package/ui/components/Navigation/Base/configure.js +23 -23
- package/ui/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.d.ts +1 -1
- package/ui/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.js +32 -2
- package/ui/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.js +23 -2
- package/ui/libs/DatalensChartkit/menu/MenuItems.js +25 -17
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.js +23 -2
- package/ui/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.d.ts +1 -1
- package/ui/units/connections/components/ConnectorForm/components/FileInput/FileInput.d.ts +1 -1
- package/ui/units/connections/components/ConnectorForm/components/Input/Input.d.ts +1 -1
- package/ui/units/connections/components/ConnectorForm/components/Select/Select.d.ts +1 -1
- package/ui/units/dash/components/DashActionPanel/DashActionPanel.d.ts +2 -0
- package/ui/units/dash/components/DashActionPanel/DashActionPanel.js +36 -0
- package/ui/units/dash/components/DashActionPanel/ViewControls/ViewControls.d.ts +1 -0
- package/ui/units/dash/components/DashActionPanel/ViewControls/ViewControls.js +2 -1
- package/ui/units/dash/store/utils.js +2 -1
- package/ui/units/ql/containers/QL/QLActionPanel/QLActionPanel.js +26 -6
- package/ui/units/wizard/actions/widget.js +7 -1
- package/ui/units/wizard/containers/Wizard/Wizard.js +5 -3
- package/ui/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.js +48 -12
- package/ui/units/workbooks/store/actions/index.d.ts +1 -1
- package/ui/units/workbooks/store/actions/index.js +1 -7
- package/ui/utils/errors/errorByCode.d.ts +1 -0
- package/ui/utils/errors/errorByCode.js +97 -0
package/index.css
CHANGED
|
@@ -2536,117 +2536,430 @@
|
|
|
2536
2536
|
}
|
|
2537
2537
|
._tooltip-right__margin-bot {
|
|
2538
2538
|
margin-bottom: 7px;
|
|
2539
|
-
}.dl-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2539
|
+
}.dl-user-menu {
|
|
2540
|
+
background-color: var(--g-color-base-float);
|
|
2541
|
+
padding: var(--g-spacing-2);
|
|
2542
|
+
box-sizing: border-box;
|
|
2543
|
+
max-height: calc(100vh - 100px);
|
|
2544
|
+
width: 300px;
|
|
2545
2545
|
}
|
|
2546
|
-
.dl-
|
|
2547
|
-
|
|
2548
|
-
color: var(--dl-color-text-workbook-icon);
|
|
2549
|
-
}.entity-row {
|
|
2550
|
-
width: 100%;
|
|
2551
|
-
height: 28px;
|
|
2552
|
-
align-items: center;
|
|
2546
|
+
.dl-user-menu__entry {
|
|
2547
|
+
box-sizing: border-box;
|
|
2553
2548
|
display: flex;
|
|
2549
|
+
align-items: flex-start;
|
|
2554
2550
|
justify-content: space-between;
|
|
2555
|
-
padding
|
|
2551
|
+
padding: var(--g-spacing-2);
|
|
2552
|
+
text-decoration: none;
|
|
2556
2553
|
}
|
|
2557
|
-
.
|
|
2554
|
+
.dl-user-menu__entry-content {
|
|
2555
|
+
flex: auto;
|
|
2556
|
+
min-width: 0;
|
|
2557
|
+
}
|
|
2558
|
+
.dl-user-menu__entry-actions {
|
|
2558
2559
|
white-space: nowrap;
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2560
|
+
}
|
|
2561
|
+
.dl-user-menu__entry-button {
|
|
2562
|
+
margin-inline-start: var(--g-spacing-1);
|
|
2563
|
+
}
|
|
2564
|
+
.dl-user-menu__user {
|
|
2562
2565
|
display: flex;
|
|
2563
|
-
align-items: center;
|
|
2564
2566
|
}
|
|
2565
|
-
.
|
|
2567
|
+
.dl-user-menu__user-info {
|
|
2566
2568
|
font-family: var(--g-text-body-font-family);
|
|
2567
2569
|
font-weight: var(--g-text-body-font-weight);
|
|
2568
|
-
font-size: var(--g-text-body-
|
|
2569
|
-
line-height: var(--g-text-body-
|
|
2570
|
+
font-size: var(--g-text-body-short-font-size);
|
|
2571
|
+
line-height: var(--g-text-body-short-line-height);
|
|
2572
|
+
display: flex;
|
|
2573
|
+
flex: auto;
|
|
2574
|
+
flex-direction: column;
|
|
2575
|
+
min-width: 0;
|
|
2576
|
+
margin-left: var(--g-spacing-3);
|
|
2577
|
+
align-items: flex-start;
|
|
2578
|
+
justify-content: center;
|
|
2579
|
+
}
|
|
2580
|
+
.dl-user-menu__user-name, .dl-user-menu__user-description {
|
|
2570
2581
|
white-space: nowrap;
|
|
2571
2582
|
overflow: hidden;
|
|
2572
2583
|
text-overflow: ellipsis;
|
|
2573
|
-
|
|
2584
|
+
max-width: 100%;
|
|
2574
2585
|
}
|
|
2575
|
-
.
|
|
2576
|
-
|
|
2577
|
-
overflow: hidden;
|
|
2578
|
-
display: flex;
|
|
2579
|
-
align-items: center;
|
|
2586
|
+
.dl-user-menu__user-description {
|
|
2587
|
+
color: var(--g-color-text-secondary);
|
|
2580
2588
|
}
|
|
2581
|
-
.
|
|
2589
|
+
.dl-user-menu__user-avatar {
|
|
2582
2590
|
flex-shrink: 0;
|
|
2583
|
-
width: 18px;
|
|
2584
|
-
height: 18px;
|
|
2585
2591
|
}
|
|
2586
|
-
.
|
|
2587
|
-
margin-
|
|
2588
|
-
|
|
2589
|
-
|
|
2592
|
+
.dl-user-menu__user-label {
|
|
2593
|
+
margin-top: var(--g-spacing-1);
|
|
2594
|
+
width: auto;
|
|
2595
|
+
max-width: 100%;
|
|
2596
|
+
}.g-root {
|
|
2597
|
+
--dl-navigation-breadcrumbs-height: 28px;
|
|
2598
|
+
--dl-revision-panel-top-offset: 40px;
|
|
2599
|
+
--dl-color-border: var(--g-color-line-generic);
|
|
2600
|
+
--dl-color-border-solid: var(--g-color-line-generic-solid);
|
|
2601
|
+
--dl-color-progress-bar: var(--g-color-text-info);
|
|
2602
|
+
--dl-color-progress-bar-failed: var(--g-color-base-danger-heavy);
|
|
2603
|
+
--dl-color-field-dimenson: var(--g-color-base-positive-light);
|
|
2604
|
+
--dl-color-field-dimenson-hover: var(--g-color-base-positive-light-hover);
|
|
2605
|
+
--dl-color-field-measure: var(--g-color-base-info-light);
|
|
2606
|
+
--dl-color-field-measure-hover: var(--g-color-base-info-light-hover);
|
|
2607
|
+
--dl-color-field-dimenson-solid: var(--g-color-text-positive);
|
|
2608
|
+
--dl-color-field-measure-solid: var(--g-color-text-info);
|
|
2609
|
+
--dl-color-entity-chart-wizard: #5282ff;
|
|
2610
|
+
--dl-color-entity-chart-ql: #9f6fee;
|
|
2611
|
+
--dl-color-entity-chart-editor: #e18c1e;
|
|
2612
|
+
--dl-color-entity-connection: #9a32a6;
|
|
2613
|
+
--dl-color-entity-dataset: #0abe05;
|
|
2614
|
+
--dl-color-entity-dashboard: #ff8c3c;
|
|
2615
|
+
--dl-color-widget-background: var(--g-color-base-float);
|
|
2616
|
+
--dl-widget-border-radius: 20px;
|
|
2617
|
+
--dl-color-text-workbook-icon: var(--g-color-text-dark-primary);
|
|
2618
|
+
--dl-viz-icon-main-color: #3d97f2;
|
|
2619
|
+
--dl-viz-icon-secondary-color: #ff6a59;
|
|
2590
2620
|
}
|
|
2591
|
-
.
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2621
|
+
.g-root_theme_light {
|
|
2622
|
+
--g-color-private-cool-grey-20-solid: rgb(245, 246, 247);
|
|
2623
|
+
--ds-color-relation-line: #d9d9d9;
|
|
2624
|
+
--ds-color-avatar: #ededed;
|
|
2625
|
+
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
2626
|
+
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
2627
|
+
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
2628
|
+
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
2629
|
+
--dl-color-base-workbook-icon: #d1dfff;
|
|
2630
|
+
--dl-filter-ymap-background: none;
|
|
2631
|
+
--dl-filter-ymap-heatmap: none;
|
|
2632
|
+
--dl-color-ymap-background: #fafafa;
|
|
2633
|
+
--dl-filter-zoom-control: none;
|
|
2634
|
+
--dl-color-dashboard-background: var(--g-color-private-cool-grey-20-solid);
|
|
2635
|
+
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-100-solid);
|
|
2596
2636
|
}
|
|
2597
|
-
.
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2637
|
+
.g-root_theme_light-hc {
|
|
2638
|
+
--ds-color-relation-line: #d9d9d9;
|
|
2639
|
+
--ds-color-avatar: #ededed;
|
|
2640
|
+
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
2641
|
+
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
2642
|
+
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
2643
|
+
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
2644
|
+
--dl-color-base-workbook-icon: #a8c3ff;
|
|
2645
|
+
--dl-filter-ymap-background: none;
|
|
2646
|
+
--dl-filter-ymap-heatmap: none;
|
|
2647
|
+
--dl-color-ymap-background: #fafafa;
|
|
2648
|
+
--dl-filter-zoom-control: none;
|
|
2649
|
+
--dl-color-dashboard-background: var(--g-color-private-cool-grey-50-solid);
|
|
2650
|
+
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-150-solid);
|
|
2601
2651
|
}
|
|
2602
|
-
.
|
|
2603
|
-
|
|
2604
|
-
|
|
2652
|
+
.g-root_theme_dark {
|
|
2653
|
+
--g-color-private-white-20-solid: rgb(49, 48, 55);
|
|
2654
|
+
--ds-color-relation-line: #4c4b51;
|
|
2655
|
+
--ds-color-avatar: #3b3a41;
|
|
2656
|
+
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
2657
|
+
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
2658
|
+
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
2659
|
+
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
2660
|
+
--dl-color-base-workbook-icon: #c2d0f0;
|
|
2661
|
+
--dl-filter-ymap-background: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
2662
|
+
--dl-filter-ymap-heatmap: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
2663
|
+
--dl-color-ymap-background: transparent;
|
|
2664
|
+
--dl-filter-zoom-control: invert(1);
|
|
2665
|
+
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
2666
|
+
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
2605
2667
|
}
|
|
2606
|
-
.
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2668
|
+
.g-root_theme_dark-hc {
|
|
2669
|
+
--g-color-private-white-20-solid: rgb(38, 39, 42);
|
|
2670
|
+
--ds-color-relation-line: #4c4b51;
|
|
2671
|
+
--ds-color-avatar: #3b3a41;
|
|
2672
|
+
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
2673
|
+
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
2674
|
+
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
2675
|
+
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
2676
|
+
--dl-color-base-workbook-icon: #c0d3fd;
|
|
2677
|
+
--dl-filter-ymap-background: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
2678
|
+
--dl-filter-ymap-heatmap: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
2679
|
+
--dl-color-ymap-background: transparent;
|
|
2680
|
+
--dl-filter-zoom-control: invert(1);
|
|
2681
|
+
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
2682
|
+
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
2613
2683
|
}
|
|
2614
|
-
|
|
2684
|
+
|
|
2685
|
+
@keyframes pulseAnimation {
|
|
2686
|
+
0% {
|
|
2687
|
+
opacity: 0.65;
|
|
2688
|
+
}
|
|
2689
|
+
50% {
|
|
2690
|
+
opacity: 0.35;
|
|
2691
|
+
}
|
|
2692
|
+
100% {
|
|
2693
|
+
opacity: 0.65;
|
|
2694
|
+
}
|
|
2695
|
+
}
|
|
2696
|
+
.aside-header-logo-text__title {
|
|
2615
2697
|
font-family: var(--g-text-subheader-font-family);
|
|
2616
2698
|
font-weight: var(--g-text-subheader-font-weight);
|
|
2617
|
-
font-size: var(--g-text-subheader-
|
|
2618
|
-
line-height: var(--g-text-subheader-
|
|
2619
|
-
margin-bottom: var(--g-spacing-1);
|
|
2620
|
-
}
|
|
2621
|
-
.entity-link__row {
|
|
2622
|
-
height: 34px;
|
|
2623
|
-
padding-left: 0;
|
|
2624
|
-
}.dl-shared-entry-icon {
|
|
2625
|
-
width: 20px;
|
|
2626
|
-
height: 20px;
|
|
2627
|
-
display: flex;
|
|
2628
|
-
justify-content: center;
|
|
2629
|
-
align-items: center;
|
|
2630
|
-
color: var(--g-color-text-complementary);
|
|
2631
|
-
border-radius: 6px;
|
|
2632
|
-
border: 1px solid var(--g-color-line-generic);
|
|
2633
|
-
}.dl-permission-button {
|
|
2634
|
-
position: relative;
|
|
2635
|
-
}
|
|
2636
|
-
.dl-permission-button__content-container {
|
|
2637
|
-
display: flex;
|
|
2638
|
-
gap: var(--g-spacing-3);
|
|
2639
|
-
padding: var(--g-spacing-4);
|
|
2640
|
-
border-radius: var(--g-border-radius-l);
|
|
2641
|
-
}
|
|
2642
|
-
.dl-permission-button__content-container_disabled {
|
|
2643
|
-
color: var(--g-color-text-secondary);
|
|
2644
|
-
background-color: var(--g-color-base-generic);
|
|
2699
|
+
font-size: var(--g-text-subheader-2-font-size);
|
|
2700
|
+
line-height: var(--g-text-subheader-2-line-height);
|
|
2645
2701
|
}
|
|
2646
|
-
.
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2702
|
+
.aside-header-logo-text__installation-info {
|
|
2703
|
+
font-size: 10px;
|
|
2704
|
+
line-height: 15px;
|
|
2705
|
+
font-weight: bold;
|
|
2706
|
+
letter-spacing: 0.7px;
|
|
2707
|
+
text-transform: uppercase;
|
|
2708
|
+
width: fit-content;
|
|
2709
|
+
}.g-root {
|
|
2710
|
+
--dl-navigation-breadcrumbs-height: 28px;
|
|
2711
|
+
--dl-revision-panel-top-offset: 40px;
|
|
2712
|
+
--dl-color-border: var(--g-color-line-generic);
|
|
2713
|
+
--dl-color-border-solid: var(--g-color-line-generic-solid);
|
|
2714
|
+
--dl-color-progress-bar: var(--g-color-text-info);
|
|
2715
|
+
--dl-color-progress-bar-failed: var(--g-color-base-danger-heavy);
|
|
2716
|
+
--dl-color-field-dimenson: var(--g-color-base-positive-light);
|
|
2717
|
+
--dl-color-field-dimenson-hover: var(--g-color-base-positive-light-hover);
|
|
2718
|
+
--dl-color-field-measure: var(--g-color-base-info-light);
|
|
2719
|
+
--dl-color-field-measure-hover: var(--g-color-base-info-light-hover);
|
|
2720
|
+
--dl-color-field-dimenson-solid: var(--g-color-text-positive);
|
|
2721
|
+
--dl-color-field-measure-solid: var(--g-color-text-info);
|
|
2722
|
+
--dl-color-entity-chart-wizard: #5282ff;
|
|
2723
|
+
--dl-color-entity-chart-ql: #9f6fee;
|
|
2724
|
+
--dl-color-entity-chart-editor: #e18c1e;
|
|
2725
|
+
--dl-color-entity-connection: #9a32a6;
|
|
2726
|
+
--dl-color-entity-dataset: #0abe05;
|
|
2727
|
+
--dl-color-entity-dashboard: #ff8c3c;
|
|
2728
|
+
--dl-color-widget-background: var(--g-color-base-float);
|
|
2729
|
+
--dl-widget-border-radius: 20px;
|
|
2730
|
+
--dl-color-text-workbook-icon: var(--g-color-text-dark-primary);
|
|
2731
|
+
--dl-viz-icon-main-color: #3d97f2;
|
|
2732
|
+
--dl-viz-icon-secondary-color: #ff6a59;
|
|
2733
|
+
}
|
|
2734
|
+
.g-root_theme_light {
|
|
2735
|
+
--g-color-private-cool-grey-20-solid: rgb(245, 246, 247);
|
|
2736
|
+
--ds-color-relation-line: #d9d9d9;
|
|
2737
|
+
--ds-color-avatar: #ededed;
|
|
2738
|
+
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
2739
|
+
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
2740
|
+
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
2741
|
+
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
2742
|
+
--dl-color-base-workbook-icon: #d1dfff;
|
|
2743
|
+
--dl-filter-ymap-background: none;
|
|
2744
|
+
--dl-filter-ymap-heatmap: none;
|
|
2745
|
+
--dl-color-ymap-background: #fafafa;
|
|
2746
|
+
--dl-filter-zoom-control: none;
|
|
2747
|
+
--dl-color-dashboard-background: var(--g-color-private-cool-grey-20-solid);
|
|
2748
|
+
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-100-solid);
|
|
2749
|
+
}
|
|
2750
|
+
.g-root_theme_light-hc {
|
|
2751
|
+
--ds-color-relation-line: #d9d9d9;
|
|
2752
|
+
--ds-color-avatar: #ededed;
|
|
2753
|
+
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
2754
|
+
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
2755
|
+
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
2756
|
+
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
2757
|
+
--dl-color-base-workbook-icon: #a8c3ff;
|
|
2758
|
+
--dl-filter-ymap-background: none;
|
|
2759
|
+
--dl-filter-ymap-heatmap: none;
|
|
2760
|
+
--dl-color-ymap-background: #fafafa;
|
|
2761
|
+
--dl-filter-zoom-control: none;
|
|
2762
|
+
--dl-color-dashboard-background: var(--g-color-private-cool-grey-50-solid);
|
|
2763
|
+
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-150-solid);
|
|
2764
|
+
}
|
|
2765
|
+
.g-root_theme_dark {
|
|
2766
|
+
--g-color-private-white-20-solid: rgb(49, 48, 55);
|
|
2767
|
+
--ds-color-relation-line: #4c4b51;
|
|
2768
|
+
--ds-color-avatar: #3b3a41;
|
|
2769
|
+
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
2770
|
+
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
2771
|
+
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
2772
|
+
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
2773
|
+
--dl-color-base-workbook-icon: #c2d0f0;
|
|
2774
|
+
--dl-filter-ymap-background: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
2775
|
+
--dl-filter-ymap-heatmap: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
2776
|
+
--dl-color-ymap-background: transparent;
|
|
2777
|
+
--dl-filter-zoom-control: invert(1);
|
|
2778
|
+
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
2779
|
+
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
2780
|
+
}
|
|
2781
|
+
.g-root_theme_dark-hc {
|
|
2782
|
+
--g-color-private-white-20-solid: rgb(38, 39, 42);
|
|
2783
|
+
--ds-color-relation-line: #4c4b51;
|
|
2784
|
+
--ds-color-avatar: #3b3a41;
|
|
2785
|
+
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
2786
|
+
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
2787
|
+
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
2788
|
+
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
2789
|
+
--dl-color-base-workbook-icon: #c0d3fd;
|
|
2790
|
+
--dl-filter-ymap-background: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
2791
|
+
--dl-filter-ymap-heatmap: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
2792
|
+
--dl-color-ymap-background: transparent;
|
|
2793
|
+
--dl-filter-zoom-control: invert(1);
|
|
2794
|
+
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
2795
|
+
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
@keyframes pulseAnimation {
|
|
2799
|
+
0% {
|
|
2800
|
+
opacity: 0.65;
|
|
2801
|
+
}
|
|
2802
|
+
50% {
|
|
2803
|
+
opacity: 0.35;
|
|
2804
|
+
}
|
|
2805
|
+
100% {
|
|
2806
|
+
opacity: 0.65;
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
.dl-aside-header__item-link, .dl-aside-header__item-link:hover, .dl-aside-header__item-link:active, .dl-aside-header__item-link:visited, .dl-aside-header__item-link:focus {
|
|
2810
|
+
text-decoration: none;
|
|
2811
|
+
outline: none;
|
|
2812
|
+
color: inherit;
|
|
2813
|
+
}
|
|
2814
|
+
.dl-aside-header__item-link {
|
|
2815
|
+
display: flex;
|
|
2816
|
+
height: 40px;
|
|
2817
|
+
width: 100%;
|
|
2818
|
+
align-items: center;
|
|
2819
|
+
}
|
|
2820
|
+
.dl-aside-header__item-wrap {
|
|
2821
|
+
display: flex;
|
|
2822
|
+
width: 100%;
|
|
2823
|
+
height: 100%;
|
|
2824
|
+
align-items: center;
|
|
2825
|
+
}
|
|
2826
|
+
.dl-aside-header__logo, .dl-aside-header__logo:hover, .dl-aside-header__logo:active, .dl-aside-header__logo:visited, .dl-aside-header__logo:focus {
|
|
2827
|
+
text-decoration: none;
|
|
2828
|
+
outline: none;
|
|
2829
|
+
color: inherit;
|
|
2830
|
+
}
|
|
2831
|
+
.dl-aside-header__docs-link, .dl-aside-header__info-btn {
|
|
2832
|
+
align-items: center;
|
|
2833
|
+
box-sizing: border-box;
|
|
2834
|
+
display: flex;
|
|
2835
|
+
flex-grow: 1;
|
|
2836
|
+
height: 100%;
|
|
2837
|
+
padding: 8px 16px;
|
|
2838
|
+
text-decoration: none;
|
|
2839
|
+
color: var(--g-color-text-primary);
|
|
2840
|
+
}
|
|
2841
|
+
.dl-aside-header_hidden .gn-aside-header__aside {
|
|
2842
|
+
display: none;
|
|
2843
|
+
}
|
|
2844
|
+
.dl-aside-header_hidden .gn-aside-header__pane-container {
|
|
2845
|
+
height: 100%;
|
|
2846
|
+
}
|
|
2847
|
+
.dl-aside-header_hidden .gn-aside-header__content {
|
|
2848
|
+
width: 100%;
|
|
2849
|
+
}
|
|
2850
|
+
.dl-aside-header .gn-settings-menu__item-icon {
|
|
2851
|
+
color: var(--gn-aside-header-item-icon-color);
|
|
2852
|
+
}.dl-workbook-icon {
|
|
2853
|
+
display: flex;
|
|
2854
|
+
align-items: center;
|
|
2855
|
+
justify-content: center;
|
|
2856
|
+
background-color: var(--dl-color-base-workbook-icon);
|
|
2857
|
+
text-transform: uppercase;
|
|
2858
|
+
}
|
|
2859
|
+
.dl-workbook-icon__letters {
|
|
2860
|
+
text-align: center;
|
|
2861
|
+
color: var(--dl-color-text-workbook-icon);
|
|
2862
|
+
}.entity-row {
|
|
2863
|
+
width: 100%;
|
|
2864
|
+
height: 28px;
|
|
2865
|
+
align-items: center;
|
|
2866
|
+
display: flex;
|
|
2867
|
+
justify-content: space-between;
|
|
2868
|
+
padding-left: 4px;
|
|
2869
|
+
}
|
|
2870
|
+
.entity-row__text-block {
|
|
2871
|
+
white-space: nowrap;
|
|
2872
|
+
overflow: hidden;
|
|
2873
|
+
text-overflow: ellipsis;
|
|
2874
|
+
overflow: hidden;
|
|
2875
|
+
display: flex;
|
|
2876
|
+
align-items: center;
|
|
2877
|
+
}
|
|
2878
|
+
.entity-row__name {
|
|
2879
|
+
font-family: var(--g-text-body-font-family);
|
|
2880
|
+
font-weight: var(--g-text-body-font-weight);
|
|
2881
|
+
font-size: var(--g-text-body-1-font-size);
|
|
2882
|
+
line-height: var(--g-text-body-1-line-height);
|
|
2883
|
+
white-space: nowrap;
|
|
2884
|
+
overflow: hidden;
|
|
2885
|
+
text-overflow: ellipsis;
|
|
2886
|
+
margin-left: 10px;
|
|
2887
|
+
}
|
|
2888
|
+
.entity-row__entity {
|
|
2889
|
+
margin-right: 10px;
|
|
2890
|
+
overflow: hidden;
|
|
2891
|
+
display: flex;
|
|
2892
|
+
align-items: center;
|
|
2893
|
+
}
|
|
2894
|
+
.entity-row__icon {
|
|
2895
|
+
flex-shrink: 0;
|
|
2896
|
+
width: 18px;
|
|
2897
|
+
height: 18px;
|
|
2898
|
+
}
|
|
2899
|
+
.entity-row__workbook-relations {
|
|
2900
|
+
margin-left: 8px;
|
|
2901
|
+
padding-left: 4px;
|
|
2902
|
+
border-left: 1px solid var(--g-color-line-generic);
|
|
2903
|
+
}
|
|
2904
|
+
.entity-row__right-block {
|
|
2905
|
+
flex-shrink: 0;
|
|
2906
|
+
width: 50%;
|
|
2907
|
+
display: grid;
|
|
2908
|
+
grid-template-columns: 4fr 3fr auto;
|
|
2909
|
+
}
|
|
2910
|
+
.entity-row__delegation-status {
|
|
2911
|
+
display: flex;
|
|
2912
|
+
align-items: center;
|
|
2913
|
+
gap: 6px;
|
|
2914
|
+
}
|
|
2915
|
+
.entity-row__delegation-status-icon {
|
|
2916
|
+
flex-shrink: 0;
|
|
2917
|
+
color: var(--g-color-text-secondary);
|
|
2918
|
+
}
|
|
2919
|
+
.entity-row__notice {
|
|
2920
|
+
max-width: 250px;
|
|
2921
|
+
}.entity-link {
|
|
2922
|
+
width: 100%;
|
|
2923
|
+
display: flex;
|
|
2924
|
+
flex-direction: column;
|
|
2925
|
+
overflow: hidden;
|
|
2926
|
+
}
|
|
2927
|
+
.entity-link__title {
|
|
2928
|
+
font-family: var(--g-text-subheader-font-family);
|
|
2929
|
+
font-weight: var(--g-text-subheader-font-weight);
|
|
2930
|
+
font-size: var(--g-text-subheader-1-font-size);
|
|
2931
|
+
line-height: var(--g-text-subheader-1-line-height);
|
|
2932
|
+
margin-bottom: var(--g-spacing-1);
|
|
2933
|
+
}
|
|
2934
|
+
.entity-link__row {
|
|
2935
|
+
height: 34px;
|
|
2936
|
+
padding-left: 0;
|
|
2937
|
+
}.dl-shared-entry-icon {
|
|
2938
|
+
width: 20px;
|
|
2939
|
+
height: 20px;
|
|
2940
|
+
display: flex;
|
|
2941
|
+
justify-content: center;
|
|
2942
|
+
align-items: center;
|
|
2943
|
+
color: var(--g-color-text-complementary);
|
|
2944
|
+
border-radius: 6px;
|
|
2945
|
+
border: 1px solid var(--g-color-line-generic);
|
|
2946
|
+
}.dl-permission-button {
|
|
2947
|
+
position: relative;
|
|
2948
|
+
}
|
|
2949
|
+
.dl-permission-button__content-container {
|
|
2950
|
+
display: flex;
|
|
2951
|
+
gap: var(--g-spacing-3);
|
|
2952
|
+
padding: var(--g-spacing-4);
|
|
2953
|
+
border-radius: var(--g-border-radius-l);
|
|
2954
|
+
}
|
|
2955
|
+
.dl-permission-button__content-container_disabled {
|
|
2956
|
+
color: var(--g-color-text-secondary);
|
|
2957
|
+
background-color: var(--g-color-base-generic);
|
|
2958
|
+
}
|
|
2959
|
+
.dl-permission-button__content {
|
|
2960
|
+
display: flex;
|
|
2961
|
+
flex-direction: column;
|
|
2962
|
+
gap: var(--g-spacing-1);
|
|
2650
2963
|
}
|
|
2651
2964
|
.dl-permission-button__status-icon-container {
|
|
2652
2965
|
display: flex;
|
|
@@ -5670,456 +5983,49 @@
|
|
|
5670
5983
|
opacity: 1;
|
|
5671
5984
|
transform: translateY(0);
|
|
5672
5985
|
}
|
|
5673
|
-
}.inline_code_tooltip {
|
|
5674
|
-
position: absolute;
|
|
5675
|
-
z-index: 100;
|
|
5676
|
-
visibility: hidden;
|
|
5677
|
-
opacity: 0;
|
|
5678
|
-
padding: 10px;
|
|
5679
|
-
background-color: var(--yfm-color-term-dfn-background);
|
|
5680
|
-
font-size: inherit;
|
|
5681
|
-
line-height: inherit;
|
|
5682
|
-
font-style: normal;
|
|
5683
|
-
border-radius: 4px;
|
|
5684
|
-
box-shadow: 0 8px 20px var(--yfm-color-term-dfn-shadow);
|
|
5685
|
-
outline: none;
|
|
5686
|
-
width: -moz-fit-content;
|
|
5687
|
-
width: fit-content;
|
|
5688
|
-
max-width: 450px;
|
|
5689
|
-
}@media screen and (max-width: 600px) {
|
|
5690
|
-
.inline_code_tooltip {
|
|
5691
|
-
max-width: 80%;
|
|
5692
|
-
}
|
|
5693
|
-
}.inline_code_tooltip::before {
|
|
5694
|
-
content: "";
|
|
5695
|
-
position: absolute;
|
|
5696
|
-
z-index: -1;
|
|
5697
|
-
inset: 0;
|
|
5698
|
-
border-radius: inherit;
|
|
5699
|
-
box-shadow: 0 0 0 1px var(--yfm-color-term-dfn-pseudo-shadow);
|
|
5700
|
-
}.inline_code_tooltip.open {
|
|
5701
|
-
visibility: visible;
|
|
5702
|
-
animation-name: popup;
|
|
5703
|
-
animation-duration: 0.1s;
|
|
5704
|
-
animation-timing-function: ease-out;
|
|
5705
|
-
animation-fill-mode: forwards;
|
|
5706
|
-
}@keyframes popup {
|
|
5707
|
-
0% {
|
|
5708
|
-
opacity: 0;
|
|
5709
|
-
transform: translateY(10px);
|
|
5710
|
-
}
|
|
5711
|
-
100% {
|
|
5712
|
-
opacity: 1;
|
|
5713
|
-
transform: translateY(0);
|
|
5714
|
-
}
|
|
5715
|
-
}details.yfm-cut>.yfm-cut-content{display:block}.yfm-cut{transition:all .15s;margin-bottom:15px}.yfm-cut.cut-highlight{background-clip:content-box;box-shadow:0 3px 0 7px var(--g-color-base-simple-hover);background-color:var(--g-color-base-simple-hover);border-radius:3px}.yfm-cut-title{list-style:none;cursor:pointer;position:relative;padding:5px 0 5px 30px}.yfm-cut-title::-webkit-details-marker{display:none}.yfm-cut-title:before{content:"";z-index:1;left:0;top:50%;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgICA8cGF0aCBzdHJva2U9ImN1cnJlbnRDb2xvciIgZmlsbD0ibm9uZSIgZD0iTTMgNmw1IDUgNS01Ii8+Cjwvc3ZnPgo=);transform:translateY(-50%) rotate(-90deg);transition:transform .3s ease;height:20px;width:20px;position:absolute}.yfm-cut-content{overflow:auto;padding:5px 0 15px 30px}.yfm-cut[open]>.yfm-cut-title:before{transform:translateY(-50%)}.yfm-tabs{margin-bottom:15px}.yfm-tab-list{display:flex;flex-wrap:wrap;margin-bottom:15px;border-bottom:1px solid rgba(0,0,0,.07)}.yfm-tab{margin-bottom:-1px;margin-right:20px;border-bottom:2px solid transparent;padding:6px 0 7px;font-weight:700;outline:none;cursor:pointer;user-select:none;white-space:break-spaces}.yfm-tab:last-child{margin-right:0}.yfm-tab:hover,.yfm-tab:active{color:#004080}.yfm-tab.active{border-bottom-color:#027bf3}.yfm-tab:focus{outline:2px solid #4d90fe;border-radius:2px}.yfm-tab:focus:not(:focus-visible){outline:0}.yfm-tab-panel{position:relative;visibility:hidden;overflow:hidden;height:0}.yfm-tab-panel:first-child{margin-top:0!important}.yfm-tab-panel:last-child{margin-bottom:0!important}.yfm-tab-panel.active{visibility:visible;overflow:visible;height:auto}.yfm-tabs-dropdown{position:relative;width:90%;margin-bottom:0;--yfm-tabs-dropdown-color: #F2F2F2;--yfm-tabs-dropdown-text-color: #A8A8A8;--yfm-tabs-dropdown-color-border: #CCC}.yfm-tabs-dropdown .yfm-tabs-dropdown-select{padding:10px 30px 10px 10px;background:var(--g-color-base-background);border:1px solid var(--yfm-tabs-dropdown-color-border);color:var(--yfm-tabs-dropdown-text-color);border-radius:5px;position:relative;user-select:none;margin-bottom:10px;max-width:500px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;z-index:10}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.filled{color:inherit}.yfm-tabs-dropdown .yfm-tabs-dropdown-select:after{content:"";position:absolute;display:block;right:10px;top:25%;transform:rotate(90deg);transition:transform .2s;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIGQ9Im0zIDYgNSA1IDUtNSIvPjwvc3ZnPg==);width:20px;height:20px}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.active+.yfm-tabs-dropdown-menu{transform:scaleY(1)}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.active:after{transform:rotate(0)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu{width:100%;max-width:500px;max-height:500px;overflow-y:scroll;padding:10px 0;position:absolute;z-index:10;display:flex;flex-direction:column;border:1px solid var(--yfm-tabs-dropdown-color-border);border-radius:5px;background-color:var(--g-color-base-background);transform:scaleY(0);list-style:none;z-index:100;transition:transform 125ms;transform-origin:top center}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li{user-select:none;cursor:pointer;background-color:var(--g-color-base-background)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li:hover{background-color:var(--g-color-base-simple-hover);color:inherit}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab{padding:5px 0 5px 10px;border-radius:0;border-bottom:unset;margin:0;font-weight:500}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab.active{background-color:var(--g-color-base-selection)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab:hover{color:inherit}.yfm-tabs-dropdown>.yfm-tab-panel.active{border:1px solid #F2F2F2;transform:translateY(-30px);border-radius:12px;padding:40px 12px 16px}.yfm-tabs-dropdown>.yfm-tabs{width:100%}.yfm-tabs-accordion{max-width:80%}.yfm-tabs-accordion>.yfm-tab:first-of-type{border-top-color:transparent}.yfm-tabs-accordion .yfm-tab{padding:8px 0 12px 6px;position:relative;border-top:1px solid #E5E5E5;font-weight:500;scroll-margin-top:20px}.yfm-tabs-accordion .yfm-tab:after{content:"";position:absolute;display:block;right:10px;top:25%;transform:rotate(-180deg);transition:transform .3s,background-color .2s;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIGQ9Im0zIDYgNSA1IDUtNSIvPjwvc3ZnPg==);width:20px;height:20px;border-radius:6px;padding:6px}.yfm-tabs-accordion .yfm-tab.active{border-bottom-color:transparent!important;font-weight:700}.yfm-tabs-accordion .yfm-tab.active:after{transform:rotate(0)}.yfm-tabs-accordion .yfm-tab:hover{color:#3f5799}.yfm-tabs-accordion .yfm-tab-panel.active{margin:10px 0 25px 6px}.yfm-tabs-vertical>.yfm-tab-list{flex-direction:column;border-bottom:unset}.yfm-tabs-vertical>.yfm-tab-panel{margin-left:30px}.yfm-tabs-vertical>.yfm-tab-group{display:flex;flex-direction:row;margin-bottom:5px}.yfm-tabs-vertical .yfm-vertical-tab>input[type=radio]{visibility:hidden;width:0;height:0}.yfm-tabs-vertical .yfm-vertical-tab>label{display:inline-block;cursor:pointer;position:relative;padding-left:25px;margin-right:0;line-height:18px;user-select:none}.yfm-tabs-vertical .yfm-vertical-tab>label:before{font-family:initial!important;content:"";position:absolute;left:0;bottom:1px;border-radius:50%;width:18px;height:18px;border:#dfdfdf 1px solid;background-color:#fff}.yfm-tabs-vertical .yfm-vertical-tab input[type=radio]:checked+label:before{content:"\2022";background-color:#5282ff;text-align:center;vertical-align:middle;font-size:20px;white-space:pre;display:inline-flex;justify-content:center;align-items:center;color:#fff}.yfm-tabs-vertical .yfm-vertical-tab{border-bottom:unset!important}.g-root {
|
|
5716
|
-
--dl-navigation-breadcrumbs-height: 28px;
|
|
5717
|
-
--dl-revision-panel-top-offset: 40px;
|
|
5718
|
-
--dl-color-border: var(--g-color-line-generic);
|
|
5719
|
-
--dl-color-border-solid: var(--g-color-line-generic-solid);
|
|
5720
|
-
--dl-color-progress-bar: var(--g-color-text-info);
|
|
5721
|
-
--dl-color-progress-bar-failed: var(--g-color-base-danger-heavy);
|
|
5722
|
-
--dl-color-field-dimenson: var(--g-color-base-positive-light);
|
|
5723
|
-
--dl-color-field-dimenson-hover: var(--g-color-base-positive-light-hover);
|
|
5724
|
-
--dl-color-field-measure: var(--g-color-base-info-light);
|
|
5725
|
-
--dl-color-field-measure-hover: var(--g-color-base-info-light-hover);
|
|
5726
|
-
--dl-color-field-dimenson-solid: var(--g-color-text-positive);
|
|
5727
|
-
--dl-color-field-measure-solid: var(--g-color-text-info);
|
|
5728
|
-
--dl-color-entity-chart-wizard: #5282ff;
|
|
5729
|
-
--dl-color-entity-chart-ql: #9f6fee;
|
|
5730
|
-
--dl-color-entity-chart-editor: #e18c1e;
|
|
5731
|
-
--dl-color-entity-connection: #9a32a6;
|
|
5732
|
-
--dl-color-entity-dataset: #0abe05;
|
|
5733
|
-
--dl-color-entity-dashboard: #ff8c3c;
|
|
5734
|
-
--dl-color-widget-background: var(--g-color-base-float);
|
|
5735
|
-
--dl-widget-border-radius: 20px;
|
|
5736
|
-
--dl-color-text-workbook-icon: var(--g-color-text-dark-primary);
|
|
5737
|
-
--dl-viz-icon-main-color: #3d97f2;
|
|
5738
|
-
--dl-viz-icon-secondary-color: #ff6a59;
|
|
5739
|
-
}.g-root_theme_light {
|
|
5740
|
-
--g-color-private-cool-grey-20-solid: rgb(245, 246, 247);
|
|
5741
|
-
--ds-color-relation-line: #d9d9d9;
|
|
5742
|
-
--ds-color-avatar: #ededed;
|
|
5743
|
-
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
5744
|
-
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
5745
|
-
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
5746
|
-
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
5747
|
-
--dl-color-base-workbook-icon: #d1dfff;
|
|
5748
|
-
--dl-filter-ymap-background: none;
|
|
5749
|
-
--dl-filter-ymap-heatmap: none;
|
|
5750
|
-
--dl-color-ymap-background: #fafafa;
|
|
5751
|
-
--dl-filter-zoom-control: none;
|
|
5752
|
-
--dl-color-dashboard-background: var(--g-color-private-cool-grey-20-solid);
|
|
5753
|
-
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-100-solid);
|
|
5754
|
-
}.g-root_theme_light-hc {
|
|
5755
|
-
--ds-color-relation-line: #d9d9d9;
|
|
5756
|
-
--ds-color-avatar: #ededed;
|
|
5757
|
-
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
5758
|
-
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
5759
|
-
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
5760
|
-
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
5761
|
-
--dl-color-base-workbook-icon: #a8c3ff;
|
|
5762
|
-
--dl-filter-ymap-background: none;
|
|
5763
|
-
--dl-filter-ymap-heatmap: none;
|
|
5764
|
-
--dl-color-ymap-background: #fafafa;
|
|
5765
|
-
--dl-filter-zoom-control: none;
|
|
5766
|
-
--dl-color-dashboard-background: var(--g-color-private-cool-grey-50-solid);
|
|
5767
|
-
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-150-solid);
|
|
5768
|
-
}.g-root_theme_dark {
|
|
5769
|
-
--g-color-private-white-20-solid: rgb(49, 48, 55);
|
|
5770
|
-
--ds-color-relation-line: #4c4b51;
|
|
5771
|
-
--ds-color-avatar: #3b3a41;
|
|
5772
|
-
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
5773
|
-
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
5774
|
-
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
5775
|
-
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
5776
|
-
--dl-color-base-workbook-icon: #c2d0f0;
|
|
5777
|
-
--dl-filter-ymap-background: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
5778
|
-
--dl-filter-ymap-heatmap: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
5779
|
-
--dl-color-ymap-background: transparent;
|
|
5780
|
-
--dl-filter-zoom-control: invert(1);
|
|
5781
|
-
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
5782
|
-
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
5783
|
-
}.g-root_theme_dark-hc {
|
|
5784
|
-
--g-color-private-white-20-solid: rgb(38, 39, 42);
|
|
5785
|
-
--ds-color-relation-line: #4c4b51;
|
|
5786
|
-
--ds-color-avatar: #3b3a41;
|
|
5787
|
-
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
5788
|
-
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
5789
|
-
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
5790
|
-
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
5791
|
-
--dl-color-base-workbook-icon: #c0d3fd;
|
|
5792
|
-
--dl-filter-ymap-background: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
5793
|
-
--dl-filter-ymap-heatmap: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
5794
|
-
--dl-color-ymap-background: transparent;
|
|
5795
|
-
--dl-filter-zoom-control: invert(1);
|
|
5796
|
-
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
5797
|
-
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
5798
|
-
}@keyframes pulseAnimation {
|
|
5799
|
-
0% {
|
|
5800
|
-
opacity: 0.65;
|
|
5801
|
-
}
|
|
5802
|
-
50% {
|
|
5803
|
-
opacity: 0.35;
|
|
5804
|
-
}
|
|
5805
|
-
100% {
|
|
5806
|
-
opacity: 0.65;
|
|
5807
|
-
}
|
|
5808
|
-
}.app-root.g-root {
|
|
5809
|
-
--yfm-code-background: var(--g-color-base-misc-light);
|
|
5810
|
-
--yfm-code-color: var(--g-color-text-misc-heavy);
|
|
5811
|
-
--yfm-pre-code-background: var(--g-color-base-misc-light);
|
|
5812
|
-
--yfm-pre-code-color: var(--g-color-text-complementary);
|
|
5813
|
-
}.app-root.g-root .yfm {
|
|
5814
|
-
--yfm-list-text-last-margin-block: 15px;
|
|
5815
|
-
--yfm-list-text-only-margin-block: 15px;
|
|
5816
|
-
--yfm-font-family-sans: var(--g-font-family-sans);
|
|
5817
|
-
--yfm-font-family-monospace: var(--g-font-family-monospace);
|
|
5818
|
-
--yfm-color-table-row-header-background-primary: transparent;
|
|
5819
|
-
font-family: var(--g-font-family-sans);
|
|
5820
|
-
font-family: var(--g-text-body-font-family);
|
|
5821
|
-
font-weight: var(--g-text-body-font-weight);
|
|
5822
|
-
font-size: var(--g-text-body-1-font-size);
|
|
5823
|
-
line-height: var(--g-text-body-1-line-height);
|
|
5824
|
-
}.app-root.g-root .yfm h1,
|
|
5825
|
-
.app-root.g-root .yfm h2,
|
|
5826
|
-
.app-root.g-root .yfm h3,
|
|
5827
|
-
.app-root.g-root .yfm h4,
|
|
5828
|
-
.app-root.g-root .yfm h5,
|
|
5829
|
-
.app-root.g-root .yfm h6 {
|
|
5830
|
-
font-weight: 500;
|
|
5831
|
-
}.app-root.g-root .yfm h6 {
|
|
5832
|
-
margin-block-start: 1.67em;
|
|
5833
|
-
}.app-root.g-root .yfm img {
|
|
5834
|
-
background: transparent;
|
|
5835
|
-
}.app-root.g-root .yfm p.yfm-latex {
|
|
5836
|
-
text-align: center;
|
|
5837
|
-
display: inline-block;
|
|
5838
|
-
}.app-root.g-root .yfm p.yfm-latex > span:last-child {
|
|
5839
|
-
margin: 0;
|
|
5840
|
-
}.app-root.g-root .yfm p:last-of-type:has(~ template:last-of-type),
|
|
5841
|
-
.app-root.g-root .yfm p:last-of-type:has(~ dfn:last-of-type),
|
|
5842
|
-
.app-root.g-root .yfm .yfm-cut-content table:last-child,
|
|
5843
|
-
.app-root.g-root .yfm .yfm-note-content:last-child p:last-child,
|
|
5844
|
-
.app-root.g-root .yfm .mermaid p:last-child {
|
|
5845
|
-
margin-bottom: 0;
|
|
5846
|
-
}.app-root.g-root .yfm .yfm-cut:last-child .yfm-cut-content {
|
|
5847
|
-
padding-bottom: 0;
|
|
5848
|
-
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) {
|
|
5849
|
-
display: table;
|
|
5850
|
-
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) p:has(.MagicLink),
|
|
5851
|
-
.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) p:has(.yfm-latex) {
|
|
5852
|
-
display: table;
|
|
5853
|
-
padding: 0.3em 0;
|
|
5854
|
-
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) {
|
|
5855
|
-
width: 100%;
|
|
5856
|
-
}.app-root.g-root .yfm .yfm .yfm-term_dfn {
|
|
5857
|
-
display: none;
|
|
5858
|
-
}.app-root.g-root .yfm .yfm .yfm-term_dfn.open {
|
|
5859
|
-
display: block;
|
|
5860
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) {
|
|
5861
|
-
color: var(--g-color-text-primary);
|
|
5862
|
-
--yfm-color-hljs-background: var(--g-color-base-background);
|
|
5863
|
-
--yfm-color-hljs-subst: var(--g-color-text-complementary);
|
|
5864
|
-
--yfm-color-hljs-comment: var(--g-color-text-secondary);
|
|
5865
|
-
--yfm-color-hljs-deletion: var(--g-color-text-danger);
|
|
5866
|
-
--yfm-color-hljs-section: var(--g-color-text-danger);
|
|
5867
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) a {
|
|
5868
|
-
color: var(--g-color-text-link);
|
|
5869
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) a:hover, .app-root.g-root .yfm:not(.yfm_only-light) a:active {
|
|
5870
|
-
color: var(--g-color-text-link-hover);
|
|
5871
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm_links-visited a:visited {
|
|
5872
|
-
color: var(--g-color-text-link-visited);
|
|
5873
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm_links-visited a:visited:hover {
|
|
5874
|
-
color: var(--g-color-text-link-visited-hover);
|
|
5875
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) img {
|
|
5876
|
-
background-color: var(--g-color-base-background);
|
|
5877
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-info {
|
|
5878
|
-
background: var(--g-color-base-info-light);
|
|
5879
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-tip {
|
|
5880
|
-
background: var(--g-color-base-positive-light);
|
|
5881
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-alert {
|
|
5882
|
-
background: var(--g-color-base-danger-light);
|
|
5883
|
-
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-warning {
|
|
5884
|
-
background: var(--g-color-base-warning-light);
|
|
5885
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) code {
|
|
5886
|
-
background: var(--yfm-code-background);
|
|
5887
|
-
color: var(--yfm-code-color);
|
|
5888
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) pre > code {
|
|
5889
|
-
background: var(--yfm-pre-code-background);
|
|
5890
|
-
color: var(--yfm-pre-code-color);
|
|
5891
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) table {
|
|
5892
|
-
color: var(--g-color-text-primary);
|
|
5893
|
-
border-color: var(--g-color-line-generic);
|
|
5894
|
-
background: var(--g-color-base-background);
|
|
5895
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) table thead,
|
|
5896
|
-
.app-root.g-root .yfm:not(.yfm_only-light) table tr:nth-child(2n) {
|
|
5897
|
-
background: var(--g-color-base-generic);
|
|
5898
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) hr {
|
|
5899
|
-
background-color: var(--g-color-line-generic);
|
|
5900
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) blockquote {
|
|
5901
|
-
border-left-color: var(--g-color-line-brand);
|
|
5902
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab-list {
|
|
5903
|
-
border-bottom-color: var(--g-color-line-generic);
|
|
5904
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab:hover,
|
|
5905
|
-
.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab:active {
|
|
5906
|
-
color: var(--g-color-text-link-hover);
|
|
5907
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab.active {
|
|
5908
|
-
border-bottom-color: var(--g-color-line-brand);
|
|
5909
|
-
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-term_dfn {
|
|
5910
|
-
background: var(--g-color-base-float);
|
|
5911
|
-
}.app-root.g-root .editor-page div.yfm * img,
|
|
5912
|
-
.app-root.g-root .dash-app div.yfm * img,
|
|
5913
|
-
.app-root.g-root .app div.yfm * img {
|
|
5914
|
-
background: transparent;
|
|
5915
|
-
}.app-root.g-root_theme_dark .yfm .yfm-cut-title:before,
|
|
5916
|
-
.app-root.g-root_theme_dark-hc .yfm .yfm-cut-title:before {
|
|
5917
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuNykiIGZpbGw9Im5vbmUiIGQ9Ik0zIDZsNSA1IDUtNSI+PC9wYXRoPjwvc3ZnPg==");
|
|
5918
|
-
}.app-root.g-root .yfm .yfm-colorify {
|
|
5919
|
-
--yfm-color-text-gray: var(--g-color-text-secondary);
|
|
5920
|
-
--yfm-color-text-yellow: var(--g-color-text-warning);
|
|
5921
|
-
--yfm-color-text-orange: var(--g-color-text-warning-heavy);
|
|
5922
|
-
--yfm-color-text-red: var(--g-color-text-danger);
|
|
5923
|
-
--yfm-color-text-green: var(--g-color-text-positive);
|
|
5924
|
-
--yfm-color-text-blue: var(--g-color-text-info);
|
|
5925
|
-
--yfm-color-text-violet: var(--g-color-text-utility);
|
|
5926
|
-
--yfm-colorify-black: var(--g-color-text-primary);
|
|
5927
|
-
--yfm-colorify-gray: var(--yfm-color-text-gray);
|
|
5928
|
-
--yfm-colorify-yellow: var(--yfm-color-text-yellow);
|
|
5929
|
-
--yfm-colorify-orange: var(--yfm-color-text-orange);
|
|
5930
|
-
--yfm-colorify-red: var(--yfm-color-text-red);
|
|
5931
|
-
--yfm-colorify-green: var(--yfm-color-text-green);
|
|
5932
|
-
--yfm-colorify-blue: var(--yfm-color-text-blue);
|
|
5933
|
-
--yfm-colorify-violet: var(--yfm-color-text-violet);
|
|
5934
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--gray > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--gray {
|
|
5935
|
-
color: var(--yfm-colorify-gray);
|
|
5936
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--yellow > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--yellow {
|
|
5937
|
-
color: var(--yfm-colorify-yellow);
|
|
5938
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--orange > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--orange {
|
|
5939
|
-
color: var(--yfm-colorify-orange);
|
|
5940
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--red > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--red {
|
|
5941
|
-
color: var(--yfm-colorify-red);
|
|
5942
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--green > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--green {
|
|
5943
|
-
color: var(--yfm-colorify-green);
|
|
5944
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--blue > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--blue {
|
|
5945
|
-
color: var(--yfm-colorify-blue);
|
|
5946
|
-
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--violet > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--violet {
|
|
5947
|
-
color: var(--yfm-colorify-violet);
|
|
5948
|
-
}.app-root.g-root_theme_dark .yfm .yfm-colorify,
|
|
5949
|
-
.app-root.g-root_theme_dark-hc .yfm .yfm-colorify {
|
|
5950
|
-
--yfm-color-text-orange: var(--g-color-private-orange-750-solid);
|
|
5951
|
-
}
|
|
5952
|
-
/*# sourceMappingURL=YfmWrapperContent.scss.map */.dl-user-menu {
|
|
5953
|
-
background-color: var(--g-color-base-float);
|
|
5954
|
-
padding: var(--g-spacing-2);
|
|
5955
|
-
box-sizing: border-box;
|
|
5956
|
-
max-height: calc(100vh - 100px);
|
|
5957
|
-
width: 300px;
|
|
5958
|
-
}
|
|
5959
|
-
.dl-user-menu__entry {
|
|
5960
|
-
box-sizing: border-box;
|
|
5961
|
-
display: flex;
|
|
5962
|
-
align-items: flex-start;
|
|
5963
|
-
justify-content: space-between;
|
|
5964
|
-
padding: var(--g-spacing-2);
|
|
5965
|
-
text-decoration: none;
|
|
5966
|
-
}
|
|
5967
|
-
.dl-user-menu__entry-content {
|
|
5968
|
-
flex: auto;
|
|
5969
|
-
min-width: 0;
|
|
5970
|
-
}
|
|
5971
|
-
.dl-user-menu__entry-actions {
|
|
5972
|
-
white-space: nowrap;
|
|
5973
|
-
}
|
|
5974
|
-
.dl-user-menu__entry-button {
|
|
5975
|
-
margin-inline-start: var(--g-spacing-1);
|
|
5976
|
-
}
|
|
5977
|
-
.dl-user-menu__user {
|
|
5978
|
-
display: flex;
|
|
5979
|
-
}
|
|
5980
|
-
.dl-user-menu__user-info {
|
|
5981
|
-
font-family: var(--g-text-body-font-family);
|
|
5982
|
-
font-weight: var(--g-text-body-font-weight);
|
|
5983
|
-
font-size: var(--g-text-body-short-font-size);
|
|
5984
|
-
line-height: var(--g-text-body-short-line-height);
|
|
5985
|
-
display: flex;
|
|
5986
|
-
flex: auto;
|
|
5987
|
-
flex-direction: column;
|
|
5988
|
-
min-width: 0;
|
|
5989
|
-
margin-left: var(--g-spacing-3);
|
|
5990
|
-
align-items: flex-start;
|
|
5991
|
-
justify-content: center;
|
|
5992
|
-
}
|
|
5993
|
-
.dl-user-menu__user-name, .dl-user-menu__user-description {
|
|
5994
|
-
white-space: nowrap;
|
|
5995
|
-
overflow: hidden;
|
|
5996
|
-
text-overflow: ellipsis;
|
|
5997
|
-
max-width: 100%;
|
|
5998
|
-
}
|
|
5999
|
-
.dl-user-menu__user-description {
|
|
6000
|
-
color: var(--g-color-text-secondary);
|
|
6001
|
-
}
|
|
6002
|
-
.dl-user-menu__user-avatar {
|
|
6003
|
-
flex-shrink: 0;
|
|
6004
|
-
}
|
|
6005
|
-
.dl-user-menu__user-label {
|
|
6006
|
-
margin-top: var(--g-spacing-1);
|
|
6007
|
-
width: auto;
|
|
6008
|
-
max-width: 100%;
|
|
6009
|
-
}.g-root {
|
|
6010
|
-
--dl-navigation-breadcrumbs-height: 28px;
|
|
6011
|
-
--dl-revision-panel-top-offset: 40px;
|
|
6012
|
-
--dl-color-border: var(--g-color-line-generic);
|
|
6013
|
-
--dl-color-border-solid: var(--g-color-line-generic-solid);
|
|
6014
|
-
--dl-color-progress-bar: var(--g-color-text-info);
|
|
6015
|
-
--dl-color-progress-bar-failed: var(--g-color-base-danger-heavy);
|
|
6016
|
-
--dl-color-field-dimenson: var(--g-color-base-positive-light);
|
|
6017
|
-
--dl-color-field-dimenson-hover: var(--g-color-base-positive-light-hover);
|
|
6018
|
-
--dl-color-field-measure: var(--g-color-base-info-light);
|
|
6019
|
-
--dl-color-field-measure-hover: var(--g-color-base-info-light-hover);
|
|
6020
|
-
--dl-color-field-dimenson-solid: var(--g-color-text-positive);
|
|
6021
|
-
--dl-color-field-measure-solid: var(--g-color-text-info);
|
|
6022
|
-
--dl-color-entity-chart-wizard: #5282ff;
|
|
6023
|
-
--dl-color-entity-chart-ql: #9f6fee;
|
|
6024
|
-
--dl-color-entity-chart-editor: #e18c1e;
|
|
6025
|
-
--dl-color-entity-connection: #9a32a6;
|
|
6026
|
-
--dl-color-entity-dataset: #0abe05;
|
|
6027
|
-
--dl-color-entity-dashboard: #ff8c3c;
|
|
6028
|
-
--dl-color-widget-background: var(--g-color-base-float);
|
|
6029
|
-
--dl-widget-border-radius: 20px;
|
|
6030
|
-
--dl-color-text-workbook-icon: var(--g-color-text-dark-primary);
|
|
6031
|
-
--dl-viz-icon-main-color: #3d97f2;
|
|
6032
|
-
--dl-viz-icon-secondary-color: #ff6a59;
|
|
6033
|
-
}
|
|
6034
|
-
.g-root_theme_light {
|
|
6035
|
-
--g-color-private-cool-grey-20-solid: rgb(245, 246, 247);
|
|
6036
|
-
--ds-color-relation-line: #d9d9d9;
|
|
6037
|
-
--ds-color-avatar: #ededed;
|
|
6038
|
-
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
6039
|
-
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
6040
|
-
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
6041
|
-
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
6042
|
-
--dl-color-base-workbook-icon: #d1dfff;
|
|
6043
|
-
--dl-filter-ymap-background: none;
|
|
6044
|
-
--dl-filter-ymap-heatmap: none;
|
|
6045
|
-
--dl-color-ymap-background: #fafafa;
|
|
6046
|
-
--dl-filter-zoom-control: none;
|
|
6047
|
-
--dl-color-dashboard-background: var(--g-color-private-cool-grey-20-solid);
|
|
6048
|
-
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-100-solid);
|
|
6049
|
-
}
|
|
6050
|
-
.g-root_theme_light-hc {
|
|
6051
|
-
--ds-color-relation-line: #d9d9d9;
|
|
6052
|
-
--ds-color-avatar: #ededed;
|
|
6053
|
-
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
6054
|
-
--w-dataset-item-border-hover: rgba(0, 0, 0, 0.15);
|
|
6055
|
-
--w-disabled-item-background: rgba(0, 0, 0, 0.07);
|
|
6056
|
-
--dl-color-contrast-4: rgba(0, 0, 0, 0.04);
|
|
6057
|
-
--dl-color-base-workbook-icon: #a8c3ff;
|
|
6058
|
-
--dl-filter-ymap-background: none;
|
|
6059
|
-
--dl-filter-ymap-heatmap: none;
|
|
6060
|
-
--dl-color-ymap-background: #fafafa;
|
|
6061
|
-
--dl-filter-zoom-control: none;
|
|
6062
|
-
--dl-color-dashboard-background: var(--g-color-private-cool-grey-50-solid);
|
|
6063
|
-
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-150-solid);
|
|
6064
|
-
}
|
|
6065
|
-
.g-root_theme_dark {
|
|
6066
|
-
--g-color-private-white-20-solid: rgb(49, 48, 55);
|
|
6067
|
-
--ds-color-relation-line: #4c4b51;
|
|
6068
|
-
--ds-color-avatar: #3b3a41;
|
|
6069
|
-
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
6070
|
-
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
6071
|
-
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
6072
|
-
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
6073
|
-
--dl-color-base-workbook-icon: #c2d0f0;
|
|
6074
|
-
--dl-filter-ymap-background: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
6075
|
-
--dl-filter-ymap-heatmap: invert(0.9) saturate(0.4) hue-rotate(-30deg);
|
|
6076
|
-
--dl-color-ymap-background: transparent;
|
|
6077
|
-
--dl-filter-zoom-control: invert(1);
|
|
6078
|
-
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
6079
|
-
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
6080
|
-
}
|
|
6081
|
-
.g-root_theme_dark-hc {
|
|
6082
|
-
--g-color-private-white-20-solid: rgb(38, 39, 42);
|
|
6083
|
-
--ds-color-relation-line: #4c4b51;
|
|
6084
|
-
--ds-color-avatar: #3b3a41;
|
|
6085
|
-
--w-local-item-border: rgba(255, 255, 255, 0.5);
|
|
6086
|
-
--w-dataset-item-border-hover: rgba(255, 255, 255, 0.15);
|
|
6087
|
-
--w-disabled-item-background: rgba(255, 255, 255, 0.07);
|
|
6088
|
-
--dl-color-contrast-4: rgba(255, 255, 255, 0.04);
|
|
6089
|
-
--dl-color-base-workbook-icon: #c0d3fd;
|
|
6090
|
-
--dl-filter-ymap-background: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
6091
|
-
--dl-filter-ymap-heatmap: invert(0.95) saturate(0.4) hue-rotate(-30deg);
|
|
6092
|
-
--dl-color-ymap-background: transparent;
|
|
6093
|
-
--dl-filter-zoom-control: invert(1);
|
|
6094
|
-
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
6095
|
-
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
6096
|
-
}
|
|
6097
|
-
|
|
6098
|
-
@keyframes pulseAnimation {
|
|
6099
|
-
0% {
|
|
6100
|
-
opacity: 0.65;
|
|
6101
|
-
}
|
|
6102
|
-
50% {
|
|
6103
|
-
opacity: 0.35;
|
|
5986
|
+
}.inline_code_tooltip {
|
|
5987
|
+
position: absolute;
|
|
5988
|
+
z-index: 100;
|
|
5989
|
+
visibility: hidden;
|
|
5990
|
+
opacity: 0;
|
|
5991
|
+
padding: 10px;
|
|
5992
|
+
background-color: var(--yfm-color-term-dfn-background);
|
|
5993
|
+
font-size: inherit;
|
|
5994
|
+
line-height: inherit;
|
|
5995
|
+
font-style: normal;
|
|
5996
|
+
border-radius: 4px;
|
|
5997
|
+
box-shadow: 0 8px 20px var(--yfm-color-term-dfn-shadow);
|
|
5998
|
+
outline: none;
|
|
5999
|
+
width: -moz-fit-content;
|
|
6000
|
+
width: fit-content;
|
|
6001
|
+
max-width: 450px;
|
|
6002
|
+
}@media screen and (max-width: 600px) {
|
|
6003
|
+
.inline_code_tooltip {
|
|
6004
|
+
max-width: 80%;
|
|
6005
|
+
}
|
|
6006
|
+
}.inline_code_tooltip::before {
|
|
6007
|
+
content: "";
|
|
6008
|
+
position: absolute;
|
|
6009
|
+
z-index: -1;
|
|
6010
|
+
inset: 0;
|
|
6011
|
+
border-radius: inherit;
|
|
6012
|
+
box-shadow: 0 0 0 1px var(--yfm-color-term-dfn-pseudo-shadow);
|
|
6013
|
+
}.inline_code_tooltip.open {
|
|
6014
|
+
visibility: visible;
|
|
6015
|
+
animation-name: popup;
|
|
6016
|
+
animation-duration: 0.1s;
|
|
6017
|
+
animation-timing-function: ease-out;
|
|
6018
|
+
animation-fill-mode: forwards;
|
|
6019
|
+
}@keyframes popup {
|
|
6020
|
+
0% {
|
|
6021
|
+
opacity: 0;
|
|
6022
|
+
transform: translateY(10px);
|
|
6104
6023
|
}
|
|
6105
6024
|
100% {
|
|
6106
|
-
opacity:
|
|
6025
|
+
opacity: 1;
|
|
6026
|
+
transform: translateY(0);
|
|
6107
6027
|
}
|
|
6108
|
-
}
|
|
6109
|
-
.aside-header-logo-text__title {
|
|
6110
|
-
font-family: var(--g-text-subheader-font-family);
|
|
6111
|
-
font-weight: var(--g-text-subheader-font-weight);
|
|
6112
|
-
font-size: var(--g-text-subheader-2-font-size);
|
|
6113
|
-
line-height: var(--g-text-subheader-2-line-height);
|
|
6114
|
-
}
|
|
6115
|
-
.aside-header-logo-text__installation-info {
|
|
6116
|
-
font-size: 10px;
|
|
6117
|
-
line-height: 15px;
|
|
6118
|
-
font-weight: bold;
|
|
6119
|
-
letter-spacing: 0.7px;
|
|
6120
|
-
text-transform: uppercase;
|
|
6121
|
-
width: fit-content;
|
|
6122
|
-
}.g-root {
|
|
6028
|
+
}details.yfm-cut>.yfm-cut-content{display:block}.yfm-cut{transition:all .15s;margin-bottom:15px}.yfm-cut.cut-highlight{background-clip:content-box;box-shadow:0 3px 0 7px var(--g-color-base-simple-hover);background-color:var(--g-color-base-simple-hover);border-radius:3px}.yfm-cut-title{list-style:none;cursor:pointer;position:relative;padding:5px 0 5px 30px}.yfm-cut-title::-webkit-details-marker{display:none}.yfm-cut-title:before{content:"";z-index:1;left:0;top:50%;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgICA8cGF0aCBzdHJva2U9ImN1cnJlbnRDb2xvciIgZmlsbD0ibm9uZSIgZD0iTTMgNmw1IDUgNS01Ii8+Cjwvc3ZnPgo=);transform:translateY(-50%) rotate(-90deg);transition:transform .3s ease;height:20px;width:20px;position:absolute}.yfm-cut-content{overflow:auto;padding:5px 0 15px 30px}.yfm-cut[open]>.yfm-cut-title:before{transform:translateY(-50%)}.yfm-tabs{margin-bottom:15px}.yfm-tab-list{display:flex;flex-wrap:wrap;margin-bottom:15px;border-bottom:1px solid rgba(0,0,0,.07)}.yfm-tab{margin-bottom:-1px;margin-right:20px;border-bottom:2px solid transparent;padding:6px 0 7px;font-weight:700;outline:none;cursor:pointer;user-select:none;white-space:break-spaces}.yfm-tab:last-child{margin-right:0}.yfm-tab:hover,.yfm-tab:active{color:#004080}.yfm-tab.active{border-bottom-color:#027bf3}.yfm-tab:focus{outline:2px solid #4d90fe;border-radius:2px}.yfm-tab:focus:not(:focus-visible){outline:0}.yfm-tab-panel{position:relative;visibility:hidden;overflow:hidden;height:0}.yfm-tab-panel:first-child{margin-top:0!important}.yfm-tab-panel:last-child{margin-bottom:0!important}.yfm-tab-panel.active{visibility:visible;overflow:visible;height:auto}.yfm-tabs-dropdown{position:relative;width:90%;margin-bottom:0;--yfm-tabs-dropdown-color: #F2F2F2;--yfm-tabs-dropdown-text-color: #A8A8A8;--yfm-tabs-dropdown-color-border: #CCC}.yfm-tabs-dropdown .yfm-tabs-dropdown-select{padding:10px 30px 10px 10px;background:var(--g-color-base-background);border:1px solid var(--yfm-tabs-dropdown-color-border);color:var(--yfm-tabs-dropdown-text-color);border-radius:5px;position:relative;user-select:none;margin-bottom:10px;max-width:500px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;z-index:10}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.filled{color:inherit}.yfm-tabs-dropdown .yfm-tabs-dropdown-select:after{content:"";position:absolute;display:block;right:10px;top:25%;transform:rotate(90deg);transition:transform .2s;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIGQ9Im0zIDYgNSA1IDUtNSIvPjwvc3ZnPg==);width:20px;height:20px}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.active+.yfm-tabs-dropdown-menu{transform:scaleY(1)}.yfm-tabs-dropdown .yfm-tabs-dropdown-select.active:after{transform:rotate(0)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu{width:100%;max-width:500px;max-height:500px;overflow-y:scroll;padding:10px 0;position:absolute;z-index:10;display:flex;flex-direction:column;border:1px solid var(--yfm-tabs-dropdown-color-border);border-radius:5px;background-color:var(--g-color-base-background);transform:scaleY(0);list-style:none;z-index:100;transition:transform 125ms;transform-origin:top center}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li{user-select:none;cursor:pointer;background-color:var(--g-color-base-background)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li:hover{background-color:var(--g-color-base-simple-hover);color:inherit}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab{padding:5px 0 5px 10px;border-radius:0;border-bottom:unset;margin:0;font-weight:500}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab.active{background-color:var(--g-color-base-selection)}.yfm-tabs-dropdown>.yfm-tabs-dropdown-menu>li.yfm-tab:hover{color:inherit}.yfm-tabs-dropdown>.yfm-tab-panel.active{border:1px solid #F2F2F2;transform:translateY(-30px);border-radius:12px;padding:40px 12px 16px}.yfm-tabs-dropdown>.yfm-tabs{width:100%}.yfm-tabs-accordion{max-width:80%}.yfm-tabs-accordion>.yfm-tab:first-of-type{border-top-color:transparent}.yfm-tabs-accordion .yfm-tab{padding:8px 0 12px 6px;position:relative;border-top:1px solid #E5E5E5;font-weight:500;scroll-margin-top:20px}.yfm-tabs-accordion .yfm-tab:after{content:"";position:absolute;display:block;right:10px;top:25%;transform:rotate(-180deg);transition:transform .3s,background-color .2s;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIGQ9Im0zIDYgNSA1IDUtNSIvPjwvc3ZnPg==);width:20px;height:20px;border-radius:6px;padding:6px}.yfm-tabs-accordion .yfm-tab.active{border-bottom-color:transparent!important;font-weight:700}.yfm-tabs-accordion .yfm-tab.active:after{transform:rotate(0)}.yfm-tabs-accordion .yfm-tab:hover{color:#3f5799}.yfm-tabs-accordion .yfm-tab-panel.active{margin:10px 0 25px 6px}.yfm-tabs-vertical>.yfm-tab-list{flex-direction:column;border-bottom:unset}.yfm-tabs-vertical>.yfm-tab-panel{margin-left:30px}.yfm-tabs-vertical>.yfm-tab-group{display:flex;flex-direction:row;margin-bottom:5px}.yfm-tabs-vertical .yfm-vertical-tab>input[type=radio]{visibility:hidden;width:0;height:0}.yfm-tabs-vertical .yfm-vertical-tab>label{display:inline-block;cursor:pointer;position:relative;padding-left:25px;margin-right:0;line-height:18px;user-select:none}.yfm-tabs-vertical .yfm-vertical-tab>label:before{font-family:initial!important;content:"";position:absolute;left:0;bottom:1px;border-radius:50%;width:18px;height:18px;border:#dfdfdf 1px solid;background-color:#fff}.yfm-tabs-vertical .yfm-vertical-tab input[type=radio]:checked+label:before{content:"\2022";background-color:#5282ff;text-align:center;vertical-align:middle;font-size:20px;white-space:pre;display:inline-flex;justify-content:center;align-items:center;color:#fff}.yfm-tabs-vertical .yfm-vertical-tab{border-bottom:unset!important}.g-root {
|
|
6123
6029
|
--dl-navigation-breadcrumbs-height: 28px;
|
|
6124
6030
|
--dl-revision-panel-top-offset: 40px;
|
|
6125
6031
|
--dl-color-border: var(--g-color-line-generic);
|
|
@@ -6143,8 +6049,7 @@
|
|
|
6143
6049
|
--dl-color-text-workbook-icon: var(--g-color-text-dark-primary);
|
|
6144
6050
|
--dl-viz-icon-main-color: #3d97f2;
|
|
6145
6051
|
--dl-viz-icon-secondary-color: #ff6a59;
|
|
6146
|
-
}
|
|
6147
|
-
.g-root_theme_light {
|
|
6052
|
+
}.g-root_theme_light {
|
|
6148
6053
|
--g-color-private-cool-grey-20-solid: rgb(245, 246, 247);
|
|
6149
6054
|
--ds-color-relation-line: #d9d9d9;
|
|
6150
6055
|
--ds-color-avatar: #ededed;
|
|
@@ -6159,8 +6064,7 @@
|
|
|
6159
6064
|
--dl-filter-zoom-control: none;
|
|
6160
6065
|
--dl-color-dashboard-background: var(--g-color-private-cool-grey-20-solid);
|
|
6161
6066
|
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-100-solid);
|
|
6162
|
-
}
|
|
6163
|
-
.g-root_theme_light-hc {
|
|
6067
|
+
}.g-root_theme_light-hc {
|
|
6164
6068
|
--ds-color-relation-line: #d9d9d9;
|
|
6165
6069
|
--ds-color-avatar: #ededed;
|
|
6166
6070
|
--w-local-item-border: rgba(0, 0, 0, 0.5);
|
|
@@ -6174,8 +6078,7 @@
|
|
|
6174
6078
|
--dl-filter-zoom-control: none;
|
|
6175
6079
|
--dl-color-dashboard-background: var(--g-color-private-cool-grey-50-solid);
|
|
6176
6080
|
--dl-color-fixed-header-background: var(--g-color-private-cool-grey-150-solid);
|
|
6177
|
-
}
|
|
6178
|
-
.g-root_theme_dark {
|
|
6081
|
+
}.g-root_theme_dark {
|
|
6179
6082
|
--g-color-private-white-20-solid: rgb(49, 48, 55);
|
|
6180
6083
|
--ds-color-relation-line: #4c4b51;
|
|
6181
6084
|
--ds-color-avatar: #3b3a41;
|
|
@@ -6190,8 +6093,7 @@
|
|
|
6190
6093
|
--dl-filter-zoom-control: invert(1);
|
|
6191
6094
|
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
6192
6095
|
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
6193
|
-
}
|
|
6194
|
-
.g-root_theme_dark-hc {
|
|
6096
|
+
}.g-root_theme_dark-hc {
|
|
6195
6097
|
--g-color-private-white-20-solid: rgb(38, 39, 42);
|
|
6196
6098
|
--ds-color-relation-line: #4c4b51;
|
|
6197
6099
|
--ds-color-avatar: #3b3a41;
|
|
@@ -6206,9 +6108,7 @@
|
|
|
6206
6108
|
--dl-filter-zoom-control: invert(1);
|
|
6207
6109
|
--dl-color-dashboard-background: var(--g-color-private-white-20-solid);
|
|
6208
6110
|
--dl-color-fixed-header-background: var(--g-color-base-background);
|
|
6209
|
-
}
|
|
6210
|
-
|
|
6211
|
-
@keyframes pulseAnimation {
|
|
6111
|
+
}@keyframes pulseAnimation {
|
|
6212
6112
|
0% {
|
|
6213
6113
|
opacity: 0.65;
|
|
6214
6114
|
}
|
|
@@ -6218,51 +6118,151 @@
|
|
|
6218
6118
|
100% {
|
|
6219
6119
|
opacity: 0.65;
|
|
6220
6120
|
}
|
|
6221
|
-
}
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
color:
|
|
6226
|
-
}
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6121
|
+
}.app-root.g-root {
|
|
6122
|
+
--yfm-code-background: var(--g-color-base-misc-light);
|
|
6123
|
+
--yfm-code-color: var(--g-color-text-misc-heavy);
|
|
6124
|
+
--yfm-pre-code-background: var(--g-color-base-misc-light);
|
|
6125
|
+
--yfm-pre-code-color: var(--g-color-text-complementary);
|
|
6126
|
+
}.app-root.g-root .yfm {
|
|
6127
|
+
--yfm-list-text-last-margin-block: 15px;
|
|
6128
|
+
--yfm-list-text-only-margin-block: 15px;
|
|
6129
|
+
--yfm-font-family-sans: var(--g-font-family-sans);
|
|
6130
|
+
--yfm-font-family-monospace: var(--g-font-family-monospace);
|
|
6131
|
+
--yfm-color-table-row-header-background-primary: transparent;
|
|
6132
|
+
font-family: var(--g-font-family-sans);
|
|
6133
|
+
font-family: var(--g-text-body-font-family);
|
|
6134
|
+
font-weight: var(--g-text-body-font-weight);
|
|
6135
|
+
font-size: var(--g-text-body-1-font-size);
|
|
6136
|
+
line-height: var(--g-text-body-1-line-height);
|
|
6137
|
+
}.app-root.g-root .yfm h1,
|
|
6138
|
+
.app-root.g-root .yfm h2,
|
|
6139
|
+
.app-root.g-root .yfm h3,
|
|
6140
|
+
.app-root.g-root .yfm h4,
|
|
6141
|
+
.app-root.g-root .yfm h5,
|
|
6142
|
+
.app-root.g-root .yfm h6 {
|
|
6143
|
+
font-weight: 500;
|
|
6144
|
+
}.app-root.g-root .yfm h6 {
|
|
6145
|
+
margin-block-start: 1.67em;
|
|
6146
|
+
}.app-root.g-root .yfm img {
|
|
6147
|
+
background: transparent;
|
|
6148
|
+
}.app-root.g-root .yfm p.yfm-latex {
|
|
6149
|
+
text-align: center;
|
|
6150
|
+
display: inline-block;
|
|
6151
|
+
}.app-root.g-root .yfm p.yfm-latex > span:last-child {
|
|
6152
|
+
margin: 0;
|
|
6153
|
+
}.app-root.g-root .yfm p:last-of-type:has(~ template:last-of-type),
|
|
6154
|
+
.app-root.g-root .yfm p:last-of-type:has(~ dfn:last-of-type),
|
|
6155
|
+
.app-root.g-root .yfm .yfm-cut-content table:last-child,
|
|
6156
|
+
.app-root.g-root .yfm .yfm-note-content:last-child p:last-child,
|
|
6157
|
+
.app-root.g-root .yfm .mermaid p:last-child {
|
|
6158
|
+
margin-bottom: 0;
|
|
6159
|
+
}.app-root.g-root .yfm .yfm-cut:last-child .yfm-cut-content {
|
|
6160
|
+
padding-bottom: 0;
|
|
6161
|
+
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) {
|
|
6162
|
+
display: table;
|
|
6163
|
+
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) p:has(.MagicLink),
|
|
6164
|
+
.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) p:has(.yfm-latex) {
|
|
6165
|
+
display: table;
|
|
6166
|
+
padding: 0.3em 0;
|
|
6167
|
+
}.app-root.g-root .yfm .yfm:not(.yfm-term_title):not(.yfm-term_dfn) {
|
|
6235
6168
|
width: 100%;
|
|
6236
|
-
|
|
6237
|
-
align-items: center;
|
|
6238
|
-
}
|
|
6239
|
-
.dl-aside-header__logo, .dl-aside-header__logo:hover, .dl-aside-header__logo:active, .dl-aside-header__logo:visited, .dl-aside-header__logo:focus {
|
|
6240
|
-
text-decoration: none;
|
|
6241
|
-
outline: none;
|
|
6242
|
-
color: inherit;
|
|
6243
|
-
}
|
|
6244
|
-
.dl-aside-header__docs-link, .dl-aside-header__info-btn {
|
|
6245
|
-
align-items: center;
|
|
6246
|
-
box-sizing: border-box;
|
|
6247
|
-
display: flex;
|
|
6248
|
-
flex-grow: 1;
|
|
6249
|
-
height: 100%;
|
|
6250
|
-
padding: 8px 16px;
|
|
6251
|
-
text-decoration: none;
|
|
6252
|
-
color: var(--g-color-text-primary);
|
|
6253
|
-
}
|
|
6254
|
-
.dl-aside-header_hidden .gn-aside-header__aside {
|
|
6169
|
+
}.app-root.g-root .yfm .yfm .yfm-term_dfn {
|
|
6255
6170
|
display: none;
|
|
6171
|
+
}.app-root.g-root .yfm .yfm .yfm-term_dfn.open {
|
|
6172
|
+
display: block;
|
|
6173
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) {
|
|
6174
|
+
color: var(--g-color-text-primary);
|
|
6175
|
+
--yfm-color-hljs-background: var(--g-color-base-background);
|
|
6176
|
+
--yfm-color-hljs-subst: var(--g-color-text-complementary);
|
|
6177
|
+
--yfm-color-hljs-comment: var(--g-color-text-secondary);
|
|
6178
|
+
--yfm-color-hljs-deletion: var(--g-color-text-danger);
|
|
6179
|
+
--yfm-color-hljs-section: var(--g-color-text-danger);
|
|
6180
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) a {
|
|
6181
|
+
color: var(--g-color-text-link);
|
|
6182
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) a:hover, .app-root.g-root .yfm:not(.yfm_only-light) a:active {
|
|
6183
|
+
color: var(--g-color-text-link-hover);
|
|
6184
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm_links-visited a:visited {
|
|
6185
|
+
color: var(--g-color-text-link-visited);
|
|
6186
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm_links-visited a:visited:hover {
|
|
6187
|
+
color: var(--g-color-text-link-visited-hover);
|
|
6188
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) img {
|
|
6189
|
+
background-color: var(--g-color-base-background);
|
|
6190
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-info {
|
|
6191
|
+
background: var(--g-color-base-info-light);
|
|
6192
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-tip {
|
|
6193
|
+
background: var(--g-color-base-positive-light);
|
|
6194
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-alert {
|
|
6195
|
+
background: var(--g-color-base-danger-light);
|
|
6196
|
+
}.app-root.g-root .yfm:not(.yfm_only-light).yfm-accent-warning {
|
|
6197
|
+
background: var(--g-color-base-warning-light);
|
|
6198
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) code {
|
|
6199
|
+
background: var(--yfm-code-background);
|
|
6200
|
+
color: var(--yfm-code-color);
|
|
6201
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) pre > code {
|
|
6202
|
+
background: var(--yfm-pre-code-background);
|
|
6203
|
+
color: var(--yfm-pre-code-color);
|
|
6204
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) table {
|
|
6205
|
+
color: var(--g-color-text-primary);
|
|
6206
|
+
border-color: var(--g-color-line-generic);
|
|
6207
|
+
background: var(--g-color-base-background);
|
|
6208
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) table thead,
|
|
6209
|
+
.app-root.g-root .yfm:not(.yfm_only-light) table tr:nth-child(2n) {
|
|
6210
|
+
background: var(--g-color-base-generic);
|
|
6211
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) hr {
|
|
6212
|
+
background-color: var(--g-color-line-generic);
|
|
6213
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) blockquote {
|
|
6214
|
+
border-left-color: var(--g-color-line-brand);
|
|
6215
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab-list {
|
|
6216
|
+
border-bottom-color: var(--g-color-line-generic);
|
|
6217
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab:hover,
|
|
6218
|
+
.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab:active {
|
|
6219
|
+
color: var(--g-color-text-link-hover);
|
|
6220
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-tab.active {
|
|
6221
|
+
border-bottom-color: var(--g-color-line-brand);
|
|
6222
|
+
}.app-root.g-root .yfm:not(.yfm_only-light) .yfm-term_dfn {
|
|
6223
|
+
background: var(--g-color-base-float);
|
|
6224
|
+
}.app-root.g-root .editor-page div.yfm * img,
|
|
6225
|
+
.app-root.g-root .dash-app div.yfm * img,
|
|
6226
|
+
.app-root.g-root .app div.yfm * img {
|
|
6227
|
+
background: transparent;
|
|
6228
|
+
}.app-root.g-root_theme_dark .yfm .yfm-cut-title:before,
|
|
6229
|
+
.app-root.g-root_theme_dark-hc .yfm .yfm-cut-title:before {
|
|
6230
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuNykiIGZpbGw9Im5vbmUiIGQ9Ik0zIDZsNSA1IDUtNSI+PC9wYXRoPjwvc3ZnPg==");
|
|
6231
|
+
}.app-root.g-root .yfm .yfm-colorify {
|
|
6232
|
+
--yfm-color-text-gray: var(--g-color-text-secondary);
|
|
6233
|
+
--yfm-color-text-yellow: var(--g-color-text-warning);
|
|
6234
|
+
--yfm-color-text-orange: var(--g-color-text-warning-heavy);
|
|
6235
|
+
--yfm-color-text-red: var(--g-color-text-danger);
|
|
6236
|
+
--yfm-color-text-green: var(--g-color-text-positive);
|
|
6237
|
+
--yfm-color-text-blue: var(--g-color-text-info);
|
|
6238
|
+
--yfm-color-text-violet: var(--g-color-text-utility);
|
|
6239
|
+
--yfm-colorify-black: var(--g-color-text-primary);
|
|
6240
|
+
--yfm-colorify-gray: var(--yfm-color-text-gray);
|
|
6241
|
+
--yfm-colorify-yellow: var(--yfm-color-text-yellow);
|
|
6242
|
+
--yfm-colorify-orange: var(--yfm-color-text-orange);
|
|
6243
|
+
--yfm-colorify-red: var(--yfm-color-text-red);
|
|
6244
|
+
--yfm-colorify-green: var(--yfm-color-text-green);
|
|
6245
|
+
--yfm-colorify-blue: var(--yfm-color-text-blue);
|
|
6246
|
+
--yfm-colorify-violet: var(--yfm-color-text-violet);
|
|
6247
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--gray > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--gray {
|
|
6248
|
+
color: var(--yfm-colorify-gray);
|
|
6249
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--yellow > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--yellow {
|
|
6250
|
+
color: var(--yfm-colorify-yellow);
|
|
6251
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--orange > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--orange {
|
|
6252
|
+
color: var(--yfm-colorify-orange);
|
|
6253
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--red > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--red {
|
|
6254
|
+
color: var(--yfm-colorify-red);
|
|
6255
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--green > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--green {
|
|
6256
|
+
color: var(--yfm-colorify-green);
|
|
6257
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--blue > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--blue {
|
|
6258
|
+
color: var(--yfm-colorify-blue);
|
|
6259
|
+
}.app-root.g-root .yfm .yfm-colorify.yfm-colorify--violet > .yfm, .app-root.g-root .yfm .yfm-colorify.yfm-colorify--violet {
|
|
6260
|
+
color: var(--yfm-colorify-violet);
|
|
6261
|
+
}.app-root.g-root_theme_dark .yfm .yfm-colorify,
|
|
6262
|
+
.app-root.g-root_theme_dark-hc .yfm .yfm-colorify {
|
|
6263
|
+
--yfm-color-text-orange: var(--g-color-private-orange-750-solid);
|
|
6256
6264
|
}
|
|
6257
|
-
.dl-
|
|
6258
|
-
height: 100%;
|
|
6259
|
-
}
|
|
6260
|
-
.dl-aside-header_hidden .gn-aside-header__content {
|
|
6261
|
-
width: 100%;
|
|
6262
|
-
}
|
|
6263
|
-
.dl-aside-header .gn-settings-menu__item-icon {
|
|
6264
|
-
color: var(--gn-aside-header-item-icon-color);
|
|
6265
|
-
}.dl-core-navigation-sidebar__places {
|
|
6265
|
+
/*# sourceMappingURL=YfmWrapperContent.scss.map */.dl-core-navigation-sidebar__places {
|
|
6266
6266
|
margin-bottom: 8px;
|
|
6267
6267
|
}
|
|
6268
6268
|
.dl-core-navigation-sidebar__header {
|