@leaflink/stash 43.5.1 → 44.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/FilterDropdown.js +1 -1
- package/dist/FilterDropdown.js.map +1 -1
- package/dist/Textarea.js +1 -1
- package/dist/Textarea.js.map +1 -1
- package/dist/components.css +1 -1
- package/package.json +1 -1
- package/styles/_core.scss +48 -0
- package/styles/backwards-compat.css +1407 -2
- package/styles/base.css +388 -19
- package/styles/components/_all.scss +0 -14
- package/styles/components/_box.scss +0 -13
- package/styles/components/_item-list.scss +0 -78
- package/styles/components/_sidebar.scss +0 -404
- package/styles/components/_top-header.scss +0 -219
- package/styles/elements/_all.scss +0 -15
- package/styles/elements/_buttons.scss +0 -235
- package/styles/elements/_forms.scss +0 -300
- package/styles/elements/_tables.scss +0 -80
- package/styles/elements/_tooltips.scss +0 -110
- package/styles/utility/_all.scss +0 -12
- package/styles/utility/_animations.scss +0 -103
- package/styles/utility/_display.scss +0 -167
- package/styles/utility/_grid.scss +0 -200
- package/styles/utility/_icons.scss +0 -31
- package/styles/utility/_transitions.scss +0 -110
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file contains the following css migrated from main.scss and it's children:
|
|
3
3
|
* ✅ All CSS Variables
|
|
4
|
+
* ✅ Contents of `styles/components/*`
|
|
4
5
|
* ✅ Contents of `styles/overrides/*`
|
|
6
|
+
* ✅ Contents of `styles/elements/*`
|
|
5
7
|
* ✅ Contents of `styles/utility/_grid`
|
|
6
8
|
* ✅ Contents of `styles/utility/_misc`
|
|
7
9
|
*
|
|
@@ -9,8 +11,6 @@
|
|
|
9
11
|
*
|
|
10
12
|
* Todo:
|
|
11
13
|
*
|
|
12
|
-
* ⬜️ Contents of `styles/components/*`
|
|
13
|
-
* ⬜️ Contents of `styles/elements/*`
|
|
14
14
|
* ⬜️ Remaining contents of `styles/utility/*`
|
|
15
15
|
*/
|
|
16
16
|
|
|
@@ -3627,3 +3627,1408 @@
|
|
|
3627
3627
|
background-color: var(--color-blue-100);
|
|
3628
3628
|
color: var(--color-ice-700);
|
|
3629
3629
|
}
|
|
3630
|
+
|
|
3631
|
+
/** Components **/
|
|
3632
|
+
.box {
|
|
3633
|
+
-webkit-box-shadow: 0 2px 4px rgba(0, 15, 35, 0.06) !important;
|
|
3634
|
+
box-shadow: 0 2px 4px rgba(0, 15, 35, 0.06) !important;
|
|
3635
|
+
}
|
|
3636
|
+
.box {
|
|
3637
|
+
background: #ffffff;
|
|
3638
|
+
background: var(--color-white);
|
|
3639
|
+
border-radius: 4px;
|
|
3640
|
+
padding: 24px calc(24px / 2);
|
|
3641
|
+
padding: 24px var(--grid-gutter);
|
|
3642
|
+
}
|
|
3643
|
+
/**
|
|
3644
|
+
|
|
3645
|
+
Item List. (Item List?? This name is temporary)
|
|
3646
|
+
|
|
3647
|
+
Styles to support lists of "items". These are generic items, the
|
|
3648
|
+
only distinguishing feature -- what makes it distinct from <table> --
|
|
3649
|
+
is that these "lists" are not tabular data. Tables, by contrast, are
|
|
3650
|
+
more for displaying large amounts of _data_ (ie. what is more
|
|
3651
|
+
prevalent on Reports pages, etc).
|
|
3652
|
+
|
|
3653
|
+
|
|
3654
|
+
examples:
|
|
3655
|
+
* Products in the Inventory,
|
|
3656
|
+
* Customers List
|
|
3657
|
+
* Items in an Order
|
|
3658
|
+
* Service items (on Browse Services)
|
|
3659
|
+
* Clients in the Contact List
|
|
3660
|
+
|
|
3661
|
+
|
|
3662
|
+
◡◠ ✥ ◠◡
|
|
3663
|
+
|
|
3664
|
+
Table of Contents:
|
|
3665
|
+
|
|
3666
|
+
• Item List
|
|
3667
|
+
|
|
3668
|
+
*/
|
|
3669
|
+
/* ---------------------------------------
|
|
3670
|
+
Item List
|
|
3671
|
+
---------------------------------------- */
|
|
3672
|
+
.item-list {
|
|
3673
|
+
border-bottom: 1px solid #C5C9D4;
|
|
3674
|
+
border-bottom: 1px solid var(--color-ice-500);
|
|
3675
|
+
border-top: 1px solid #C5C9D4;
|
|
3676
|
+
border-top: 1px solid var(--color-ice-500);
|
|
3677
|
+
margin-left: calc((24px / 2) * -1);
|
|
3678
|
+
margin-left: calc(calc(24px / 2) * -1);
|
|
3679
|
+
margin-left: calc(var(--grid-gutter) * -1);
|
|
3680
|
+
margin-right: calc((24px / 2) * -1);
|
|
3681
|
+
margin-right: calc(calc(24px / 2) * -1);
|
|
3682
|
+
margin-right: calc(var(--grid-gutter) * -1);
|
|
3683
|
+
min-width: 100%;
|
|
3684
|
+
}
|
|
3685
|
+
.item-list__header {
|
|
3686
|
+
background: #E8E9EE;
|
|
3687
|
+
background: var(--color-ice-200);
|
|
3688
|
+
border-bottom: 1px solid #C5C9D4;
|
|
3689
|
+
border-bottom: 1px solid var(--color-ice-500);
|
|
3690
|
+
border-top-left-radius: 4px;
|
|
3691
|
+
border-top-right-radius: 4px;
|
|
3692
|
+
color: #27282A;
|
|
3693
|
+
color: var(--color-ice-900);
|
|
3694
|
+
font-weight: 500;
|
|
3695
|
+
overflow: hidden;
|
|
3696
|
+
padding: 12px;
|
|
3697
|
+
}
|
|
3698
|
+
.item-list__content {
|
|
3699
|
+
border-bottom-left-radius: 4px;
|
|
3700
|
+
border-bottom-right-radius: 4px;
|
|
3701
|
+
}
|
|
3702
|
+
.item-list__row {
|
|
3703
|
+
background: #ffffff;
|
|
3704
|
+
background: var(--color-white);
|
|
3705
|
+
border-bottom: 1px solid #C5C9D4;
|
|
3706
|
+
border-bottom: 1px solid var(--color-ice-500);
|
|
3707
|
+
padding: 12px;
|
|
3708
|
+
}
|
|
3709
|
+
.item-list__row:last-child {
|
|
3710
|
+
border-bottom: 0;
|
|
3711
|
+
border-bottom-left-radius: 4px;
|
|
3712
|
+
border-bottom-right-radius: 4px;
|
|
3713
|
+
}
|
|
3714
|
+
@media screen and (min-width: 641px) {
|
|
3715
|
+
.item-list {
|
|
3716
|
+
border: 1px solid #C5C9D4;
|
|
3717
|
+
border: 1px solid var(--color-ice-500);
|
|
3718
|
+
border-radius: 4px;
|
|
3719
|
+
margin: 0;
|
|
3720
|
+
}
|
|
3721
|
+
.item-list__header, .item-list__row {
|
|
3722
|
+
padding: 6px 12px;
|
|
3723
|
+
}
|
|
3724
|
+
}
|
|
3725
|
+
/**
|
|
3726
|
+
|
|
3727
|
+
Sidebar.
|
|
3728
|
+
|
|
3729
|
+
Note: The SCSS herein is used on _both_ the legacy and the modern CSS bundles.
|
|
3730
|
+
This can be a bit confusing if you are working on a page using the
|
|
3731
|
+
legacy bundle (ie base_new.html) as the watcher will not be triggered
|
|
3732
|
+
when this file is updated.
|
|
3733
|
+
|
|
3734
|
+
◡◠ ✥ ◠◡
|
|
3735
|
+
|
|
3736
|
+
Table of Contents:
|
|
3737
|
+
|
|
3738
|
+
1. Sidebar
|
|
3739
|
+
2. Active styles
|
|
3740
|
+
3. Persistent styles
|
|
3741
|
+
|
|
3742
|
+
*/
|
|
3743
|
+
/* ---------------------------------------
|
|
3744
|
+
1. Sidebar
|
|
3745
|
+
---------------------------------------- */
|
|
3746
|
+
/* stylelint-disable no-descending-specificity */
|
|
3747
|
+
.sidebar {
|
|
3748
|
+
background: #1E164B;
|
|
3749
|
+
background: var(--color-purple-500);
|
|
3750
|
+
bottom: 0;
|
|
3751
|
+
-webkit-overflow-scrolling: touch;
|
|
3752
|
+
position: fixed;
|
|
3753
|
+
top: 0;
|
|
3754
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
3755
|
+
transform: translate3d(-100%, 0, 0);
|
|
3756
|
+
-webkit-transition: -webkit-transform 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3757
|
+
transition: -webkit-transform 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3758
|
+
transition: transform 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3759
|
+
transition: transform 0.165s cubic-bezier(0.25, 0.8, 0.5, 1), -webkit-transform 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3760
|
+
width: 280px;
|
|
3761
|
+
z-index: 300;
|
|
3762
|
+
}
|
|
3763
|
+
.sidebar-wrapper {
|
|
3764
|
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
3765
|
+
height: calc(100% - 56px);
|
|
3766
|
+
margin-top: 56px;
|
|
3767
|
+
overflow-y: auto;
|
|
3768
|
+
}
|
|
3769
|
+
.sidebar-overlay {
|
|
3770
|
+
bottom: 0;
|
|
3771
|
+
left: 0;
|
|
3772
|
+
position: absolute;
|
|
3773
|
+
right: 0;
|
|
3774
|
+
top: 0;
|
|
3775
|
+
background-color: rgba(0, 0, 0, 0.38);
|
|
3776
|
+
opacity: 0;
|
|
3777
|
+
-webkit-transition: opacity 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3778
|
+
transition: opacity 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3779
|
+
visibility: hidden;
|
|
3780
|
+
z-index: -1;
|
|
3781
|
+
}
|
|
3782
|
+
.sidebar .environment-drawer {
|
|
3783
|
+
background-color: #150e35;
|
|
3784
|
+
bottom: 0;
|
|
3785
|
+
position: fixed;
|
|
3786
|
+
width: 100%;
|
|
3787
|
+
}
|
|
3788
|
+
.sidebar .environment-drawer .header {
|
|
3789
|
+
background-color: #FF9425;
|
|
3790
|
+
background-color: var(--color-orange-500);
|
|
3791
|
+
border-radius: 3px 3px 0 0;
|
|
3792
|
+
color: #140e35;
|
|
3793
|
+
cursor: pointer;
|
|
3794
|
+
font-size: 14px;
|
|
3795
|
+
height: 25px;
|
|
3796
|
+
padding: 3px 3px 3px 20px;
|
|
3797
|
+
text-transform: uppercase;
|
|
3798
|
+
}
|
|
3799
|
+
.sidebar .environment-drawer .header .pull-left {
|
|
3800
|
+
float: left !important;
|
|
3801
|
+
}
|
|
3802
|
+
.sidebar .environment-drawer .header .pull-right {
|
|
3803
|
+
float: right !important;
|
|
3804
|
+
}
|
|
3805
|
+
.sidebar .environment-drawer .content {
|
|
3806
|
+
background-color: #140e35;
|
|
3807
|
+
display: none;
|
|
3808
|
+
min-height: 100px;
|
|
3809
|
+
padding: 10px 0 0 10px;
|
|
3810
|
+
}
|
|
3811
|
+
.sidebar .environment-drawer .content.open {
|
|
3812
|
+
display: block !important;
|
|
3813
|
+
}
|
|
3814
|
+
.sidebar .environment-drawer .content p {
|
|
3815
|
+
color: #ffffff;
|
|
3816
|
+
color: var(--color-white);
|
|
3817
|
+
line-height: 16px;
|
|
3818
|
+
}
|
|
3819
|
+
.company-picker {
|
|
3820
|
+
padding: 24px 12px;
|
|
3821
|
+
}
|
|
3822
|
+
.company-picker .dropdown__button + .dropdown__content {
|
|
3823
|
+
background: #140e35;
|
|
3824
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
3825
|
+
border-radius: 4px;
|
|
3826
|
+
border-top: none;
|
|
3827
|
+
display: none;
|
|
3828
|
+
margin: 0;
|
|
3829
|
+
max-width: 360px;
|
|
3830
|
+
min-width: 200px;
|
|
3831
|
+
position: absolute;
|
|
3832
|
+
-webkit-transform: translateX(calc(var(--offset) * 1px));
|
|
3833
|
+
transform: translateX(calc(var(--offset) * 1px));
|
|
3834
|
+
width: 100%;
|
|
3835
|
+
z-index: 200;
|
|
3836
|
+
}
|
|
3837
|
+
.company-picker .dropdown__button + .dropdown__content a {
|
|
3838
|
+
border-radius: 4px;
|
|
3839
|
+
color: #C5C9D4;
|
|
3840
|
+
color: var(--color-ice-500);
|
|
3841
|
+
font-size: 0.75rem;
|
|
3842
|
+
padding: 8px 6px 0 6px;
|
|
3843
|
+
}
|
|
3844
|
+
.company-picker .dropdown__button + .dropdown__content a:hover {
|
|
3845
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
3846
|
+
color: #C5C9D4;
|
|
3847
|
+
color: var(--color-ice-500);
|
|
3848
|
+
}
|
|
3849
|
+
.company-picker .dropdown__button + .dropdown__content .is-active > a {
|
|
3850
|
+
color: #3CDBC0;
|
|
3851
|
+
color: var(--color-seafoam-500);
|
|
3852
|
+
}
|
|
3853
|
+
.company-picker .dropdown__button + .dropdown__content.is-active {
|
|
3854
|
+
border-top-left-radius: 0;
|
|
3855
|
+
border-top-right-radius: 0;
|
|
3856
|
+
display: block;
|
|
3857
|
+
}
|
|
3858
|
+
.company-picker .dropdown__button + .dropdown__content::after {
|
|
3859
|
+
display: none;
|
|
3860
|
+
}
|
|
3861
|
+
.company-picker .dropdown {
|
|
3862
|
+
width: 100%;
|
|
3863
|
+
}
|
|
3864
|
+
.company-picker .dropdown__toggle button {
|
|
3865
|
+
background-color: #140e35;
|
|
3866
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
3867
|
+
color: #C5C9D4;
|
|
3868
|
+
color: var(--color-ice-500);
|
|
3869
|
+
font-size: 0.75rem;
|
|
3870
|
+
font-weight: 500;
|
|
3871
|
+
overflow: hidden;
|
|
3872
|
+
padding-left: 12px;
|
|
3873
|
+
padding-right: 30px;
|
|
3874
|
+
text-align: left;
|
|
3875
|
+
text-overflow: ellipsis;
|
|
3876
|
+
white-space: normal;
|
|
3877
|
+
width: 100%;
|
|
3878
|
+
}
|
|
3879
|
+
.company-picker .dropdown__toggle button:focus {
|
|
3880
|
+
-webkit-box-shadow: none;
|
|
3881
|
+
box-shadow: none;
|
|
3882
|
+
}
|
|
3883
|
+
.company-picker .dropdown__toggle .icon {
|
|
3884
|
+
margin-top: -12px;
|
|
3885
|
+
position: absolute;
|
|
3886
|
+
right: 9px;
|
|
3887
|
+
top: 50%;
|
|
3888
|
+
}
|
|
3889
|
+
.company-picker .dropdown__toggle.is-active > button {
|
|
3890
|
+
border-bottom-left-radius: 0;
|
|
3891
|
+
border-bottom-right-radius: 0;
|
|
3892
|
+
}
|
|
3893
|
+
.company-picker .dropdown__toggle:not(.dropdown__button) button {
|
|
3894
|
+
cursor: auto;
|
|
3895
|
+
}
|
|
3896
|
+
.company-picker .description,
|
|
3897
|
+
.company-picker .name {
|
|
3898
|
+
line-height: 1.4285714286;
|
|
3899
|
+
}
|
|
3900
|
+
.company-picker .description {
|
|
3901
|
+
opacity: 0.5;
|
|
3902
|
+
}
|
|
3903
|
+
.company-picker .name {
|
|
3904
|
+
opacity: 1;
|
|
3905
|
+
}
|
|
3906
|
+
.company-picker .badge {
|
|
3907
|
+
text-transform: uppercase;
|
|
3908
|
+
width: 36px;
|
|
3909
|
+
}
|
|
3910
|
+
.company-picker__nav {
|
|
3911
|
+
padding-left: 0;
|
|
3912
|
+
}
|
|
3913
|
+
.sidenav {
|
|
3914
|
+
opacity: 0;
|
|
3915
|
+
overflow: auto;
|
|
3916
|
+
padding: 0 0 28px;
|
|
3917
|
+
-webkit-transition: opacity 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3918
|
+
transition: opacity 0.165s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
3919
|
+
-webkit-transition-delay: 0.2s;
|
|
3920
|
+
transition-delay: 0.2s;
|
|
3921
|
+
}
|
|
3922
|
+
.sidenav > ul {
|
|
3923
|
+
padding: 0;
|
|
3924
|
+
}
|
|
3925
|
+
.sidenav .icon {
|
|
3926
|
+
margin-right: 6px;
|
|
3927
|
+
vertical-align: bottom;
|
|
3928
|
+
}
|
|
3929
|
+
.sidenav .icon--chevron-left {
|
|
3930
|
+
position: absolute;
|
|
3931
|
+
right: 12px;
|
|
3932
|
+
top: calc(50% - 7px);
|
|
3933
|
+
-webkit-transition: -webkit-transform 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3934
|
+
transition: -webkit-transform 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3935
|
+
transition: transform 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3936
|
+
transition: transform 0.333s cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
3937
|
+
}
|
|
3938
|
+
.sidenav a,
|
|
3939
|
+
.sidenav button {
|
|
3940
|
+
background-color: transparent;
|
|
3941
|
+
border: none;
|
|
3942
|
+
cursor: pointer;
|
|
3943
|
+
display: block;
|
|
3944
|
+
font-weight: 500;
|
|
3945
|
+
line-height: 1.5;
|
|
3946
|
+
outline: none;
|
|
3947
|
+
padding: 8px 18px;
|
|
3948
|
+
position: relative;
|
|
3949
|
+
text-align: left;
|
|
3950
|
+
width: 100%;
|
|
3951
|
+
}
|
|
3952
|
+
.sidenav a, .sidenav a:hover, .sidenav a:focus,
|
|
3953
|
+
.sidenav button,
|
|
3954
|
+
.sidenav button:hover,
|
|
3955
|
+
.sidenav button:focus {
|
|
3956
|
+
color: #C5C9D4;
|
|
3957
|
+
color: var(--color-ice-500);
|
|
3958
|
+
-webkit-text-decoration: none;
|
|
3959
|
+
text-decoration: none;
|
|
3960
|
+
}
|
|
3961
|
+
.sidenav a.is-open,
|
|
3962
|
+
.sidenav button.is-open {
|
|
3963
|
+
color: inherit;
|
|
3964
|
+
}
|
|
3965
|
+
.sidenav a:hover,
|
|
3966
|
+
.sidenav a:focus,
|
|
3967
|
+
.sidenav button:hover,
|
|
3968
|
+
.sidenav button:focus,
|
|
3969
|
+
.sidenav .is-active > a {
|
|
3970
|
+
background-color: #140e35;
|
|
3971
|
+
}
|
|
3972
|
+
.sidenav .is-open > button {
|
|
3973
|
+
background-color: #263256;
|
|
3974
|
+
}
|
|
3975
|
+
.sidenav .is-open > button > .icon--chevron-left {
|
|
3976
|
+
-webkit-transform: rotate(-90deg);
|
|
3977
|
+
transform: rotate(-90deg);
|
|
3978
|
+
}
|
|
3979
|
+
.sidenav .is-active > a {
|
|
3980
|
+
color: #3CDBC0;
|
|
3981
|
+
color: var(--color-seafoam-500);
|
|
3982
|
+
}
|
|
3983
|
+
.sidenav .is-open .subnav a,
|
|
3984
|
+
.sidenav .is-open .subnav button {
|
|
3985
|
+
padding-left: 40px;
|
|
3986
|
+
}
|
|
3987
|
+
.nav__item {
|
|
3988
|
+
display: block;
|
|
3989
|
+
list-style: none;
|
|
3990
|
+
position: relative;
|
|
3991
|
+
}
|
|
3992
|
+
.nav__item--toggle::before {
|
|
3993
|
+
content: "";
|
|
3994
|
+
display: block;
|
|
3995
|
+
height: 100%;
|
|
3996
|
+
left: 0;
|
|
3997
|
+
position: absolute;
|
|
3998
|
+
top: 0;
|
|
3999
|
+
-webkit-transition: width 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
4000
|
+
transition: width 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
4001
|
+
width: 0;
|
|
4002
|
+
z-index: 100;
|
|
4003
|
+
}
|
|
4004
|
+
.nav__item--toggle.is-open::before {
|
|
4005
|
+
width: 6px;
|
|
4006
|
+
}
|
|
4007
|
+
.nav__item .badge,
|
|
4008
|
+
.nav__item .icon--warning {
|
|
4009
|
+
float: right;
|
|
4010
|
+
}
|
|
4011
|
+
.nav__item.is-active::before {
|
|
4012
|
+
background-color: #3CDBC0;
|
|
4013
|
+
background-color: var(--color-seafoam-500);
|
|
4014
|
+
content: "";
|
|
4015
|
+
display: block;
|
|
4016
|
+
height: 100%;
|
|
4017
|
+
left: 0;
|
|
4018
|
+
position: absolute;
|
|
4019
|
+
top: 0;
|
|
4020
|
+
width: 6px;
|
|
4021
|
+
z-index: 100;
|
|
4022
|
+
}
|
|
4023
|
+
.subnav {
|
|
4024
|
+
list-style: none;
|
|
4025
|
+
margin-bottom: 0;
|
|
4026
|
+
padding-left: 0;
|
|
4027
|
+
}
|
|
4028
|
+
.subnav.collapse {
|
|
4029
|
+
display: none;
|
|
4030
|
+
}
|
|
4031
|
+
.subnav .is-open {
|
|
4032
|
+
border-left: none;
|
|
4033
|
+
}
|
|
4034
|
+
.subnav .is-open .subnav a,
|
|
4035
|
+
.subnav .is-open .subnav button {
|
|
4036
|
+
padding-left: 55px;
|
|
4037
|
+
}
|
|
4038
|
+
/* ---------------------------------------
|
|
4039
|
+
2. Active
|
|
4040
|
+
---------------------------------------- */
|
|
4041
|
+
.sidebar-is-showing {
|
|
4042
|
+
overflow: hidden;
|
|
4043
|
+
overscroll-behavior-y: contain;
|
|
4044
|
+
-ms-touch-action: none;
|
|
4045
|
+
touch-action: none; /* prevent scrolling */
|
|
4046
|
+
}
|
|
4047
|
+
.sidebar-is-showing .sidenav {
|
|
4048
|
+
opacity: 1;
|
|
4049
|
+
}
|
|
4050
|
+
.sidebar-is-showing .sidebar {
|
|
4051
|
+
-webkit-box-shadow: 0 4px 8px rgba(0, 15, 35, 0.06) !important;
|
|
4052
|
+
box-shadow: 0 4px 8px rgba(0, 15, 35, 0.06) !important;
|
|
4053
|
+
}
|
|
4054
|
+
.sidebar-is-showing .sidebar {
|
|
4055
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4056
|
+
transform: translate3d(0, 0, 0);
|
|
4057
|
+
}
|
|
4058
|
+
.sidebar-is-showing .sidebar-overlay {
|
|
4059
|
+
opacity: 1;
|
|
4060
|
+
visibility: visible;
|
|
4061
|
+
z-index: 300;
|
|
4062
|
+
}
|
|
4063
|
+
/* ---------------------------------------
|
|
4064
|
+
3. Persistent
|
|
4065
|
+
---------------------------------------- */
|
|
4066
|
+
@media screen and (min-width: 1321px) {
|
|
4067
|
+
.sidebar {
|
|
4068
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4069
|
+
transform: translate3d(0, 0, 0);
|
|
4070
|
+
}
|
|
4071
|
+
.sidenav {
|
|
4072
|
+
opacity: 1;
|
|
4073
|
+
}
|
|
4074
|
+
}
|
|
4075
|
+
.logo {
|
|
4076
|
+
display: block;
|
|
4077
|
+
height: 22px;
|
|
4078
|
+
}
|
|
4079
|
+
.env-ocs .logo {
|
|
4080
|
+
height: 46px;
|
|
4081
|
+
}
|
|
4082
|
+
@media screen and (max-width: 640px) {
|
|
4083
|
+
.logo__leaflink {
|
|
4084
|
+
opacity: 0;
|
|
4085
|
+
-webkit-transition: opacity 0.1s;
|
|
4086
|
+
transition: opacity 0.1s;
|
|
4087
|
+
-webkit-transition-delay: 0s;
|
|
4088
|
+
transition-delay: 0s;
|
|
4089
|
+
}
|
|
4090
|
+
}
|
|
4091
|
+
.sidebar-is-showing .logo__leaflink {
|
|
4092
|
+
opacity: 1;
|
|
4093
|
+
-webkit-transition-delay: 0.2s;
|
|
4094
|
+
transition-delay: 0.2s;
|
|
4095
|
+
}
|
|
4096
|
+
.logo-burger {
|
|
4097
|
+
-webkit-box-align: center;
|
|
4098
|
+
-ms-flex-align: center;
|
|
4099
|
+
align-items: center;
|
|
4100
|
+
display: -webkit-box;
|
|
4101
|
+
display: -ms-flexbox;
|
|
4102
|
+
display: flex;
|
|
4103
|
+
height: 56px;
|
|
4104
|
+
padding-left: 14px;
|
|
4105
|
+
position: fixed;
|
|
4106
|
+
z-index: 400;
|
|
4107
|
+
}
|
|
4108
|
+
.button--burger {
|
|
4109
|
+
background: none;
|
|
4110
|
+
cursor: pointer;
|
|
4111
|
+
margin-left: -7px;
|
|
4112
|
+
padding: 0;
|
|
4113
|
+
-webkit-transition: color 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
4114
|
+
transition: color 0.333s cubic-bezier(0.4, 0, 0.6, 1);
|
|
4115
|
+
}
|
|
4116
|
+
.button--burger:focus {
|
|
4117
|
+
-webkit-box-shadow: none;
|
|
4118
|
+
box-shadow: none;
|
|
4119
|
+
}
|
|
4120
|
+
.sidebar-is-showing .button--burger {
|
|
4121
|
+
color: #ffffff;
|
|
4122
|
+
color: var(--color-white);
|
|
4123
|
+
}
|
|
4124
|
+
.env-ocs.sidebar-is-showing .button--burger {
|
|
4125
|
+
color: #76797F;
|
|
4126
|
+
color: var(--color-ice-700);
|
|
4127
|
+
}
|
|
4128
|
+
@media screen and (min-width: 1321px) {
|
|
4129
|
+
.button--burger {
|
|
4130
|
+
display: none;
|
|
4131
|
+
}
|
|
4132
|
+
}
|
|
4133
|
+
.top-header {
|
|
4134
|
+
-webkit-box-shadow: 0 4px 8px rgba(0, 15, 35, 0.06) !important;
|
|
4135
|
+
box-shadow: 0 4px 8px rgba(0, 15, 35, 0.06) !important;
|
|
4136
|
+
}
|
|
4137
|
+
.top-header {
|
|
4138
|
+
-webkit-box-align: center;
|
|
4139
|
+
-ms-flex-align: center;
|
|
4140
|
+
align-items: center;
|
|
4141
|
+
background-color: #ffffff;
|
|
4142
|
+
background-color: var(--color-white);
|
|
4143
|
+
border: none;
|
|
4144
|
+
display: -webkit-box;
|
|
4145
|
+
display: -ms-flexbox;
|
|
4146
|
+
display: flex;
|
|
4147
|
+
height: 56px;
|
|
4148
|
+
-webkit-box-pack: end;
|
|
4149
|
+
-ms-flex-pack: end;
|
|
4150
|
+
justify-content: flex-end;
|
|
4151
|
+
padding: 7px 14px;
|
|
4152
|
+
position: fixed;
|
|
4153
|
+
top: 0;
|
|
4154
|
+
width: 100%;
|
|
4155
|
+
z-index: 300;
|
|
4156
|
+
}
|
|
4157
|
+
.top-header__message {
|
|
4158
|
+
display: none;
|
|
4159
|
+
margin-left: 280px;
|
|
4160
|
+
}
|
|
4161
|
+
@media screen and (min-width: 1321px) {
|
|
4162
|
+
.top-header__message {
|
|
4163
|
+
display: block;
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
.top-header__item {
|
|
4167
|
+
display: -webkit-box;
|
|
4168
|
+
display: -ms-flexbox;
|
|
4169
|
+
display: flex;
|
|
4170
|
+
}
|
|
4171
|
+
.top-header__item svg {
|
|
4172
|
+
height: 20px;
|
|
4173
|
+
vertical-align: bottom;
|
|
4174
|
+
width: 20px;
|
|
4175
|
+
}
|
|
4176
|
+
.top-header__navbar {
|
|
4177
|
+
-webkit-box-align: center;
|
|
4178
|
+
-ms-flex-align: center;
|
|
4179
|
+
align-items: center;
|
|
4180
|
+
display: -webkit-box;
|
|
4181
|
+
display: -ms-flexbox;
|
|
4182
|
+
display: flex;
|
|
4183
|
+
margin-left: auto;
|
|
4184
|
+
}
|
|
4185
|
+
.top-header__nav {
|
|
4186
|
+
list-style: none;
|
|
4187
|
+
margin: 0;
|
|
4188
|
+
padding: 0;
|
|
4189
|
+
}
|
|
4190
|
+
.top-header__nav-button {
|
|
4191
|
+
background-color: transparent;
|
|
4192
|
+
border: none;
|
|
4193
|
+
color: #76797F;
|
|
4194
|
+
color: var(--color-ice-700);
|
|
4195
|
+
display: block;
|
|
4196
|
+
margin: 0 12px;
|
|
4197
|
+
}
|
|
4198
|
+
.top-header__nav-button:focus, .top-header__nav-button:hover {
|
|
4199
|
+
background-color: transparent;
|
|
4200
|
+
-webkit-text-decoration: none;
|
|
4201
|
+
text-decoration: none;
|
|
4202
|
+
}
|
|
4203
|
+
.top-header__nav img {
|
|
4204
|
+
vertical-align: middle;
|
|
4205
|
+
}
|
|
4206
|
+
.top-header .icon {
|
|
4207
|
+
vertical-align: middle;
|
|
4208
|
+
}
|
|
4209
|
+
.top-header .icon--hamburger-menu {
|
|
4210
|
+
fill: #ffffff;
|
|
4211
|
+
fill: var(--color-white);
|
|
4212
|
+
}
|
|
4213
|
+
.top-header .dropdown__content::after {
|
|
4214
|
+
background: #E8E9EE;
|
|
4215
|
+
background: var(--color-ice-200);
|
|
4216
|
+
right: 12px;
|
|
4217
|
+
}
|
|
4218
|
+
.account {
|
|
4219
|
+
margin-left: 0.875rem;
|
|
4220
|
+
margin-right: 0.875rem;
|
|
4221
|
+
}
|
|
4222
|
+
.account__avatar {
|
|
4223
|
+
border: 1px solid #ffffff;
|
|
4224
|
+
border: 1px solid var(--color-white);
|
|
4225
|
+
border-radius: 50%;
|
|
4226
|
+
cursor: pointer;
|
|
4227
|
+
max-height: 36px;
|
|
4228
|
+
max-width: 36px;
|
|
4229
|
+
}
|
|
4230
|
+
.account__avatar img {
|
|
4231
|
+
border: 2px solid #ffffff;
|
|
4232
|
+
border: 2px solid var(--color-white);
|
|
4233
|
+
border-radius: 50%;
|
|
4234
|
+
max-width: 100%;
|
|
4235
|
+
vertical-align: middle;
|
|
4236
|
+
}
|
|
4237
|
+
.account__avatar:hover {
|
|
4238
|
+
border: 1px solid #0072F0;
|
|
4239
|
+
border: 1px solid var(--color-blue-500);
|
|
4240
|
+
}
|
|
4241
|
+
.account__nav {
|
|
4242
|
+
border-top: 1px solid #C5C9D4;
|
|
4243
|
+
padding: 0.4375rem;
|
|
4244
|
+
}
|
|
4245
|
+
.account__nav a:hover {
|
|
4246
|
+
background: #0072F0;
|
|
4247
|
+
background: var(--color-blue-500);
|
|
4248
|
+
color: #ffffff;
|
|
4249
|
+
color: var(--color-white);
|
|
4250
|
+
}
|
|
4251
|
+
.account__user-info {
|
|
4252
|
+
background-color: #E8E9EE;
|
|
4253
|
+
background-color: var(--color-ice-200);
|
|
4254
|
+
border-top-left-radius: 4px;
|
|
4255
|
+
border-top-right-radius: 4px;
|
|
4256
|
+
padding: 0.875rem;
|
|
4257
|
+
}
|
|
4258
|
+
.account__user-info div:first-child {
|
|
4259
|
+
color: #27282A;
|
|
4260
|
+
color: var(--color-ice-900);
|
|
4261
|
+
font-size: 0.875rem;
|
|
4262
|
+
font-weight: 500;
|
|
4263
|
+
}
|
|
4264
|
+
.account .dropdown__content {
|
|
4265
|
+
margin-right: 0;
|
|
4266
|
+
min-width: 185px;
|
|
4267
|
+
top: 48px;
|
|
4268
|
+
}
|
|
4269
|
+
.account .dropdown__content::after {
|
|
4270
|
+
background: #E8E9EE;
|
|
4271
|
+
background: var(--color-ice-200);
|
|
4272
|
+
right: 12px;
|
|
4273
|
+
}
|
|
4274
|
+
.language-picker .dropdown__content {
|
|
4275
|
+
margin-right: 12px;
|
|
4276
|
+
top: 43px;
|
|
4277
|
+
}
|
|
4278
|
+
.language-picker .dropdown__content::after {
|
|
4279
|
+
background: #ffffff;
|
|
4280
|
+
background: var(--color-white);
|
|
4281
|
+
}
|
|
4282
|
+
.language-picker__toggle {
|
|
4283
|
+
outline: 0;
|
|
4284
|
+
}
|
|
4285
|
+
.language-picker__toggle .language-picker__toggle-icon {
|
|
4286
|
+
height: 24px;
|
|
4287
|
+
width: 24px;
|
|
4288
|
+
}
|
|
4289
|
+
.language-picker__toggle:hover .language-picker__toggle-icon, .language-picker__toggle:focus .language-picker__toggle-icon, .language-picker__toggle.is-active .language-picker__toggle-icon {
|
|
4290
|
+
color: #0072F0;
|
|
4291
|
+
color: var(--color-blue-500);
|
|
4292
|
+
}
|
|
4293
|
+
.button {
|
|
4294
|
+
border-radius: 4px;
|
|
4295
|
+
border-width: 1px;
|
|
4296
|
+
display: inline-block;
|
|
4297
|
+
font-size: 0.875rem;
|
|
4298
|
+
font-weight: 600;
|
|
4299
|
+
line-height: 34px;
|
|
4300
|
+
margin: 0;
|
|
4301
|
+
min-width: 144px;
|
|
4302
|
+
padding: 0 12px;
|
|
4303
|
+
text-align: center;
|
|
4304
|
+
-webkit-text-decoration: none;
|
|
4305
|
+
text-decoration: none;
|
|
4306
|
+
white-space: nowrap;
|
|
4307
|
+
}
|
|
4308
|
+
.button:focus {
|
|
4309
|
+
-webkit-box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.14);
|
|
4310
|
+
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.14);
|
|
4311
|
+
outline: none;
|
|
4312
|
+
}
|
|
4313
|
+
.button:hover {
|
|
4314
|
+
-webkit-text-decoration: none;
|
|
4315
|
+
text-decoration: none;
|
|
4316
|
+
}
|
|
4317
|
+
.button[disabled] {
|
|
4318
|
+
cursor: default;
|
|
4319
|
+
pointer-events: none;
|
|
4320
|
+
}
|
|
4321
|
+
|
|
4322
|
+
/* ---------------------------------------
|
|
4323
|
+
Types
|
|
4324
|
+
---------------------------------------- */
|
|
4325
|
+
.button--primary {
|
|
4326
|
+
background-color: rgba(0,114,240, 1);
|
|
4327
|
+
background-color: rgba(var(--button-color-rgb), var(--button-opacity, 1));
|
|
4328
|
+
border-color: transparent;
|
|
4329
|
+
color: rgba(255,255,255, 1);
|
|
4330
|
+
color: rgba(var(--text-color-rgb), 1);
|
|
4331
|
+
--button-color-rgb: 0,114,240;
|
|
4332
|
+
--text-color-rgb: 255,255,255;
|
|
4333
|
+
}
|
|
4334
|
+
.button--primary:hover, .button--primary:active {
|
|
4335
|
+
--button-opacity: 0.75;
|
|
4336
|
+
}
|
|
4337
|
+
.button--primary[disabled] {
|
|
4338
|
+
--button-color-rgb: 197,201,212 !important;
|
|
4339
|
+
}
|
|
4340
|
+
.button--secondary {
|
|
4341
|
+
background-color: rgba(0, 0, 0, 0);
|
|
4342
|
+
border-color: rgba(197,201,212, 1);
|
|
4343
|
+
border-color: rgba(var(--button-color-rgb), 1);
|
|
4344
|
+
color: rgba(118,121,127, 1);
|
|
4345
|
+
color: rgba(var(--text-color-rgb), 1);
|
|
4346
|
+
--button-color-rgb: 197,201,212;
|
|
4347
|
+
--button-hover-color-rgb: 118,121,127;
|
|
4348
|
+
--text-color-rgb: 118,121,127;
|
|
4349
|
+
}
|
|
4350
|
+
.button--secondary:hover, .button--secondary:active {
|
|
4351
|
+
background-color: rgba(var(--button-hover-color-rgb, var(--button-color-rgb)), 0.12);
|
|
4352
|
+
}
|
|
4353
|
+
.button--secondary[disabled] {
|
|
4354
|
+
--button-color-rgb: 197,201,212 !important;
|
|
4355
|
+
--text-color-rgb: 197,201,212 !important;
|
|
4356
|
+
}
|
|
4357
|
+
.button--tertiary {
|
|
4358
|
+
background-color: rgba(0, 0, 0, 0);
|
|
4359
|
+
border-color: rgba(255,255,255, 1);
|
|
4360
|
+
border-color: rgba(var(--button-color-rgb), 1);
|
|
4361
|
+
color: rgba(255,255,255, 1);
|
|
4362
|
+
color: rgba(var(--text-color-rgb), 1);
|
|
4363
|
+
--button-color-rgb: 255,255,255;
|
|
4364
|
+
--text-color-rgb: 255,255,255;
|
|
4365
|
+
}
|
|
4366
|
+
.button--tertiary:hover, .button--tertiary:active {
|
|
4367
|
+
background-color: rgba(var(--button-hover-color-rgb, var(--button-color-rgb)), 0.12);
|
|
4368
|
+
}
|
|
4369
|
+
.button--tertiary[disabled] {
|
|
4370
|
+
--button-color-rgb: 197,201,212 !important;
|
|
4371
|
+
--text-color-rgb: 197,201,212 !important;
|
|
4372
|
+
}
|
|
4373
|
+
.button--icon {
|
|
4374
|
+
border: 0;
|
|
4375
|
+
border-radius: 50%;
|
|
4376
|
+
height: 48px;
|
|
4377
|
+
min-width: 0;
|
|
4378
|
+
padding: 12px;
|
|
4379
|
+
width: 48px;
|
|
4380
|
+
}
|
|
4381
|
+
.button--icon svg {
|
|
4382
|
+
display: block;
|
|
4383
|
+
margin-left: auto;
|
|
4384
|
+
margin-right: auto;
|
|
4385
|
+
}
|
|
4386
|
+
.button--icon[disabled] svg {
|
|
4387
|
+
color: #C5C9D4;
|
|
4388
|
+
}
|
|
4389
|
+
.button--inline {
|
|
4390
|
+
border: 0;
|
|
4391
|
+
color: #0072F0;
|
|
4392
|
+
font-weight: 500;
|
|
4393
|
+
line-height: 1.5;
|
|
4394
|
+
min-width: 0;
|
|
4395
|
+
padding: 0;
|
|
4396
|
+
}
|
|
4397
|
+
.button--inline:hover {
|
|
4398
|
+
-webkit-text-decoration: underline;
|
|
4399
|
+
text-decoration: underline;
|
|
4400
|
+
}
|
|
4401
|
+
.button--inline[disabled] {
|
|
4402
|
+
color: #76797F;
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
/* ---------------------------------------
|
|
4406
|
+
Colors
|
|
4407
|
+
---------------------------------------- */
|
|
4408
|
+
.button--blue.button--primary, .button--blue.button--secondary {
|
|
4409
|
+
--button-color-rgb: 0,114,240;
|
|
4410
|
+
}
|
|
4411
|
+
.button--blue.button--secondary {
|
|
4412
|
+
--text-color-rgb: 0,114,240;
|
|
4413
|
+
--button-hover-color-rgb: 0,114,240;
|
|
4414
|
+
}
|
|
4415
|
+
.button--red.button--primary, .button--red.button--secondary {
|
|
4416
|
+
--button-color-rgb: 228,0,43;
|
|
4417
|
+
}
|
|
4418
|
+
.button--red.button--secondary {
|
|
4419
|
+
--text-color-rgb: 228,0,43;
|
|
4420
|
+
--button-hover-color-rgb: 228,0,43;
|
|
4421
|
+
}
|
|
4422
|
+
|
|
4423
|
+
/* ---------------------------------------
|
|
4424
|
+
Button Grid
|
|
4425
|
+
TODO: Create ButtonGrid component with styles below and remove button grid styles from LLButton.vue
|
|
4426
|
+
https://leaflink.atlassian.net/browse/STASH-230
|
|
4427
|
+
---------------------------------------- */
|
|
4428
|
+
.button-grid {
|
|
4429
|
+
grid-column-end: -1 !important;
|
|
4430
|
+
}
|
|
4431
|
+
.button-grid {
|
|
4432
|
+
display: -webkit-box;
|
|
4433
|
+
display: -ms-flexbox;
|
|
4434
|
+
display: flex;
|
|
4435
|
+
}
|
|
4436
|
+
.button-grid > .button {
|
|
4437
|
+
width: 50%;
|
|
4438
|
+
}
|
|
4439
|
+
.button-grid > .button + .button {
|
|
4440
|
+
margin-left: 24px;
|
|
4441
|
+
}
|
|
4442
|
+
@media screen and (min-width: 641px) {
|
|
4443
|
+
.button-grid {
|
|
4444
|
+
display: -webkit-inline-box;
|
|
4445
|
+
display: -ms-inline-flexbox;
|
|
4446
|
+
display: inline-flex;
|
|
4447
|
+
}
|
|
4448
|
+
.button-grid > .button {
|
|
4449
|
+
width: auto;
|
|
4450
|
+
}
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4453
|
+
.header-button-grid {
|
|
4454
|
+
grid-column-end: -1 !important;
|
|
4455
|
+
}
|
|
4456
|
+
|
|
4457
|
+
.header-button-grid {
|
|
4458
|
+
display: -webkit-box;
|
|
4459
|
+
display: -ms-flexbox;
|
|
4460
|
+
display: flex;
|
|
4461
|
+
}
|
|
4462
|
+
.header-button-grid > .button {
|
|
4463
|
+
width: 50%;
|
|
4464
|
+
}
|
|
4465
|
+
@media screen and (min-width: 961px) {
|
|
4466
|
+
.header-button-grid > .button {
|
|
4467
|
+
width: auto;
|
|
4468
|
+
}
|
|
4469
|
+
}
|
|
4470
|
+
.header-button-grid > .button + .button {
|
|
4471
|
+
margin-left: 24px;
|
|
4472
|
+
}
|
|
4473
|
+
/**
|
|
4474
|
+
|
|
4475
|
+
Forms
|
|
4476
|
+
|
|
4477
|
+
◡◠ ✥ ◠◡
|
|
4478
|
+
|
|
4479
|
+
Table of Contents:
|
|
4480
|
+
|
|
4481
|
+
• Form
|
|
4482
|
+
• Base
|
|
4483
|
+
• Input
|
|
4484
|
+
• Checkbox & Radio
|
|
4485
|
+
|
|
4486
|
+
*/
|
|
4487
|
+
.form__errors {
|
|
4488
|
+
border: 1px solid #C5C9D4 #E4002B;
|
|
4489
|
+
border: 1px solid #C5C9D4 var(--color-red-500);
|
|
4490
|
+
color: #E4002B;
|
|
4491
|
+
color: var(--color-red-500);
|
|
4492
|
+
display: inline-block;
|
|
4493
|
+
font-size: 0.875rem;
|
|
4494
|
+
min-width: 300px;
|
|
4495
|
+
padding: 12px;
|
|
4496
|
+
text-align: center;
|
|
4497
|
+
}
|
|
4498
|
+
|
|
4499
|
+
/* ---------------------------------------
|
|
4500
|
+
Base
|
|
4501
|
+
---------------------------------------- */
|
|
4502
|
+
input[disabled], input[readonly] {
|
|
4503
|
+
background-color: #E8E9EE !important;
|
|
4504
|
+
background-color: var(--color-ice-200) !important;
|
|
4505
|
+
border-color: #C5C9D4 !important;
|
|
4506
|
+
border-color: var(--color-ice-500) !important;
|
|
4507
|
+
color: #76797F !important;
|
|
4508
|
+
color: var(--color-ice-700) !important;
|
|
4509
|
+
}
|
|
4510
|
+
input[disabled], input[readonly] {
|
|
4511
|
+
pointer-events: none;
|
|
4512
|
+
}
|
|
4513
|
+
input[disabled]:active, input[disabled]:focus, input[readonly]:active, input[readonly]:focus {
|
|
4514
|
+
-webkit-box-shadow: none !important;
|
|
4515
|
+
box-shadow: none !important;
|
|
4516
|
+
}
|
|
4517
|
+
input::-webkit-input-placeholder {
|
|
4518
|
+
text-transform: none;
|
|
4519
|
+
}
|
|
4520
|
+
input::-moz-placeholder {
|
|
4521
|
+
text-transform: none;
|
|
4522
|
+
}
|
|
4523
|
+
input:-ms-input-placeholder {
|
|
4524
|
+
text-transform: none;
|
|
4525
|
+
}
|
|
4526
|
+
input::-ms-input-placeholder {
|
|
4527
|
+
text-transform: none;
|
|
4528
|
+
}
|
|
4529
|
+
input::placeholder {
|
|
4530
|
+
text-transform: none;
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
|
|
4534
|
+
color: #C5C9D4;
|
|
4535
|
+
color: var(--color-ice-500);
|
|
4536
|
+
opacity: 1;
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
|
|
4540
|
+
color: #C5C9D4;
|
|
4541
|
+
color: var(--color-ice-500);
|
|
4542
|
+
opacity: 1;
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
4546
|
+
color: #C5C9D4;
|
|
4547
|
+
color: var(--color-ice-500);
|
|
4548
|
+
opacity: 1;
|
|
4549
|
+
}
|
|
4550
|
+
|
|
4551
|
+
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
|
|
4552
|
+
color: #C5C9D4;
|
|
4553
|
+
color: var(--color-ice-500);
|
|
4554
|
+
opacity: 1;
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
input::placeholder,
|
|
4558
|
+
select::placeholder,
|
|
4559
|
+
textarea::placeholder {
|
|
4560
|
+
color: #C5C9D4;
|
|
4561
|
+
color: var(--color-ice-500);
|
|
4562
|
+
opacity: 1;
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
select {
|
|
4566
|
+
border: 1px solid #C5C9D4;
|
|
4567
|
+
color: #27282A;
|
|
4568
|
+
color: var(--color-ice-900);
|
|
4569
|
+
}
|
|
4570
|
+
|
|
4571
|
+
textarea {
|
|
4572
|
+
min-height: 100px;
|
|
4573
|
+
resize: none;
|
|
4574
|
+
}
|
|
4575
|
+
|
|
4576
|
+
/* ---------------------------------------
|
|
4577
|
+
Input
|
|
4578
|
+
---------------------------------------- */
|
|
4579
|
+
.input {
|
|
4580
|
+
position: relative;
|
|
4581
|
+
}
|
|
4582
|
+
.input input,
|
|
4583
|
+
.input select {
|
|
4584
|
+
height: 36px;
|
|
4585
|
+
}
|
|
4586
|
+
.input.has-error {
|
|
4587
|
+
color: #E4002B;
|
|
4588
|
+
color: var(--color-red-500);
|
|
4589
|
+
}
|
|
4590
|
+
.input.has-error .input-field, .input.has-error.input--radio label::before, .input.has-error.input--checkbox label::before,
|
|
4591
|
+
.input.has-error input,
|
|
4592
|
+
.input.has-error select,
|
|
4593
|
+
.input.has-error textarea {
|
|
4594
|
+
border-color: #E4002B;
|
|
4595
|
+
border-color: var(--color-red-500);
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
.input-field, .input input,
|
|
4599
|
+
.input select,
|
|
4600
|
+
.input textarea {
|
|
4601
|
+
background: #ffffff;
|
|
4602
|
+
background: var(--color-white);
|
|
4603
|
+
border: 1px solid #C5C9D4;
|
|
4604
|
+
border-radius: 4px;
|
|
4605
|
+
color: #76797F;
|
|
4606
|
+
color: var(--color-ice-700);
|
|
4607
|
+
display: block;
|
|
4608
|
+
font-family: "Sofia", sans-serif;
|
|
4609
|
+
font-size: 0.875rem;
|
|
4610
|
+
font-weight: 400;
|
|
4611
|
+
outline: none;
|
|
4612
|
+
padding: 0 12px;
|
|
4613
|
+
width: 100%;
|
|
4614
|
+
}
|
|
4615
|
+
.input-field:hover, .input input:hover,
|
|
4616
|
+
.input select:hover,
|
|
4617
|
+
.input textarea:hover {
|
|
4618
|
+
border-color: #C5C9D4;
|
|
4619
|
+
border-color: var(--color-ice-500);
|
|
4620
|
+
}
|
|
4621
|
+
.input-field:active, .input input:active,
|
|
4622
|
+
.input select:active,
|
|
4623
|
+
.input textarea:active, .input-field:focus, .input input:focus,
|
|
4624
|
+
.input select:focus,
|
|
4625
|
+
.input textarea:focus {
|
|
4626
|
+
border-color: #0072F0;
|
|
4627
|
+
border-color: var(--color-blue-500);
|
|
4628
|
+
}
|
|
4629
|
+
|
|
4630
|
+
.input-label {
|
|
4631
|
+
color: #27282A;
|
|
4632
|
+
color: var(--color-ice-900);
|
|
4633
|
+
display: block;
|
|
4634
|
+
font-size: 0.75rem;
|
|
4635
|
+
font-size: var(--text-xs);
|
|
4636
|
+
font-weight: 500;
|
|
4637
|
+
font-weight: var(--font-weight-medium);
|
|
4638
|
+
line-height: 24px;
|
|
4639
|
+
overflow: hidden;
|
|
4640
|
+
text-overflow: ellipsis;
|
|
4641
|
+
white-space: nowrap;
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
/* ---------------------------------------
|
|
4645
|
+
Checkbox & Radio
|
|
4646
|
+
---------------------------------------- */
|
|
4647
|
+
/* stylelint-disable no-descending-specificity */
|
|
4648
|
+
.input--checkbox,
|
|
4649
|
+
.input--radio {
|
|
4650
|
+
display: block;
|
|
4651
|
+
margin: 6px 0;
|
|
4652
|
+
}
|
|
4653
|
+
@media screen and (min-width: 961px) {
|
|
4654
|
+
.input--checkbox,
|
|
4655
|
+
.input--radio {
|
|
4656
|
+
margin: 0;
|
|
4657
|
+
}
|
|
4658
|
+
}
|
|
4659
|
+
.input--checkbox input,
|
|
4660
|
+
.input--radio input {
|
|
4661
|
+
border: 0;
|
|
4662
|
+
clip: rect(0, 0, 0, 0);
|
|
4663
|
+
height: 1px;
|
|
4664
|
+
margin: -1px;
|
|
4665
|
+
overflow: hidden;
|
|
4666
|
+
padding: 0;
|
|
4667
|
+
position: absolute;
|
|
4668
|
+
width: 1px;
|
|
4669
|
+
}
|
|
4670
|
+
.input--checkbox .input-label,
|
|
4671
|
+
.input--checkbox label,
|
|
4672
|
+
.input--radio .input-label,
|
|
4673
|
+
.input--radio label {
|
|
4674
|
+
cursor: pointer;
|
|
4675
|
+
display: inline-block;
|
|
4676
|
+
line-height: 24px;
|
|
4677
|
+
min-height: 36px;
|
|
4678
|
+
overflow: visible;
|
|
4679
|
+
padding: 6px 0 6px 32px;
|
|
4680
|
+
position: relative;
|
|
4681
|
+
vertical-align: top;
|
|
4682
|
+
}
|
|
4683
|
+
.input--checkbox .input-label::before,
|
|
4684
|
+
.input--checkbox label::before,
|
|
4685
|
+
.input--radio .input-label::before,
|
|
4686
|
+
.input--radio label::before {
|
|
4687
|
+
background: #ffffff;
|
|
4688
|
+
background: var(--color-white);
|
|
4689
|
+
border: 1px solid #C5C9D4;
|
|
4690
|
+
content: "";
|
|
4691
|
+
display: inline-block;
|
|
4692
|
+
vertical-align: top;
|
|
4693
|
+
}
|
|
4694
|
+
.input--checkbox .input-label::before, .input--checkbox .input-label::after,
|
|
4695
|
+
.input--checkbox label::before,
|
|
4696
|
+
.input--checkbox label::after,
|
|
4697
|
+
.input--radio .input-label::before,
|
|
4698
|
+
.input--radio .input-label::after,
|
|
4699
|
+
.input--radio label::before,
|
|
4700
|
+
.input--radio label::after {
|
|
4701
|
+
height: 20px;
|
|
4702
|
+
left: 0;
|
|
4703
|
+
position: absolute;
|
|
4704
|
+
top: 50%;
|
|
4705
|
+
-webkit-transform: translateY(-50%);
|
|
4706
|
+
transform: translateY(-50%);
|
|
4707
|
+
width: 20px;
|
|
4708
|
+
}
|
|
4709
|
+
.input--checkbox .input-label span,
|
|
4710
|
+
.input--checkbox label span,
|
|
4711
|
+
.input--radio .input-label span,
|
|
4712
|
+
.input--radio label span {
|
|
4713
|
+
color: #27282A;
|
|
4714
|
+
color: var(--color-ice-900);
|
|
4715
|
+
}
|
|
4716
|
+
.input--checkbox input:focus + label::before,
|
|
4717
|
+
.input--radio input:focus + label::before {
|
|
4718
|
+
outline: none;
|
|
4719
|
+
}
|
|
4720
|
+
.input--checkbox input:focus:not(:disabled) + label::before,
|
|
4721
|
+
.input--radio input:focus:not(:disabled) + label::before {
|
|
4722
|
+
border-color: #0072F0;
|
|
4723
|
+
border-color: var(--color-blue-500);
|
|
4724
|
+
}
|
|
4725
|
+
.input--checkbox input:disabled,
|
|
4726
|
+
.input--checkbox input:disabled + label,
|
|
4727
|
+
.input--radio input:disabled,
|
|
4728
|
+
.input--radio input:disabled + label {
|
|
4729
|
+
cursor: auto;
|
|
4730
|
+
}
|
|
4731
|
+
.input--checkbox input:disabled + label::before,
|
|
4732
|
+
.input--radio input:disabled + label::before {
|
|
4733
|
+
background: #E8E9EE;
|
|
4734
|
+
background: var(--color-ice-200);
|
|
4735
|
+
}
|
|
4736
|
+
.input--checkbox input:not(:disabled):not(:checked) + label:hover::before,
|
|
4737
|
+
.input--radio input:not(:disabled):not(:checked) + label:hover::before {
|
|
4738
|
+
border-color: #0072F0;
|
|
4739
|
+
border-color: var(--color-blue-500);
|
|
4740
|
+
}
|
|
4741
|
+
|
|
4742
|
+
.input--checkbox label::before {
|
|
4743
|
+
border-radius: 4px;
|
|
4744
|
+
}
|
|
4745
|
+
.input--checkbox input:checked + label::before,
|
|
4746
|
+
.input--checkbox input:indeterminate + label::before {
|
|
4747
|
+
background: #0072F0;
|
|
4748
|
+
background: var(--color-blue-500);
|
|
4749
|
+
border: none;
|
|
4750
|
+
}
|
|
4751
|
+
.input--checkbox input:checked + label::after {
|
|
4752
|
+
content: url('data:image/svg+xml; utf8, <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17.89 8.281a.723.723 0 0 1 .22.531.723.723 0 0 1-.22.532l-6.718 6.719a.723.723 0 0 1-.531.218.723.723 0 0 1-.532-.218l-3.89-3.891A.723.723 0 0 1 6 11.64c0-.209.073-.386.219-.532l1.062-1.062a.723.723 0 0 1 .532-.219.72.72 0 0 1 .53.219l2.298 2.305 5.125-5.133a.723.723 0 0 1 .53-.219c.21 0 .386.073.532.219l1.063 1.062z" fill="white"/></svg>');
|
|
4753
|
+
}
|
|
4754
|
+
.input--checkbox input:indeterminate + label::after {
|
|
4755
|
+
content: url('data:image/svg+xml; utf8, <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 10.4C6 10.1791 6.17909 10 6.4 10H17.6C17.8209 10 18 10.1791 18 10.4V12.6C18 12.8209 17.8209 13 17.6 13H6.4C6.17909 13 6 12.8209 6 12.6V10.4Z" fill="white"/></svg>');
|
|
4756
|
+
}
|
|
4757
|
+
.input--checkbox input:disabled:checked + label::before,
|
|
4758
|
+
.input--checkbox input:disabled:indeterminate + label::before {
|
|
4759
|
+
background: #C5C9D4;
|
|
4760
|
+
background: var(--color-ice-500);
|
|
4761
|
+
}
|
|
4762
|
+
|
|
4763
|
+
.input--radio label::before,
|
|
4764
|
+
.input--radio label::after {
|
|
4765
|
+
border-radius: 50%;
|
|
4766
|
+
}
|
|
4767
|
+
.input--radio input:checked + label::after {
|
|
4768
|
+
background: #0072F0;
|
|
4769
|
+
background: var(--color-blue-500);
|
|
4770
|
+
content: "";
|
|
4771
|
+
height: 14px;
|
|
4772
|
+
left: 3px;
|
|
4773
|
+
width: 14px;
|
|
4774
|
+
}
|
|
4775
|
+
.input--radio input:checked:disabled + label::after {
|
|
4776
|
+
background: #C5C9D4;
|
|
4777
|
+
background: var(--color-ice-500);
|
|
4778
|
+
}
|
|
4779
|
+
|
|
4780
|
+
/* stylelint-enable */
|
|
4781
|
+
.input__icon {
|
|
4782
|
+
-webkit-box-align: center;
|
|
4783
|
+
-ms-flex-align: center;
|
|
4784
|
+
align-items: center;
|
|
4785
|
+
cursor: pointer;
|
|
4786
|
+
display: -webkit-box;
|
|
4787
|
+
display: -ms-flexbox;
|
|
4788
|
+
display: flex;
|
|
4789
|
+
height: 36px;
|
|
4790
|
+
-webkit-box-pack: center;
|
|
4791
|
+
-ms-flex-pack: center;
|
|
4792
|
+
justify-content: center;
|
|
4793
|
+
position: absolute;
|
|
4794
|
+
right: 0;
|
|
4795
|
+
top: 0;
|
|
4796
|
+
width: 36px;
|
|
4797
|
+
}
|
|
4798
|
+
|
|
4799
|
+
.input__symbol {
|
|
4800
|
+
-webkit-box-align: center;
|
|
4801
|
+
-ms-flex-align: center;
|
|
4802
|
+
align-items: center;
|
|
4803
|
+
display: -webkit-box;
|
|
4804
|
+
display: -ms-flexbox;
|
|
4805
|
+
display: flex;
|
|
4806
|
+
height: 36px;
|
|
4807
|
+
-webkit-box-pack: center;
|
|
4808
|
+
-ms-flex-pack: center;
|
|
4809
|
+
justify-content: center;
|
|
4810
|
+
overflow: hidden;
|
|
4811
|
+
position: absolute;
|
|
4812
|
+
top: 0;
|
|
4813
|
+
width: 36px;
|
|
4814
|
+
}
|
|
4815
|
+
.input__symbol--prepend {
|
|
4816
|
+
border-bottom-left-radius: 4px;
|
|
4817
|
+
border-top-left-radius: 4px;
|
|
4818
|
+
left: 0;
|
|
4819
|
+
}
|
|
4820
|
+
.input__symbol--append {
|
|
4821
|
+
border-bottom-right-radius: 4px;
|
|
4822
|
+
border-top-right-radius: 4px;
|
|
4823
|
+
right: 0;
|
|
4824
|
+
}
|
|
4825
|
+
|
|
4826
|
+
.hint {
|
|
4827
|
+
display: inline-block;
|
|
4828
|
+
margin-top: 4px;
|
|
4829
|
+
}
|
|
4830
|
+
/* ---------------------------------------
|
|
4831
|
+
Table
|
|
4832
|
+
---------------------------------------- */
|
|
4833
|
+
/* stylelint-disable no-descending-specificity */
|
|
4834
|
+
.table--bordered {
|
|
4835
|
+
border: 1px solid #C5C9D4;
|
|
4836
|
+
border-collapse: separate;
|
|
4837
|
+
border-radius: 4px;
|
|
4838
|
+
border-spacing: 0;
|
|
4839
|
+
}
|
|
4840
|
+
.table--bordered td:last-child,
|
|
4841
|
+
.table--bordered th:last-child {
|
|
4842
|
+
border-right: none;
|
|
4843
|
+
}
|
|
4844
|
+
.table--bordered thead td,
|
|
4845
|
+
.table--bordered thead th {
|
|
4846
|
+
border-bottom: none;
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
/* ---------------------------------------
|
|
4850
|
+
Overflow
|
|
4851
|
+
---------------------------------------- */
|
|
4852
|
+
.overflow-hidden {
|
|
4853
|
+
overflow: hidden;
|
|
4854
|
+
}
|
|
4855
|
+
|
|
4856
|
+
.overflow-x-hidden {
|
|
4857
|
+
overflow-x: hidden;
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
.overflow-y-hidden {
|
|
4861
|
+
overflow-y: hidden;
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4864
|
+
.sr-only {
|
|
4865
|
+
border-width: 0;
|
|
4866
|
+
clip: rect(0, 0, 0, 0);
|
|
4867
|
+
height: 1px;
|
|
4868
|
+
margin: -1px;
|
|
4869
|
+
overflow: hidden;
|
|
4870
|
+
padding: 0;
|
|
4871
|
+
position: absolute;
|
|
4872
|
+
white-space: nowrap;
|
|
4873
|
+
width: 1px;
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
/* ---------------------------------------
|
|
4877
|
+
Display
|
|
4878
|
+
---------------------------------------- */
|
|
4879
|
+
.block {
|
|
4880
|
+
display: block !important;
|
|
4881
|
+
}
|
|
4882
|
+
|
|
4883
|
+
.inline-block {
|
|
4884
|
+
display: inline-block !important;
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4887
|
+
/* ---------------------------------------
|
|
4888
|
+
Hidden
|
|
4889
|
+
---------------------------------------- */
|
|
4890
|
+
.hidden {
|
|
4891
|
+
display: none !important;
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4894
|
+
@media screen and (max-width: 640px) {
|
|
4895
|
+
.hidden-sm-only {
|
|
4896
|
+
display: none !important;
|
|
4897
|
+
}
|
|
4898
|
+
}
|
|
4899
|
+
|
|
4900
|
+
@media screen and (min-width: 641px) and (max-width: 960px) {
|
|
4901
|
+
.hidden-md-only {
|
|
4902
|
+
display: none !important;
|
|
4903
|
+
}
|
|
4904
|
+
}
|
|
4905
|
+
|
|
4906
|
+
@media screen and (min-width: 961px) and (max-width: 1320px) {
|
|
4907
|
+
.hidden-lg-only {
|
|
4908
|
+
display: none !important;
|
|
4909
|
+
}
|
|
4910
|
+
}
|
|
4911
|
+
|
|
4912
|
+
@media screen and (min-width: 641px) {
|
|
4913
|
+
.hidden-md {
|
|
4914
|
+
display: none !important;
|
|
4915
|
+
}
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
@media screen and (min-width: 961px) {
|
|
4919
|
+
.hidden-lg {
|
|
4920
|
+
display: none !important;
|
|
4921
|
+
}
|
|
4922
|
+
}
|
|
4923
|
+
|
|
4924
|
+
@media screen and (min-width: 1321px) {
|
|
4925
|
+
.hidden-xl {
|
|
4926
|
+
display: none !important;
|
|
4927
|
+
}
|
|
4928
|
+
}
|
|
4929
|
+
|
|
4930
|
+
@media screen and (max-width: 960px) {
|
|
4931
|
+
.hidden-md-and-down {
|
|
4932
|
+
display: none !important;
|
|
4933
|
+
}
|
|
4934
|
+
}
|
|
4935
|
+
|
|
4936
|
+
@media screen and (max-width: 1320px) {
|
|
4937
|
+
.hidden-lg-and-down {
|
|
4938
|
+
display: none !important;
|
|
4939
|
+
}
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
/* ---------------------------------------
|
|
4943
|
+
Height
|
|
4944
|
+
---------------------------------------- */
|
|
4945
|
+
.h-full {
|
|
4946
|
+
height: 100%;
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4949
|
+
/* ---------------------------------------
|
|
4950
|
+
Width
|
|
4951
|
+
---------------------------------------- */
|
|
4952
|
+
.w-full {
|
|
4953
|
+
width: 100%;
|
|
4954
|
+
}
|
|
4955
|
+
|
|
4956
|
+
.w-1\/2 {
|
|
4957
|
+
width: 50%;
|
|
4958
|
+
}
|
|
4959
|
+
|
|
4960
|
+
.w-64 {
|
|
4961
|
+
width: 16rem;
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
.w-screen {
|
|
4965
|
+
width: 100vw;
|
|
4966
|
+
}
|
|
4967
|
+
|
|
4968
|
+
.w-min-auto {
|
|
4969
|
+
min-width: auto;
|
|
4970
|
+
}
|
|
4971
|
+
|
|
4972
|
+
/* ---------------------------------------
|
|
4973
|
+
Borders
|
|
4974
|
+
---------------------------------------- */
|
|
4975
|
+
.border {
|
|
4976
|
+
border-width: 1px;
|
|
4977
|
+
}
|
|
4978
|
+
|
|
4979
|
+
.no-border {
|
|
4980
|
+
border-width: 0 !important;
|
|
4981
|
+
}
|
|
4982
|
+
|
|
4983
|
+
.no-outline {
|
|
4984
|
+
outline: 0;
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
.rounded {
|
|
4988
|
+
border-radius: 4px;
|
|
4989
|
+
}
|
|
4990
|
+
|
|
4991
|
+
.border-t {
|
|
4992
|
+
border-top-width: 1px;
|
|
4993
|
+
}
|
|
4994
|
+
|
|
4995
|
+
.border-r {
|
|
4996
|
+
border-right-width: 1px;
|
|
4997
|
+
}
|
|
4998
|
+
|
|
4999
|
+
.border-b {
|
|
5000
|
+
border-bottom-width: 1px;
|
|
5001
|
+
}
|
|
5002
|
+
|
|
5003
|
+
.border-l {
|
|
5004
|
+
border-left-width: 1px;
|
|
5005
|
+
}
|
|
5006
|
+
|
|
5007
|
+
/* ---------------------------------------
|
|
5008
|
+
Rotate
|
|
5009
|
+
---------------------------------------- */
|
|
5010
|
+
.rotate-270 {
|
|
5011
|
+
-webkit-transform: rotate(270deg);
|
|
5012
|
+
transform: rotate(270deg);
|
|
5013
|
+
}
|
|
5014
|
+
|
|
5015
|
+
.rotate-180 {
|
|
5016
|
+
-webkit-transform: rotate(180deg);
|
|
5017
|
+
transform: rotate(180deg);
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
.rotate-90 {
|
|
5021
|
+
-webkit-transform: rotate(90deg);
|
|
5022
|
+
transform: rotate(90deg);
|
|
5023
|
+
}
|
|
5024
|
+
.icon {
|
|
5025
|
+
display: inline-block;
|
|
5026
|
+
fill: currentColor;
|
|
5027
|
+
height: 24px;
|
|
5028
|
+
vertical-align: middle;
|
|
5029
|
+
width: 24px;
|
|
5030
|
+
}
|
|
5031
|
+
.icon--small {
|
|
5032
|
+
height: 16px;
|
|
5033
|
+
width: 16px;
|
|
5034
|
+
}
|