@vitrosoftware/common-ui-ts 1.1.88 → 1.1.90
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/css/std/controls/checkbox/checkbox.css +1 -1
- package/css/std/controls/criterion/criterion.css +6 -1
- package/css/std/controls/date-picker/date-picker.css +10 -5
- package/css/std/controls/image-button/image-button.css +13 -0
- package/css/std/controls/input/input.css +16 -11
- package/css/std/controls/link/link.css +12 -0
- package/css/std/controls/link-input/img/edit.svg +5 -0
- package/css/std/controls/link-input/link-input.css +37 -0
- package/css/std/controls/login/img/clock.svg +4 -0
- package/css/std/controls/login/img/windows-logo.svg +6 -0
- package/css/std/controls/login/login-content.css +12 -0
- package/css/std/controls/login/login-form.css +161 -0
- package/css/std/controls/login/login-go-back-link.css +7 -0
- package/css/std/controls/login/login-submit-button.css +10 -0
- package/css/std/controls/login/login-title.css +8 -0
- package/css/std/controls/login/login.css +12 -144
- package/css/std/controls/login/ntlm-authentication-form.css +31 -0
- package/css/std/controls/login/two-factor-authentication-form.css +144 -0
- package/css/std/controls/lookup-picker/lookup-picker.css +14 -9
- package/css/std/controls/main/main.css +1 -1
- package/css/std/controls/sidebar/img/bottom-menu-button-next.svg +3 -0
- package/css/std/controls/sidebar/sidebar-item.css +19 -8
- package/css/std/controls/sidebar/sidebar.css +80 -25
- package/css/std/controls/time-picker/time-picker.css +18 -13
- package/dist/index.css +614 -213
- package/dist/index.js +835 -373
- package/dist/index.js.map +1 -1
- package/dist/src/constants/Control.d.ts +1 -0
- package/dist/src/constants/Target.d.ts +4 -0
- package/dist/src/controls/Button/Button.d.ts +1 -2
- package/dist/src/controls/ImageButton/ImageButton.d.ts +12 -0
- package/dist/src/controls/Input/Input.d.ts +1 -0
- package/dist/src/controls/Link/Link.d.ts +10 -0
- package/dist/src/controls/LinkInput/LinkInput.d.ts +26 -0
- package/dist/src/controls/LinkInput/LinkInputConstants.d.ts +4 -0
- package/dist/src/controls/LinkInput/LinkInputRef.d.ts +11 -0
- package/dist/src/controls/Login/Login.d.ts +3 -7
- package/dist/src/controls/Login/LoginConstants.d.ts +19 -4
- package/dist/src/controls/Login/LoginContent.d.ts +8 -0
- package/dist/src/controls/Login/LoginForm.d.ts +15 -0
- package/dist/src/controls/Login/LoginFormRef.d.ts +5 -0
- package/dist/src/controls/Login/LoginGoBackLink.d.ts +6 -0
- package/dist/src/controls/Login/LoginSubmitButton.d.ts +8 -0
- package/dist/src/controls/Login/LoginTitle.d.ts +7 -0
- package/dist/src/controls/Login/NTLMAuthenticationForm.d.ts +6 -0
- package/dist/src/controls/Login/TwoFactorAuthenticationForm.d.ts +15 -0
- package/dist/src/controls/Login/TwoFactorAuthenticationFormRef.d.ts +4 -0
- package/dist/src/controls/Sidebar/GroupItem.d.ts +1 -0
- package/dist/src/controls/Sidebar/Item.d.ts +2 -0
- package/dist/src/controls/Sidebar/Section.d.ts +1 -0
- package/dist/src/controls/Sidebar/SectionList.d.ts +1 -0
- package/dist/src/controls/Sidebar/Sidebar.d.ts +2 -0
- package/dist/src/controls/Tooltip/Tooltip.d.ts +1 -2
- package/dist/src/index.d.ts +14 -3
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
- package/css/std/controls/sidebar/img/bottom-menu-button-more.svg +0 -5
package/dist/index.css
CHANGED
|
@@ -2015,15 +2015,6 @@ html, body {
|
|
|
2015
2015
|
line-height: 16px;
|
|
2016
2016
|
}
|
|
2017
2017
|
|
|
2018
|
-
._input_vitro-focus_1txynr8 input,
|
|
2019
|
-
._input_vitro-focus_1txynr8 textarea {
|
|
2020
|
-
border-color: #3274E0;
|
|
2021
|
-
}
|
|
2022
|
-
|
|
2023
|
-
._input_vitro-focus_1txynr8 ._input_vitro-label_2XBESiY {
|
|
2024
|
-
color: #3274E0;
|
|
2025
|
-
}
|
|
2026
|
-
|
|
2027
2018
|
._input_vitro-read-only_3f-cBbK input,
|
|
2028
2019
|
._input_vitro-read-only_3f-cBbK textarea {
|
|
2029
2020
|
color: #4A556C;
|
|
@@ -2049,18 +2040,32 @@ html, body {
|
|
|
2049
2040
|
color: #8E98A3;
|
|
2050
2041
|
}
|
|
2051
2042
|
|
|
2043
|
+
._input_vitro-focus_1txynr8 input,
|
|
2044
|
+
._input_vitro-focus_1txynr8 textarea {
|
|
2045
|
+
border-color: #3274E0;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
._input_vitro-focus_1txynr8 ._input_vitro-label_2XBESiY {
|
|
2049
|
+
color: #3274E0 !important;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
2052
|
._input_vitro-error_1T3dLzB input,
|
|
2053
2053
|
._input_vitro-error_1T3dLzB textarea {
|
|
2054
2054
|
border-color: #D13438;
|
|
2055
2055
|
}
|
|
2056
2056
|
|
|
2057
2057
|
._input_vitro-error_1T3dLzB ._input_vitro-label_2XBESiY {
|
|
2058
|
-
color: #D13438;
|
|
2058
|
+
color: #D13438 !important;
|
|
2059
2059
|
}
|
|
2060
2060
|
|
|
2061
2061
|
._input_vitro-label_2XBESiY {
|
|
2062
|
+
color: #4A556C;
|
|
2062
2063
|
padding: 0 6px;
|
|
2063
|
-
background:
|
|
2064
|
+
background: transparent;
|
|
2065
|
+
background-image: linear-gradient(#fff, #fff);
|
|
2066
|
+
background-size: 100% 2px;
|
|
2067
|
+
background-position: 0 calc(50% + 3px);
|
|
2068
|
+
background-repeat: no-repeat;
|
|
2064
2069
|
z-index: 1;
|
|
2065
2070
|
position: absolute;
|
|
2066
2071
|
left: 10px;
|
|
@@ -2494,6 +2499,135 @@ html, body {
|
|
|
2494
2499
|
transform: rotate(-90deg);
|
|
2495
2500
|
}
|
|
2496
2501
|
|
|
2502
|
+
._login-content_vitro-login-content_2RdLZle {
|
|
2503
|
+
height: 100%;
|
|
2504
|
+
width: 100%;
|
|
2505
|
+
transition: flex-basis 0.3s ease;
|
|
2506
|
+
display: flex;
|
|
2507
|
+
flex-direction: column;
|
|
2508
|
+
align-items: center;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
._login-content_vitro-login-content_2RdLZle > div {
|
|
2512
|
+
width: 100%;
|
|
2513
|
+
}
|
|
2514
|
+
._login_vitro-login-layout_1C8owlz {
|
|
2515
|
+
width: 100%;
|
|
2516
|
+
height: 100%;
|
|
2517
|
+
background: #347FDE;
|
|
2518
|
+
position: relative;
|
|
2519
|
+
display: flex;
|
|
2520
|
+
align-items: center;
|
|
2521
|
+
justify-content: center;
|
|
2522
|
+
background-size: cover;
|
|
2523
|
+
background-position: center;
|
|
2524
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/login-background.png');
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
._login_vitro-login-layout_1C8owlz::after {
|
|
2528
|
+
content: '';
|
|
2529
|
+
width: 100%;
|
|
2530
|
+
height: 100%;
|
|
2531
|
+
position: absolute;
|
|
2532
|
+
z-index: 10;
|
|
2533
|
+
top: 0;
|
|
2534
|
+
left: 0;
|
|
2535
|
+
opacity: 0.3;
|
|
2536
|
+
background: #000;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
._login_vitro-login_12nYNm2 {
|
|
2540
|
+
width: 468px;
|
|
2541
|
+
overflow: hidden;
|
|
2542
|
+
padding: 71px 36px 24px 36px;
|
|
2543
|
+
border-radius: 8px;
|
|
2544
|
+
display: flex;
|
|
2545
|
+
flex-direction: column;
|
|
2546
|
+
align-items: center;
|
|
2547
|
+
background: #fff;
|
|
2548
|
+
z-index: 100;
|
|
2549
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
2550
|
+
transition: max-height 1s ease;
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
._login_vitro-logo_3-qTjgy {
|
|
2554
|
+
width: 165px;
|
|
2555
|
+
height: 57px;
|
|
2556
|
+
margin-bottom: 34px;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
._login_vitro-footer_1lceaP0 {
|
|
2560
|
+
position: absolute;
|
|
2561
|
+
bottom: 12px;
|
|
2562
|
+
left: 0;
|
|
2563
|
+
width: 100%;
|
|
2564
|
+
display: flex;
|
|
2565
|
+
justify-content: flex-end;
|
|
2566
|
+
align-items: center;
|
|
2567
|
+
z-index: 101;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
._login_vitro-link-list_1rQQg9u {
|
|
2571
|
+
display: flex;
|
|
2572
|
+
align-items: center;
|
|
2573
|
+
list-style: none;
|
|
2574
|
+
margin-bottom: 0;
|
|
2575
|
+
padding: 0;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
._login_vitro-link-list_1rQQg9u > li, ._login_vitro-copyright_1gm65Ao {
|
|
2579
|
+
color: #fff;
|
|
2580
|
+
text-align: center;
|
|
2581
|
+
font-size: 14px;
|
|
2582
|
+
line-height: 135%;
|
|
2583
|
+
white-space: nowrap;
|
|
2584
|
+
margin-right: 24px;
|
|
2585
|
+
display: flex;
|
|
2586
|
+
align-items: center
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2589
|
+
._login_vitro-link-list_1rQQg9u a,
|
|
2590
|
+
._login_vitro-link-list_1rQQg9u a:visited,
|
|
2591
|
+
._login_vitro-link-list_1rQQg9u a:hover {
|
|
2592
|
+
color: #fff;
|
|
2593
|
+
cursor: pointer;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
._login_vitro-language_2T3uktL {
|
|
2597
|
+
height: 24px;
|
|
2598
|
+
width: 24px;
|
|
2599
|
+
margin-right: 24px;
|
|
2600
|
+
background-size: 100%;
|
|
2601
|
+
background-repeat: no-repeat;
|
|
2602
|
+
background-position: center;
|
|
2603
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/ru.svg');
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
._login_vitro-copyright_1gm65Ao::before {
|
|
2607
|
+
content: '';
|
|
2608
|
+
display: inline-block;
|
|
2609
|
+
margin-right: 4px;
|
|
2610
|
+
height: 14px;
|
|
2611
|
+
width: 14px;
|
|
2612
|
+
background-position: center;
|
|
2613
|
+
background-size: 100%;
|
|
2614
|
+
background-repeat: no-repeat;
|
|
2615
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/copyright.svg');
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
@media (max-width: 800px) {
|
|
2619
|
+
._login_vitro-login_12nYNm2 {
|
|
2620
|
+
margin: 0 16px;
|
|
2621
|
+
width: -moz-available !important;
|
|
2622
|
+
width: -webkit-fill-available !important;
|
|
2623
|
+
width: stretch !important;
|
|
2624
|
+
padding: 48px 12px 24px 12px !important;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
._login_vitro-logo_3-qTjgy {
|
|
2628
|
+
margin-bottom: 28px;
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2497
2631
|
._checkbox_vitro-control_DfB5DDM {
|
|
2498
2632
|
width: 100%;
|
|
2499
2633
|
position: relative;
|
|
@@ -2534,7 +2668,7 @@ html, body {
|
|
|
2534
2668
|
}
|
|
2535
2669
|
|
|
2536
2670
|
._checkbox_vitro-label_qZxCbCP {
|
|
2537
|
-
color: #
|
|
2671
|
+
color: #4A556C;
|
|
2538
2672
|
font-size: 14px;
|
|
2539
2673
|
line-height: 135%;
|
|
2540
2674
|
}
|
|
@@ -2548,51 +2682,50 @@ html, body {
|
|
|
2548
2682
|
margin-right: 6px;
|
|
2549
2683
|
}
|
|
2550
2684
|
|
|
2551
|
-
.
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2685
|
+
._password-input_vitro-button-show-password_2jL4nM-,
|
|
2686
|
+
._password-input_vitro-button-hide-password_vPoUeVl {
|
|
2687
|
+
position: absolute;
|
|
2688
|
+
top: 12px;
|
|
2689
|
+
right: 20px;
|
|
2690
|
+
width: 24px;
|
|
2691
|
+
height: 24px;
|
|
2692
|
+
background-size: 100%;
|
|
2557
2693
|
background-position: center;
|
|
2558
|
-
|
|
2694
|
+
cursor: pointer;
|
|
2559
2695
|
}
|
|
2560
2696
|
|
|
2561
|
-
.
|
|
2562
|
-
|
|
2563
|
-
width: 100%;
|
|
2564
|
-
height: 100%;
|
|
2565
|
-
position: absolute;
|
|
2566
|
-
z-index: 10;
|
|
2567
|
-
top: 0;
|
|
2568
|
-
left: 0;
|
|
2569
|
-
opacity: 0.3;
|
|
2570
|
-
background: #000;
|
|
2697
|
+
._password-input_vitro-button-show-password_2jL4nM- {
|
|
2698
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/password-input/img/show-password.svg');
|
|
2571
2699
|
}
|
|
2572
2700
|
|
|
2573
|
-
.
|
|
2574
|
-
|
|
2575
|
-
min-height: 506px;
|
|
2576
|
-
padding: 71px 36px 24px 36px;
|
|
2577
|
-
border-radius: 8px;
|
|
2578
|
-
display: flex;
|
|
2579
|
-
flex-direction: column;
|
|
2580
|
-
align-items: center;
|
|
2581
|
-
background: #fff;
|
|
2582
|
-
position: absolute;
|
|
2583
|
-
z-index: 100;
|
|
2584
|
-
top: calc(50% - 253px);
|
|
2585
|
-
left: calc(50% - 234px);
|
|
2586
|
-
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
2701
|
+
._password-input_vitro-button-hide-password_vPoUeVl {
|
|
2702
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/password-input/img/hide-password.svg');
|
|
2587
2703
|
}
|
|
2588
|
-
|
|
2589
|
-
.
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2704
|
+
|
|
2705
|
+
._link_vitro-link_2ePaXvd, ._link_vitro-link_2ePaXvd:visited {
|
|
2706
|
+
color: #347FDE;
|
|
2707
|
+
text-align: center;
|
|
2708
|
+
font-size: 16px;
|
|
2709
|
+
line-height: 135%;
|
|
2710
|
+
white-space: nowrap;
|
|
2711
|
+
cursor: pointer;
|
|
2593
2712
|
}
|
|
2594
2713
|
|
|
2595
|
-
.
|
|
2714
|
+
._link_vitro-link_2ePaXvd:hover {
|
|
2715
|
+
color: #3274E0;
|
|
2716
|
+
}
|
|
2717
|
+
._login-submit-button_vitro-submit-button_1TFkn8x {
|
|
2718
|
+
font-family: 'InterMedium' !important;
|
|
2719
|
+
width: 100%;
|
|
2720
|
+
min-height: 48px;
|
|
2721
|
+
height: 48px !important;
|
|
2722
|
+
font-size: 18px !important;
|
|
2723
|
+
line-height: 135%;
|
|
2724
|
+
margin-top: 20px;
|
|
2725
|
+
box-shadow: 0px 4px 16px 0px rgba(52, 117, 199, 0.15);
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
._login-title_vitro-login-title_3Y4jqav {
|
|
2596
2729
|
color: #222D44;
|
|
2597
2730
|
text-align: center;
|
|
2598
2731
|
font-family: 'InterMedium';
|
|
@@ -2600,8 +2733,12 @@ html, body {
|
|
|
2600
2733
|
line-height: 135%;
|
|
2601
2734
|
margin-bottom: 25px;
|
|
2602
2735
|
}
|
|
2736
|
+
|
|
2737
|
+
._login-form_vitro-title_3hbcdDr {
|
|
2738
|
+
margin-bottom: 45px;
|
|
2739
|
+
}
|
|
2603
2740
|
|
|
2604
|
-
.
|
|
2741
|
+
._login-form_vitro-flex_fxG_Mos {
|
|
2605
2742
|
width: 100%;
|
|
2606
2743
|
display: flex;
|
|
2607
2744
|
justify-content: space-between;
|
|
@@ -2611,11 +2748,11 @@ html, body {
|
|
|
2611
2748
|
height: 24px;
|
|
2612
2749
|
}
|
|
2613
2750
|
|
|
2614
|
-
.
|
|
2751
|
+
._login-form_vitro-flex_fxG_Mos._login-form_vitro-error_2-jVYfA {
|
|
2615
2752
|
margin-top: 11px;
|
|
2616
2753
|
}
|
|
2617
2754
|
|
|
2618
|
-
.
|
|
2755
|
+
._login-form_vitro-link_2LCXwY2, vitro-link-register, ._login-form_vitro-link_2LCXwY2:visited {
|
|
2619
2756
|
color: #347FDE;
|
|
2620
2757
|
text-align: center;
|
|
2621
2758
|
font-size: 16px;
|
|
@@ -2624,23 +2761,22 @@ html, body {
|
|
|
2624
2761
|
cursor: pointer;
|
|
2625
2762
|
}
|
|
2626
2763
|
|
|
2627
|
-
.
|
|
2764
|
+
._login-form_vitro-link_2LCXwY2:hover {
|
|
2628
2765
|
color: #3274E0;
|
|
2629
2766
|
}
|
|
2630
2767
|
|
|
2631
|
-
.
|
|
2632
|
-
margin
|
|
2768
|
+
._login-form_vitro-separator_P7hw9MH {
|
|
2769
|
+
margin: 24px 0;
|
|
2633
2770
|
color: #4A556C;
|
|
2634
2771
|
text-align: center;
|
|
2635
2772
|
font-size: 18px;
|
|
2636
2773
|
line-height: 135%;
|
|
2637
2774
|
width: -moz-fit-content;
|
|
2638
2775
|
width: fit-content;
|
|
2639
|
-
margin-top: auto;
|
|
2640
2776
|
}
|
|
2641
2777
|
|
|
2642
|
-
.
|
|
2643
|
-
.
|
|
2778
|
+
._login-form_vitro-separator_P7hw9MH::before,
|
|
2779
|
+
._login-form_vitro-separator_P7hw9MH::after {
|
|
2644
2780
|
content: '';
|
|
2645
2781
|
display: inline-block;
|
|
2646
2782
|
height: 1px;
|
|
@@ -2649,28 +2785,28 @@ html, body {
|
|
|
2649
2785
|
vertical-align: middle;
|
|
2650
2786
|
}
|
|
2651
2787
|
|
|
2652
|
-
.
|
|
2788
|
+
._login-form_vitro-separator_P7hw9MH::before {
|
|
2653
2789
|
margin-right: 30px;
|
|
2654
2790
|
}
|
|
2655
2791
|
|
|
2656
|
-
.
|
|
2792
|
+
._login-form_vitro-separator_P7hw9MH::after {
|
|
2657
2793
|
margin-left: 30px;
|
|
2658
2794
|
}
|
|
2659
2795
|
|
|
2660
|
-
.
|
|
2661
|
-
.
|
|
2796
|
+
._login-form_vitro-control_1Th9h7G,
|
|
2797
|
+
._login-form_vitro-password-control_2_Eo-gN {
|
|
2662
2798
|
margin-bottom: 0;
|
|
2663
2799
|
margin-top: 20px;
|
|
2664
2800
|
max-height: 69px;
|
|
2665
2801
|
}
|
|
2666
2802
|
|
|
2667
|
-
.
|
|
2803
|
+
._login-form_vitro-control_1Th9h7G > div {
|
|
2668
2804
|
font-size: 16px !important;
|
|
2669
2805
|
line-height: 27px !important;
|
|
2670
2806
|
top: -16px !important;
|
|
2671
2807
|
}
|
|
2672
2808
|
|
|
2673
|
-
.
|
|
2809
|
+
._login-form_vitro-control_1Th9h7G input {
|
|
2674
2810
|
height: 48px !important;
|
|
2675
2811
|
font-size: 18px !important;
|
|
2676
2812
|
line-height: 135% !important;
|
|
@@ -2678,7 +2814,7 @@ html, body {
|
|
|
2678
2814
|
box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
|
|
2679
2815
|
}
|
|
2680
2816
|
|
|
2681
|
-
.
|
|
2817
|
+
._login-form_vitro-control_1Th9h7G input::-moz-placeholder {
|
|
2682
2818
|
color: #6C757D;
|
|
2683
2819
|
font-family: 'InterRegular';
|
|
2684
2820
|
font-size: 18px;
|
|
@@ -2686,7 +2822,7 @@ html, body {
|
|
|
2686
2822
|
line-height: 135%;
|
|
2687
2823
|
}
|
|
2688
2824
|
|
|
2689
|
-
.
|
|
2825
|
+
._login-form_vitro-control_1Th9h7G input::placeholder {
|
|
2690
2826
|
color: #6C757D;
|
|
2691
2827
|
font-family: 'InterRegular';
|
|
2692
2828
|
font-size: 18px;
|
|
@@ -2694,138 +2830,264 @@ html, body {
|
|
|
2694
2830
|
line-height: 135%;
|
|
2695
2831
|
}
|
|
2696
2832
|
|
|
2697
|
-
.
|
|
2833
|
+
._login-form_vitro-login-checkbox_1eoT81X {
|
|
2698
2834
|
margin-bottom: 0;
|
|
2699
2835
|
}
|
|
2700
2836
|
|
|
2701
|
-
.
|
|
2837
|
+
._login-form_vitro-login-checkbox_1eoT81X div {
|
|
2702
2838
|
font-size: 16px;
|
|
2703
2839
|
}
|
|
2704
2840
|
|
|
2705
|
-
.
|
|
2706
|
-
font-family: 'InterMedium' !important;
|
|
2841
|
+
._login-form_vitro-button-list_1-9qryi {
|
|
2707
2842
|
width: 100%;
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
margin-
|
|
2712
|
-
box-shadow: 0px 4px 16px 0px rgba(52, 117, 199, 0.15);
|
|
2843
|
+
display: flex;
|
|
2844
|
+
flex-direction: column;
|
|
2845
|
+
grid-gap: 12px;
|
|
2846
|
+
margin-bottom: 12px;
|
|
2713
2847
|
}
|
|
2714
2848
|
|
|
2715
|
-
.
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
left: 0;
|
|
2849
|
+
._login-form_vitro-button_r2KCJ7k {
|
|
2850
|
+
min-height: 48px;
|
|
2851
|
+
height: 48px;
|
|
2719
2852
|
width: 100%;
|
|
2853
|
+
font-family: 'InterRegular';
|
|
2854
|
+
color: #222D44;
|
|
2855
|
+
font-size: 18px;
|
|
2856
|
+
line-height: 135%;
|
|
2857
|
+
background-color: #fff;
|
|
2858
|
+
outline: none;
|
|
2859
|
+
border-radius: 4px;
|
|
2860
|
+
border: 1px solid #C0CAD5;
|
|
2720
2861
|
display: flex;
|
|
2721
|
-
justify-content: flex-end;
|
|
2722
2862
|
align-items: center;
|
|
2723
|
-
|
|
2863
|
+
justify-content: center;
|
|
2864
|
+
grid-gap: 12px;
|
|
2724
2865
|
}
|
|
2725
2866
|
|
|
2726
|
-
.
|
|
2867
|
+
._login-form_vitro-button_r2KCJ7k .vitro-image {
|
|
2868
|
+
margin-right: 12px;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
._login-form_vitro-button_r2KCJ7k:hover,
|
|
2872
|
+
._login-form_vitro-button_r2KCJ7k:active {
|
|
2873
|
+
background-color: #F3F8FF;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
@media (max-width: 800px) {
|
|
2877
|
+
._login-form_vitro-login-checkbox_1eoT81X div {
|
|
2878
|
+
font-size: 14px !important;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
._login-form_vitro-link_2LCXwY2 {
|
|
2882
|
+
font-size: 14px !important;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
._login-form_vitro-link-register_zUIL_1f {
|
|
2886
|
+
font-size: 16px !important;
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
._login-form_vitro-separator_P7hw9MH::before,
|
|
2890
|
+
._login-form_vitro-separator_P7hw9MH::after {
|
|
2891
|
+
width: calc((100% - 93px) / 2) !important;
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
._login-form_vitro-separator_P7hw9MH {
|
|
2895
|
+
width: 100% !important;
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
._login-form_vitro-control_1Th9h7G input {
|
|
2899
|
+
-webkit-box-shadow: inset 0 0 0 50px white;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
._login-form_vitro-title_3hbcdDr {
|
|
2903
|
+
margin-bottom: 16px;
|
|
2904
|
+
font-size: 24px;
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
._login-go-back-link_vitro-link_103lWHm {
|
|
2908
|
+
font-family: 'InterMedium';
|
|
2909
|
+
}
|
|
2910
|
+
|
|
2911
|
+
._login-go-back-link_vitro-link_103lWHm:hover {
|
|
2912
|
+
color: #3274E0;
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
._two-factor-authentication-form_vitro-two-factor-authentication-form_2BAlkOL {
|
|
2916
|
+
width: 100%;
|
|
2917
|
+
height: 486px;
|
|
2918
|
+
max-height: 486px;
|
|
2919
|
+
flex-shrink: 0;
|
|
2727
2920
|
display: flex;
|
|
2921
|
+
flex-direction: column;
|
|
2728
2922
|
align-items: center;
|
|
2729
|
-
list-style: none;
|
|
2730
|
-
margin-bottom: 0;
|
|
2731
|
-
padding: 0;
|
|
2732
2923
|
}
|
|
2733
2924
|
|
|
2734
|
-
.
|
|
2735
|
-
color: #
|
|
2925
|
+
._two-factor-authentication-form_vitro-title_2TyfWcR {
|
|
2926
|
+
color: #222D44;
|
|
2927
|
+
text-align: center;
|
|
2928
|
+
font-family: 'InterMedium';
|
|
2929
|
+
font-size: 32px;
|
|
2930
|
+
line-height: 135%;
|
|
2931
|
+
margin-top: 32px;
|
|
2932
|
+
margin-bottom: 25px;
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
._two-factor-authentication-form_vitro-subtitle_aP8TzSj {
|
|
2936
|
+
font-size: 16px;
|
|
2937
|
+
line-height: 135%;
|
|
2938
|
+
color: #222D44;
|
|
2939
|
+
margin-bottom: 24px;
|
|
2940
|
+
text-align: center;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
._two-factor-authentication-form_vitro-subtitle_aP8TzSj div {
|
|
2736
2944
|
text-align: center;
|
|
2737
|
-
font-size: 14px;
|
|
2738
|
-
line-height: 135%;
|
|
2739
2945
|
white-space: nowrap;
|
|
2740
|
-
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
._two-factor-authentication-form_vitro-subtitle_aP8TzSj span {
|
|
2949
|
+
white-space: nowrap;
|
|
2950
|
+
font-family: 'InterMedium';
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
._two-factor-authentication-form_vitro-control_DMLipzl {
|
|
2954
|
+
margin-bottom: 8px;
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
._two-factor-authentication-form_vitro-link-resend-code_1TOWPEe {
|
|
2958
|
+
font-family: 'InterMedium';
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
._two-factor-authentication-form_vitro-link-resend-code_1TOWPEe {
|
|
2962
|
+
height: 40px;
|
|
2963
|
+
margin-bottom: 18px;
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
._two-factor-authentication-form_vitro-description_2mhz2nj,
|
|
2967
|
+
._two-factor-authentication-form_vitro-resend-code-description_9WkdV6i {
|
|
2968
|
+
font-family: 'InterMedium';
|
|
2969
|
+
font-size: 14px;
|
|
2970
|
+
line-height: 135%;
|
|
2971
|
+
color: #6C757D;
|
|
2972
|
+
width: -moz-fit-content;
|
|
2973
|
+
width: fit-content;
|
|
2974
|
+
max-width: 259px;
|
|
2975
|
+
text-align: center;
|
|
2741
2976
|
display: flex;
|
|
2742
|
-
align-items: center
|
|
2977
|
+
align-items: center;
|
|
2743
2978
|
}
|
|
2744
2979
|
|
|
2745
|
-
.
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
color: #fff;
|
|
2749
|
-
cursor: pointer;
|
|
2980
|
+
._two-factor-authentication-form_vitro-resend-code-description_9WkdV6i {
|
|
2981
|
+
height: 40px;
|
|
2982
|
+
margin-bottom: 18px;
|
|
2750
2983
|
}
|
|
2751
2984
|
|
|
2752
|
-
.
|
|
2753
|
-
|
|
2985
|
+
._two-factor-authentication-form_vitro-flex_3mAp0Js {
|
|
2986
|
+
display: flex;
|
|
2987
|
+
flex-direction: column;
|
|
2988
|
+
align-items: baseline;
|
|
2989
|
+
justify-content: space-between;
|
|
2990
|
+
width: 100%;
|
|
2991
|
+
flex: 1 1;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
._two-factor-authentication-form_vitro-clock_3_ffAz_::before {
|
|
2995
|
+
content: '';
|
|
2996
|
+
display: block;
|
|
2754
2997
|
width: 24px;
|
|
2755
|
-
|
|
2998
|
+
height: 24px;
|
|
2999
|
+
flex-shrink: 0;
|
|
3000
|
+
margin-right: 8px;
|
|
2756
3001
|
background-size: 100%;
|
|
2757
3002
|
background-repeat: no-repeat;
|
|
2758
3003
|
background-position: center;
|
|
2759
|
-
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/
|
|
3004
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/clock.svg');
|
|
2760
3005
|
}
|
|
2761
3006
|
|
|
2762
|
-
.
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
3007
|
+
._two-factor-authentication-form_vitro-button_3hpMWyE {
|
|
3008
|
+
margin-top: 16px;
|
|
3009
|
+
margin-bottom: 32px;
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3012
|
+
._two-factor-authentication-form_vitro-control_DMLipzl > div {
|
|
3013
|
+
font-size: 16px !important;
|
|
3014
|
+
line-height: 27px !important;
|
|
3015
|
+
top: -16px !important;
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
._two-factor-authentication-form_vitro-control_DMLipzl input {
|
|
3019
|
+
height: 48px !important;
|
|
3020
|
+
font-size: 18px !important;
|
|
3021
|
+
line-height: 135% !important;
|
|
3022
|
+
padding: 12px 44px 12px 20px !important;
|
|
3023
|
+
box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
._two-factor-authentication-form_vitro-email_qxiJm1M {
|
|
3027
|
+
white-space: nowrap;
|
|
3028
|
+
align-items: center;
|
|
3029
|
+
height: 22px;
|
|
3030
|
+
display: inline-flex;
|
|
2772
3031
|
}
|
|
2773
3032
|
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
3033
|
+
._two-factor-authentication-form_vitro-hidden-symbol_12uh3tN {
|
|
3034
|
+
margin-right: 3px;
|
|
3035
|
+
letter-spacing: -2px;
|
|
3036
|
+
font-size: 18px;
|
|
3037
|
+
margin-right: 3px;
|
|
3038
|
+
display: flex;
|
|
3039
|
+
align-items: baseline;
|
|
3040
|
+
}
|
|
2782
3041
|
|
|
2783
|
-
|
|
2784
|
-
font-size: 16px !important;
|
|
2785
|
-
}
|
|
3042
|
+
@media (max-width: 800px) {
|
|
2786
3043
|
|
|
2787
|
-
.
|
|
2788
|
-
|
|
2789
|
-
|
|
3044
|
+
._two-factor-authentication-form_vitro-two-factor-authentication-form_2BAlkOL {
|
|
3045
|
+
height: 452px;
|
|
3046
|
+
max-height: 452px;
|
|
2790
3047
|
}
|
|
2791
3048
|
|
|
2792
|
-
.
|
|
2793
|
-
|
|
3049
|
+
._two-factor-authentication-form_vitro-title_2TyfWcR {
|
|
3050
|
+
margin-bottom: 16px;
|
|
3051
|
+
margin-top: 0;
|
|
3052
|
+
font-size: 24px;
|
|
2794
3053
|
}
|
|
2795
3054
|
|
|
2796
|
-
.
|
|
2797
|
-
|
|
2798
|
-
width: -moz-available !important;
|
|
2799
|
-
width: -webkit-fill-available !important;
|
|
2800
|
-
width: stretch !important;
|
|
2801
|
-
left: 0 !important;
|
|
2802
|
-
padding: 71px 12px 24px 12px !important;
|
|
3055
|
+
._two-factor-authentication-form_vitro-subtitle_aP8TzSj div {
|
|
3056
|
+
white-space: normal;
|
|
2803
3057
|
}
|
|
2804
3058
|
|
|
2805
|
-
._login_vitro-control_3YqxIR2 input {
|
|
2806
|
-
-webkit-box-shadow: inset 0 0 0 50px white;
|
|
2807
|
-
}
|
|
2808
3059
|
}
|
|
2809
|
-
.
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
height: 24px;
|
|
2816
|
-
background-size: 100%;
|
|
2817
|
-
background-position: center;
|
|
2818
|
-
cursor: pointer;
|
|
3060
|
+
._ntlm-authentication-form_vitro-ntlm-authentication-form_cZo4EPu {
|
|
3061
|
+
width: 100%;
|
|
3062
|
+
height: 289px;
|
|
3063
|
+
display: flex;
|
|
3064
|
+
flex-direction: column;
|
|
3065
|
+
align-items: center;
|
|
2819
3066
|
}
|
|
2820
3067
|
|
|
2821
|
-
.
|
|
2822
|
-
|
|
3068
|
+
._ntlm-authentication-form_vitro-content_1CCJ4Md {
|
|
3069
|
+
display: flex;
|
|
3070
|
+
flex-direction: column;
|
|
3071
|
+
align-items: center;
|
|
3072
|
+
grid-gap: 16px;
|
|
3073
|
+
margin-top: 20px;
|
|
3074
|
+
margin-bottom: auto;
|
|
2823
3075
|
}
|
|
2824
3076
|
|
|
2825
|
-
.
|
|
2826
|
-
|
|
3077
|
+
._ntlm-authentication-form_vitro-content_1CCJ4Md span {
|
|
3078
|
+
font-size: 18px;
|
|
3079
|
+
line-height: 135%;
|
|
3080
|
+
text-align: center;
|
|
2827
3081
|
}
|
|
2828
|
-
|
|
3082
|
+
|
|
3083
|
+
._ntlm-authentication-form_vitro-image_1rt02c3 {
|
|
3084
|
+
width: 48px;
|
|
3085
|
+
height: 48px;
|
|
3086
|
+
background-size: 100%;
|
|
3087
|
+
background-position: center;
|
|
3088
|
+
background-repeat: no-repeat;
|
|
3089
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/login/img/windows-logo.svg');
|
|
3090
|
+
}
|
|
2829
3091
|
._date-picker_vitro-control_2AYXegb {
|
|
2830
3092
|
margin-bottom: 22px;
|
|
2831
3093
|
width: 100%;
|
|
@@ -2887,10 +3149,6 @@ html, body {
|
|
|
2887
3149
|
line-height: 16px;
|
|
2888
3150
|
}
|
|
2889
3151
|
|
|
2890
|
-
._date-picker_vitro-focus_2cJKcKr ._date-picker_vitro-label_2jh9qxb {
|
|
2891
|
-
color: #3274E0;
|
|
2892
|
-
}
|
|
2893
|
-
|
|
2894
3152
|
._date-picker_vitro-read-only_2NZoMN5 input {
|
|
2895
3153
|
color: #4A556C;
|
|
2896
3154
|
font-size: 12px;
|
|
@@ -2908,13 +3166,22 @@ html, body {
|
|
|
2908
3166
|
display: none !important;
|
|
2909
3167
|
}
|
|
2910
3168
|
|
|
3169
|
+
._date-picker_vitro-focus_2cJKcKr ._date-picker_vitro-label_2jh9qxb {
|
|
3170
|
+
color: #3274E0;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
2911
3173
|
._date-picker_vitro-error_3DkgZiN ._date-picker_vitro-label_2jh9qxb {
|
|
2912
3174
|
color: #D13438;
|
|
2913
3175
|
}
|
|
2914
3176
|
|
|
2915
3177
|
._date-picker_vitro-label_2jh9qxb {
|
|
3178
|
+
color: #4A556C;
|
|
2916
3179
|
padding: 0 6px;
|
|
2917
|
-
background:
|
|
3180
|
+
background: transparent;
|
|
3181
|
+
background-image: linear-gradient(#fff, #fff);
|
|
3182
|
+
background-size: 100% 2px;
|
|
3183
|
+
background-position: 0 calc(50% + 3px);
|
|
3184
|
+
background-repeat: no-repeat;
|
|
2918
3185
|
z-index: 1;
|
|
2919
3186
|
position: absolute;
|
|
2920
3187
|
left: 10px;
|
|
@@ -3229,18 +3496,6 @@ html, body {
|
|
|
3229
3496
|
line-height: 16px;
|
|
3230
3497
|
}
|
|
3231
3498
|
|
|
3232
|
-
._time-picker_vitro-focus_wmhPjvE ._time-picker_vitro-label_2b97aCy {
|
|
3233
|
-
color: #3274E0;
|
|
3234
|
-
}
|
|
3235
|
-
|
|
3236
|
-
._time-picker_vitro-focus_wmhPjvE .k-picker-wrap {
|
|
3237
|
-
border-color: #3274E0 !important;
|
|
3238
|
-
}
|
|
3239
|
-
|
|
3240
|
-
._time-picker_vitro-error_2ZmK0I5 .k-picker-wrap {
|
|
3241
|
-
border-color: #D13438 !important;
|
|
3242
|
-
}
|
|
3243
|
-
|
|
3244
3499
|
._time-picker_vitro-read-only_NlE18Zm input {
|
|
3245
3500
|
color: #4A556C;
|
|
3246
3501
|
font-size: 12px;
|
|
@@ -3258,13 +3513,30 @@ html, body {
|
|
|
3258
3513
|
display: none;
|
|
3259
3514
|
}
|
|
3260
3515
|
|
|
3516
|
+
._time-picker_vitro-focus_wmhPjvE ._time-picker_vitro-label_2b97aCy {
|
|
3517
|
+
color: #3274E0;
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
._time-picker_vitro-focus_wmhPjvE .k-picker-wrap {
|
|
3521
|
+
border-color: #3274E0 !important;
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
._time-picker_vitro-error_2ZmK0I5 .k-picker-wrap {
|
|
3525
|
+
border-color: #D13438 !important;
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3261
3528
|
._time-picker_vitro-error_2ZmK0I5 ._time-picker_vitro-label_2b97aCy {
|
|
3262
3529
|
color: #D13438;
|
|
3263
3530
|
}
|
|
3264
3531
|
|
|
3265
3532
|
._time-picker_vitro-label_2b97aCy {
|
|
3533
|
+
color: #4A556C;
|
|
3266
3534
|
padding: 0 6px;
|
|
3267
|
-
background:
|
|
3535
|
+
background: transparent;
|
|
3536
|
+
background-image: linear-gradient(#fff, #fff);
|
|
3537
|
+
background-size: 100% 2px;
|
|
3538
|
+
background-position: 0 calc(50% + 3px);
|
|
3539
|
+
background-repeat: no-repeat;
|
|
3268
3540
|
z-index: 1;
|
|
3269
3541
|
position: absolute;
|
|
3270
3542
|
left: 10px;
|
|
@@ -3640,14 +3912,6 @@ html, body {
|
|
|
3640
3912
|
flex-wrap: wrap;
|
|
3641
3913
|
}
|
|
3642
3914
|
|
|
3643
|
-
._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-content_37L0slb {
|
|
3644
|
-
border-color: #3274E0;
|
|
3645
|
-
}
|
|
3646
|
-
|
|
3647
|
-
._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-label_2QoJkUz {
|
|
3648
|
-
color: #3274E0;
|
|
3649
|
-
}
|
|
3650
|
-
|
|
3651
3915
|
._lookup-picker_vitro-read-only_32NOdGB ._lookup-picker_vitro-content_37L0slb {
|
|
3652
3916
|
color: #4A556C;
|
|
3653
3917
|
font-size: 12px;
|
|
@@ -3670,6 +3934,14 @@ html, body {
|
|
|
3670
3934
|
color: #4A556C;
|
|
3671
3935
|
}
|
|
3672
3936
|
|
|
3937
|
+
._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-content_37L0slb {
|
|
3938
|
+
border-color: #3274E0;
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-label_2QoJkUz {
|
|
3942
|
+
color: #3274E0;
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3673
3945
|
._lookup-picker_vitro-error_dF7iopC ._lookup-picker_vitro-content_37L0slb {
|
|
3674
3946
|
border-color: #D13438;
|
|
3675
3947
|
}
|
|
@@ -3679,8 +3951,13 @@ html, body {
|
|
|
3679
3951
|
}
|
|
3680
3952
|
|
|
3681
3953
|
._lookup-picker_vitro-label_2QoJkUz {
|
|
3954
|
+
color: #4A556C;
|
|
3682
3955
|
padding: 0 6px;
|
|
3683
|
-
background:
|
|
3956
|
+
background: transparent;
|
|
3957
|
+
background-image: linear-gradient(#fff, #fff);
|
|
3958
|
+
background-size: 100% 2px;
|
|
3959
|
+
background-position: 0 calc(50% + 3px);
|
|
3960
|
+
background-repeat: no-repeat;
|
|
3684
3961
|
z-index: 1;
|
|
3685
3962
|
position: absolute;
|
|
3686
3963
|
left: 10px;
|
|
@@ -4114,11 +4391,8 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
4114
4391
|
width: fit-content;
|
|
4115
4392
|
align-items: center;
|
|
4116
4393
|
overflow: hidden;
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
4121
|
-
background-color: transparent;
|
|
4394
|
+
height: 100%;
|
|
4395
|
+
flex-shrink: 1;
|
|
4122
4396
|
}
|
|
4123
4397
|
|
|
4124
4398
|
._sidebar-item_vitro-item-text_1kK_aIZ {
|
|
@@ -4210,18 +4484,28 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4210
4484
|
display: none;
|
|
4211
4485
|
}
|
|
4212
4486
|
|
|
4487
|
+
.vitro-bottom-menu ._sidebar-item_vitro-item_1BR_7F0 a > div,
|
|
4488
|
+
.vitro-bottom-menu ._sidebar-item_vitro-item_1BR_7F0 button > div {
|
|
4489
|
+
flex-direction: column;
|
|
4490
|
+
height: 100%;
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4213
4493
|
.vitro-bottom-menu ._sidebar-item_vitro-item-text_1kK_aIZ {
|
|
4214
|
-
display: block;
|
|
4215
4494
|
color: #4A556C;
|
|
4216
|
-
font-size:
|
|
4217
|
-
line-height:
|
|
4495
|
+
font-size: 11px;
|
|
4496
|
+
line-height: 11px;
|
|
4218
4497
|
text-align: center;
|
|
4219
4498
|
overflow: visible;
|
|
4220
4499
|
white-space: normal;
|
|
4500
|
+
margin: auto;
|
|
4501
|
+
display: -webkit-box;
|
|
4502
|
+
-webkit-line-clamp: 2;
|
|
4503
|
+
-webkit-box-orient: vertical;
|
|
4221
4504
|
}
|
|
4222
4505
|
|
|
4223
4506
|
.vitro-bottom-menu ._sidebar-item_vitro-image_2A82YI0 {
|
|
4224
4507
|
margin-right: 0;
|
|
4508
|
+
margin-bottom: 4px;
|
|
4225
4509
|
}
|
|
4226
4510
|
|
|
4227
4511
|
.vitro-bottom-menu ._sidebar-item_vitro-active_7p5iOhY {
|
|
@@ -4306,6 +4590,10 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4306
4590
|
width: 100% !important;
|
|
4307
4591
|
}
|
|
4308
4592
|
|
|
4593
|
+
._sidebar-item_vitro-popup-item-list_JUwcoZB ._sidebar-item_vitro-item_1BR_7F0:last-child {
|
|
4594
|
+
margin-bottom: 16px;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4309
4597
|
._sidebar-item_vitro-popup-item-list_JUwcoZB ._sidebar-item_vitro-item_1BR_7F0 > a,
|
|
4310
4598
|
._sidebar-item_vitro-popup-item-list_JUwcoZB ._sidebar-item_vitro-item_1BR_7F0 > button {
|
|
4311
4599
|
background-color: #fff;
|
|
@@ -4390,19 +4678,6 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4390
4678
|
justify-content: space-between;
|
|
4391
4679
|
}
|
|
4392
4680
|
|
|
4393
|
-
._sidebar_vitro-sidebar_1IxGYiU ul > li:last-child > ul > li:last-child a:hover {
|
|
4394
|
-
background-color: transparent;
|
|
4395
|
-
}
|
|
4396
|
-
|
|
4397
|
-
._sidebar_vitro-sidebar_1IxGYiU ul > li:last-child > ul > li:last-child span {
|
|
4398
|
-
color: #8D8D8D;
|
|
4399
|
-
font-size: 10px;
|
|
4400
|
-
}
|
|
4401
|
-
|
|
4402
|
-
._sidebar_vitro-sidebar_1IxGYiU ul > li:last-child > ul > li:last-child span:hover {
|
|
4403
|
-
font-weight: 400 !important;
|
|
4404
|
-
}
|
|
4405
|
-
|
|
4406
4681
|
._sidebar_vitro-scrollbar_2PtQGQD .ps__rail-y {
|
|
4407
4682
|
background-color: transparent !important;
|
|
4408
4683
|
border: none;
|
|
@@ -4410,21 +4685,42 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4410
4685
|
|
|
4411
4686
|
._sidebar_vitro-scrollbar_2PtQGQD > div:first-child {
|
|
4412
4687
|
padding: 0 8px;
|
|
4688
|
+
display: flex;
|
|
4689
|
+
flex-direction: column;
|
|
4413
4690
|
}
|
|
4414
4691
|
|
|
4415
4692
|
._sidebar_vitro-sidebar-section-list_1nGto5m {
|
|
4416
|
-
height: 100%;
|
|
4417
4693
|
display: flex;
|
|
4418
4694
|
flex-direction: column;
|
|
4419
4695
|
justify-content: space-between;
|
|
4696
|
+
flex: 1 0;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
._sidebar_vitro-sidebar-section-list_1nGto5m > li::before {
|
|
4700
|
+
display: block;
|
|
4701
|
+
content: '';
|
|
4702
|
+
background: #E4E6EC;
|
|
4703
|
+
margin: 0 auto;
|
|
4704
|
+
min-width: 40px;
|
|
4705
|
+
width: calc(100% - 16px);
|
|
4706
|
+
height: 1px;
|
|
4707
|
+
margin-bottom: 4px;
|
|
4708
|
+
}
|
|
4709
|
+
|
|
4710
|
+
._sidebar_vitro-sidebar-section-list_1nGto5m > li:first-child::before {
|
|
4711
|
+
display: none;
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4714
|
+
.vitro-bottom-menu ._sidebar_vitro-sidebar-section-list_1nGto5m > li::before {
|
|
4715
|
+
display: none;
|
|
4420
4716
|
}
|
|
4421
4717
|
|
|
4422
4718
|
.vitro-bottom-menu {
|
|
4423
4719
|
width: 100%;
|
|
4424
4720
|
z-index: 2;
|
|
4425
4721
|
flex-direction: row;
|
|
4426
|
-
height:
|
|
4427
|
-
padding: 0
|
|
4722
|
+
height: 66px;
|
|
4723
|
+
padding: 0 0 0 12px !important;
|
|
4428
4724
|
background: #fff;
|
|
4429
4725
|
bottom: 0;
|
|
4430
4726
|
top: initial;
|
|
@@ -4451,24 +4747,72 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4451
4747
|
transition: 1s all ease;
|
|
4452
4748
|
}
|
|
4453
4749
|
|
|
4454
|
-
._sidebar_vitro-button-more_3s9oZY9
|
|
4750
|
+
._sidebar_vitro-button-more_3s9oZY9,
|
|
4751
|
+
._sidebar_vitro-button-more_3s9oZY9:hover,
|
|
4752
|
+
._sidebar_vitro-button-more_3s9oZY9:active {
|
|
4455
4753
|
display: block;
|
|
4456
4754
|
width: 40px;
|
|
4457
|
-
height:
|
|
4755
|
+
height: 100%;
|
|
4458
4756
|
min-width: 40px;
|
|
4757
|
+
outline: none;
|
|
4758
|
+
border-top-right-radius: 4px;
|
|
4459
4759
|
border: none;
|
|
4460
|
-
|
|
4760
|
+
border-left: 1px solid #E4E6EC;
|
|
4761
|
+
background-color: #F7F9FC;
|
|
4461
4762
|
background-size: 100%;
|
|
4462
4763
|
background-position: center;
|
|
4463
4764
|
background-repeat: no-repeat;
|
|
4464
|
-
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/sidebar/img/bottom-menu-button-
|
|
4765
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/sidebar/img/bottom-menu-button-next.svg');
|
|
4465
4766
|
}
|
|
4466
4767
|
|
|
4467
|
-
._sidebar_vitro-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4768
|
+
._sidebar_vitro-logo-container_31O5Ly- {
|
|
4769
|
+
width: 100%;
|
|
4770
|
+
height: 40px;
|
|
4771
|
+
padding: 0 8px;
|
|
4772
|
+
margin-bottom: 4px;
|
|
4773
|
+
}
|
|
4774
|
+
|
|
4775
|
+
._sidebar_vitro-logo-container_31O5Ly-::before {
|
|
4776
|
+
display: block;
|
|
4777
|
+
content: '';
|
|
4778
|
+
background: #E4E6EC;
|
|
4779
|
+
margin: 0 auto;
|
|
4780
|
+
min-width: 40px;
|
|
4781
|
+
width: calc(100% - 16px);
|
|
4782
|
+
height: 1px;
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
._sidebar_vitro-logo_1qxi8L_ {
|
|
4786
|
+
display: flex;
|
|
4787
|
+
width: -moz-fit-content;
|
|
4788
|
+
width: fit-content;
|
|
4789
|
+
align-items: center;
|
|
4790
|
+
width: 100%;
|
|
4791
|
+
height: 40px;
|
|
4792
|
+
padding: 8px;
|
|
4793
|
+
}
|
|
4794
|
+
|
|
4795
|
+
._sidebar_vitro-logo_1qxi8L_ span {
|
|
4796
|
+
color: #8D8D8D !important;
|
|
4797
|
+
font-size: 10px !important;
|
|
4798
|
+
overflow: hidden;
|
|
4799
|
+
text-overflow: ellipsis;
|
|
4800
|
+
white-space: nowrap;
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
.vitro-bottom-menu ._sidebar_vitro-logo_1qxi8L_ {
|
|
4804
|
+
flex-direction: column;
|
|
4805
|
+
justify-content: space-between;
|
|
4806
|
+
height: 100%;
|
|
4807
|
+
padding: 0;
|
|
4808
|
+
margin-bottom: 0;
|
|
4809
|
+
}
|
|
4810
|
+
|
|
4811
|
+
._sidebar_vitro-scroll-content_2RUBhZd {
|
|
4812
|
+
display: flex;
|
|
4813
|
+
flex-direction: row;
|
|
4814
|
+
height: 100%;
|
|
4815
|
+
transition: 1s all ease;
|
|
4472
4816
|
}
|
|
4473
4817
|
._activity-item_vitro-item_3Tprske {
|
|
4474
4818
|
margin-bottom: 16px;
|
|
@@ -5405,8 +5749,13 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
5405
5749
|
}
|
|
5406
5750
|
|
|
5407
5751
|
._criterion_vitro-label_3F6a8dj {
|
|
5752
|
+
color: #4A556C;
|
|
5408
5753
|
padding: 0 6px;
|
|
5409
|
-
background:
|
|
5754
|
+
background: transparent;
|
|
5755
|
+
background-image: linear-gradient(#fff, #fff);
|
|
5756
|
+
background-size: 100% 2px;
|
|
5757
|
+
background-position: 0 calc(50% + 3px);
|
|
5758
|
+
background-repeat: no-repeat;
|
|
5410
5759
|
z-index: 1;
|
|
5411
5760
|
position: absolute;
|
|
5412
5761
|
left: 10px;
|
|
@@ -6186,7 +6535,7 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
6186
6535
|
width: calc(100% - 24px);
|
|
6187
6536
|
margin: 0 auto;
|
|
6188
6537
|
border-radius: 4px 4px 0px 0px;
|
|
6189
|
-
height: calc(100% -
|
|
6538
|
+
height: calc(100% - 136px);
|
|
6190
6539
|
padding-bottom: 16px;
|
|
6191
6540
|
}
|
|
6192
6541
|
}
|
|
@@ -6318,3 +6667,55 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
6318
6667
|
margin-right: 8px;
|
|
6319
6668
|
}
|
|
6320
6669
|
|
|
6670
|
+
|
|
6671
|
+
._image-button_vitro-image-button_34pBVmE,
|
|
6672
|
+
._image-button_vitro-image-button_34pBVmE:hover,
|
|
6673
|
+
._image-button_vitro-image-button_34pBVmE:active {
|
|
6674
|
+
width: 20px;
|
|
6675
|
+
height: 20px;
|
|
6676
|
+
flex-shrink: 0;
|
|
6677
|
+
background-position: center;
|
|
6678
|
+
background-size: 100%;
|
|
6679
|
+
background-repeat: no-repeat;
|
|
6680
|
+
border: none;
|
|
6681
|
+
outline: none;
|
|
6682
|
+
background-color: transparent;
|
|
6683
|
+
}
|
|
6684
|
+
|
|
6685
|
+
._link-input_vitro-link-input_1FBo8kO {
|
|
6686
|
+
position: relative;
|
|
6687
|
+
}
|
|
6688
|
+
|
|
6689
|
+
._link-input_vitro-link-input_1FBo8kO input {
|
|
6690
|
+
color: #2A63F6;
|
|
6691
|
+
font-size: 14px;
|
|
6692
|
+
line-height: 16px;
|
|
6693
|
+
overflow: hidden;
|
|
6694
|
+
text-overflow: ellipsis;
|
|
6695
|
+
cursor: pointer;
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
._link-input_vitro-edit-mode_2HhUoeO input {
|
|
6699
|
+
overflow: unset;
|
|
6700
|
+
cursor: text;
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6703
|
+
._link-input_vitro-read-only_AG9_cYJ input {
|
|
6704
|
+
padding: 8px 16px;
|
|
6705
|
+
}
|
|
6706
|
+
|
|
6707
|
+
._link-input_vitro-control_1MGkxWi > div:first-child {
|
|
6708
|
+
color: #4A556C;
|
|
6709
|
+
}
|
|
6710
|
+
|
|
6711
|
+
._link-input_vitro-read-only_AG9_cYJ ._link-input_vitro-control_1MGkxWi > div:first-child {
|
|
6712
|
+
color: #8E98A3;
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
._link-input_vitro-edit-button_1PMQnWv {
|
|
6716
|
+
display: inline-block;
|
|
6717
|
+
position: absolute;
|
|
6718
|
+
right: 16px;
|
|
6719
|
+
top: 10px;
|
|
6720
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/link-input/img/edit.svg');
|
|
6721
|
+
}
|