@elliemae/ds-basic 2.1.0-rc.4 → 2.2.0-alpha.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/css/dimsum.css +646 -1096
- package/css/dimsum.min.css +1 -1
- package/css/dimsum.min.css.map +1 -1
- package/package.json +44 -44
- package/styles/base/fonts/font-base.scss +1 -7
- package/styles/components/index.scss +0 -1
- package/styles/components/packages/ds-basic/index.scss +0 -1
- package/styles/components/packages/ds-basic/styles/base/fonts/font-base.scss +1 -7
- package/styles/components/packages/ds-basic/styles/dist-index.scss +0 -1
- package/styles/components/packages/ds-basic/styles/themes/theme-default.scss +28 -30
- package/styles/components/packages/ds-button/DSButton.scss +7 -7
- package/styles/components/packages/ds-date-picker/components/DatePickerPicker/DatePickerPicker.scss +1 -1
- package/styles/dist-index.scss +0 -1
- package/styles/themes/theme-default.scss +28 -30
- package/styles/components/packages/ds-accordion/DSAccordion.scss +0 -185
package/css/dimsum.css
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
@import url(
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: 'proxima-nova';
|
|
4
|
-
src: url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff2") format("woff2"), url("~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff") format("woff");
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
font-style: normal; }
|
|
7
|
-
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
8
2
|
/**
|
|
9
3
|
Ellie Mae Default Theme
|
|
10
4
|
Below, you will find the default theme for DimSum. You can modify the theme's
|
|
@@ -21,6 +15,7 @@ Change these color values below to your brand colors.
|
|
|
21
15
|
* 1. Correct the line height in all browsers.
|
|
22
16
|
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
23
17
|
*/
|
|
18
|
+
@import url(~react-dates/lib/css/_datepicker.css);
|
|
24
19
|
html {
|
|
25
20
|
line-height: 1.15;
|
|
26
21
|
/* 1 */
|
|
@@ -1667,7 +1662,7 @@ template {
|
|
|
1667
1662
|
height: calc(100vh + 1.875rem); } }
|
|
1668
1663
|
|
|
1669
1664
|
:root {
|
|
1670
|
-
font-family:
|
|
1665
|
+
font-family: Roboto;
|
|
1671
1666
|
font-size: 13px;
|
|
1672
1667
|
color: #333333;
|
|
1673
1668
|
-moz-osx-font-smoothing: grayscale;
|
|
@@ -1748,12 +1743,12 @@ a {
|
|
|
1748
1743
|
|
|
1749
1744
|
.em-ds-selectbox__control {
|
|
1750
1745
|
border-radius: 2px;
|
|
1751
|
-
border: solid 1px #
|
|
1746
|
+
border: solid 1px #8c93a6;
|
|
1752
1747
|
transition: all 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
1753
1748
|
background: transparent;
|
|
1754
1749
|
height: 2.16rem;
|
|
1755
1750
|
outline: none;
|
|
1756
|
-
color: #
|
|
1751
|
+
color: #25292f;
|
|
1757
1752
|
display: flex;
|
|
1758
1753
|
flex-wrap: nowrap;
|
|
1759
1754
|
justify-content: space-between;
|
|
@@ -1766,23 +1761,23 @@ a {
|
|
|
1766
1761
|
.em-ds-selectbox__control:focus-within .em-ds-selectbox__indicator-separator {
|
|
1767
1762
|
background-color: transparent; }
|
|
1768
1763
|
.em-ds-selectbox__control:active {
|
|
1769
|
-
border-color: #
|
|
1770
|
-
color: #
|
|
1764
|
+
border-color: #006aa9;
|
|
1765
|
+
color: #25292f; }
|
|
1771
1766
|
.em-ds-selectbox__control:active .em-ds-selectbox__indicator {
|
|
1772
|
-
color: #
|
|
1767
|
+
color: #ffffff; }
|
|
1773
1768
|
.em-ds-selectbox__control:disabled, .em-ds-selectbox__control--is-disabled {
|
|
1774
1769
|
cursor: not-allowed;
|
|
1775
1770
|
pointer-events: none;
|
|
1776
1771
|
border-radius: 2px;
|
|
1777
1772
|
border: none;
|
|
1778
|
-
box-shadow: inset 0 0 0 1px #
|
|
1773
|
+
box-shadow: inset 0 0 0 1px #8c93a6;
|
|
1779
1774
|
cursor: not-allowed;
|
|
1780
1775
|
pointer-events: none;
|
|
1781
1776
|
border-radius: 2px;
|
|
1782
|
-
background: #
|
|
1777
|
+
background: #ebedf0;
|
|
1783
1778
|
color: #616b7f; }
|
|
1784
1779
|
.em-ds-selectbox__control:disabled .em-ds-selectbox__indicator-separator, .em-ds-selectbox__control--is-disabled .em-ds-selectbox__indicator-separator {
|
|
1785
|
-
background-color: #
|
|
1780
|
+
background-color: #8c93a6; }
|
|
1786
1781
|
.em-ds-selectbox__control--is-focused .em-ds-selectbox__indicator-separator {
|
|
1787
1782
|
background-color: transparent; }
|
|
1788
1783
|
|
|
@@ -1806,12 +1801,12 @@ a {
|
|
|
1806
1801
|
display: block;
|
|
1807
1802
|
overflow: hidden; }
|
|
1808
1803
|
.em-ds-selectbox__option--is-focused {
|
|
1809
|
-
background-color: #
|
|
1804
|
+
background-color: #ebf6ff; }
|
|
1810
1805
|
.em-ds-selectbox__option--is-selected {
|
|
1811
1806
|
background-color: #1e79c2;
|
|
1812
|
-
color: #
|
|
1807
|
+
color: #ffffff; }
|
|
1813
1808
|
.em-ds-selectbox__option--is-selected svg, .em-ds-selectbox__option--is-selected svg:not([fill]) {
|
|
1814
|
-
fill: #
|
|
1809
|
+
fill: #ffffff; }
|
|
1815
1810
|
|
|
1816
1811
|
.floating-label-input-controller .em-ds-selectbox__dropdown-indicator {
|
|
1817
1812
|
margin-top: -0.15385rem; }
|
|
@@ -1839,7 +1834,7 @@ a {
|
|
|
1839
1834
|
margin-bottom: 0;
|
|
1840
1835
|
height: 60%;
|
|
1841
1836
|
width: 1px;
|
|
1842
|
-
background-color: #
|
|
1837
|
+
background-color: #cbcfd7; }
|
|
1843
1838
|
|
|
1844
1839
|
/**
|
|
1845
1840
|
VARIANTS
|
|
@@ -1858,7 +1853,7 @@ VARIANTS
|
|
|
1858
1853
|
|
|
1859
1854
|
.em-ds-selectbox--variant-active-input .em-ds-selectbox__value-container {
|
|
1860
1855
|
outline: none;
|
|
1861
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
1856
|
+
border: calc(0.30769rem * 0.25) solid #006aa9;
|
|
1862
1857
|
border-radius: 2px; }
|
|
1863
1858
|
|
|
1864
1859
|
.em-ds-selectbox__control--menu-is-open .em-ds-selectbox__indicator-separator,
|
|
@@ -1868,7 +1863,7 @@ VARIANTS
|
|
|
1868
1863
|
.em-ds-selectbox__control--menu-is-open .em-ds-selectbox__indicators,
|
|
1869
1864
|
.em-ds-selectbox--variant-active-icon .em-ds-selectbox__indicators {
|
|
1870
1865
|
outline: none;
|
|
1871
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
1866
|
+
border: calc(0.30769rem * 0.25) solid #006aa9;
|
|
1872
1867
|
border-radius: 2px; }
|
|
1873
1868
|
|
|
1874
1869
|
.em-ds-selectbox--variant-focus-icon .em-ds-selectbox__indicators {
|
|
@@ -1881,16 +1876,16 @@ VARIANTS
|
|
|
1881
1876
|
cursor: not-allowed;
|
|
1882
1877
|
pointer-events: none;
|
|
1883
1878
|
border-radius: 2px;
|
|
1884
|
-
background: #
|
|
1879
|
+
background: #ebedf0;
|
|
1885
1880
|
color: #616b7f; }
|
|
1886
1881
|
|
|
1887
1882
|
.em-ds-selectbox--variant-error .em-ds-selectbox__control {
|
|
1888
|
-
box-shadow: inset 0 0 0 1px #
|
|
1883
|
+
box-shadow: inset 0 0 0 1px #c64252;
|
|
1889
1884
|
border-radius: 2px; }
|
|
1890
1885
|
|
|
1891
1886
|
.combobox-menu-menu {
|
|
1892
1887
|
outline: none;
|
|
1893
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
1888
|
+
border: calc(0.30769rem * 0.25) solid #006aa9;
|
|
1894
1889
|
border-radius: 2px;
|
|
1895
1890
|
padding: 0;
|
|
1896
1891
|
box-shadow: none;
|
|
@@ -1900,9 +1895,9 @@ VARIANTS
|
|
|
1900
1895
|
overflow: hidden; }
|
|
1901
1896
|
.combobox-menu-list .em-ds-selectbox__option--is-selected {
|
|
1902
1897
|
background-color: #1e79c2;
|
|
1903
|
-
color: #
|
|
1898
|
+
color: #ffffff; }
|
|
1904
1899
|
.combobox-menu-list .em-ds-selectbox__option--is-selected svg, .combobox-menu-list .em-ds-selectbox__option--is-selected svg:not([fill]) {
|
|
1905
|
-
fill: #
|
|
1900
|
+
fill: #ffffff; }
|
|
1906
1901
|
|
|
1907
1902
|
.combobox-menu-list.combobox-menu-list-is-multi .em-ds-selectbox__option--is-selected {
|
|
1908
1903
|
background-color: transparent; }
|
|
@@ -1912,14 +1907,14 @@ VARIANTS
|
|
|
1912
1907
|
|
|
1913
1908
|
.em-ds-selectbox__value-container:focus-within {
|
|
1914
1909
|
outline: none;
|
|
1915
|
-
box-shadow: inset 0 0 0 1px #
|
|
1910
|
+
box-shadow: inset 0 0 0 1px #006aa9;
|
|
1916
1911
|
border-radius: 2px; }
|
|
1917
1912
|
|
|
1918
1913
|
.em-ds-selectbox__value-container.em-ds-selectbox__value-container--has-value {
|
|
1919
1914
|
flex-wrap: nowrap;
|
|
1920
1915
|
flex-direction: row;
|
|
1921
1916
|
align-items: center;
|
|
1922
|
-
color: #
|
|
1917
|
+
color: #25292f; }
|
|
1923
1918
|
|
|
1924
1919
|
.em-ds-selectbox__value-container--is-multi.em-ds-selectbox__value-container--has-value {
|
|
1925
1920
|
flex-wrap: nowrap; }
|
|
@@ -1940,10 +1935,10 @@ VARIANTS
|
|
|
1940
1935
|
.em-ds-combobox-container {
|
|
1941
1936
|
width: 100%;
|
|
1942
1937
|
height: 2.16rem;
|
|
1943
|
-
background: #
|
|
1938
|
+
background: #ffffff; }
|
|
1944
1939
|
.em-ds-combobox-container input[type="text"] {
|
|
1945
|
-
background: #
|
|
1946
|
-
color: #
|
|
1940
|
+
background: #ffffff !important;
|
|
1941
|
+
color: #25292f !important; }
|
|
1947
1942
|
|
|
1948
1943
|
.em-ds-combobox__control {
|
|
1949
1944
|
border-radius: 2px;
|
|
@@ -1964,7 +1959,7 @@ VARIANTS
|
|
|
1964
1959
|
width: 100%;
|
|
1965
1960
|
height: 100%;
|
|
1966
1961
|
pointer-events: none;
|
|
1967
|
-
border: solid 1px #
|
|
1962
|
+
border: solid 1px #8c93a6;
|
|
1968
1963
|
border-radius: 2px; }
|
|
1969
1964
|
.em-ds-combobox__control.with-error {
|
|
1970
1965
|
outline: none;
|
|
@@ -1978,7 +1973,7 @@ VARIANTS
|
|
|
1978
1973
|
width: 100%;
|
|
1979
1974
|
height: 100%;
|
|
1980
1975
|
pointer-events: none;
|
|
1981
|
-
border: solid 1px #
|
|
1976
|
+
border: solid 1px #c64252;
|
|
1982
1977
|
border-radius: 2px; }
|
|
1983
1978
|
.em-ds-combobox__control:hover {
|
|
1984
1979
|
outline: none;
|
|
@@ -2023,14 +2018,14 @@ VARIANTS
|
|
|
2023
2018
|
width: 100%;
|
|
2024
2019
|
height: 100%;
|
|
2025
2020
|
pointer-events: none;
|
|
2026
|
-
border: solid 1px #
|
|
2021
|
+
border: solid 1px #c64252;
|
|
2027
2022
|
border-radius: 2px; }
|
|
2028
2023
|
|
|
2029
2024
|
.em-ds-combobox-container.is-disabled {
|
|
2030
2025
|
cursor: not-allowed;
|
|
2031
2026
|
pointer-events: none;
|
|
2032
2027
|
border-radius: 2px;
|
|
2033
|
-
background: #
|
|
2028
|
+
background: #ebedf0;
|
|
2034
2029
|
color: #616b7f; }
|
|
2035
2030
|
.em-ds-combobox-container.is-disabled input[type="text"] {
|
|
2036
2031
|
background: #EBEEF1 !important; }
|
|
@@ -2047,7 +2042,7 @@ VARIANTS
|
|
|
2047
2042
|
font-style: italic; }
|
|
2048
2043
|
|
|
2049
2044
|
.em-ds-combobox__value-container {
|
|
2050
|
-
color: #
|
|
2045
|
+
color: #25292f;
|
|
2051
2046
|
height: 2.16rem;
|
|
2052
2047
|
padding: 0 0.61538rem !important; }
|
|
2053
2048
|
.em-ds-combobox__value-container span {
|
|
@@ -2065,7 +2060,7 @@ VARIANTS
|
|
|
2065
2060
|
|
|
2066
2061
|
.em-ds-combobox__indicator-separator {
|
|
2067
2062
|
align-self: stretch;
|
|
2068
|
-
background-color: #
|
|
2063
|
+
background-color: #8c93a6;
|
|
2069
2064
|
margin-bottom: 0.30769rem;
|
|
2070
2065
|
margin-top: 0.30769rem;
|
|
2071
2066
|
width: 1px; }
|
|
@@ -2073,9 +2068,9 @@ VARIANTS
|
|
|
2073
2068
|
.em-ds-combobox__menu {
|
|
2074
2069
|
margin: 0;
|
|
2075
2070
|
top: 100%;
|
|
2076
|
-
background: #
|
|
2071
|
+
background: #ffffff;
|
|
2077
2072
|
border-radius: 2px;
|
|
2078
|
-
border: solid 1px #
|
|
2073
|
+
border: solid 1px #8c93a6;
|
|
2079
2074
|
-ms-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
|
|
2080
2075
|
-o-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
|
|
2081
2076
|
box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
|
|
@@ -2112,7 +2107,7 @@ VARIANTS
|
|
|
2112
2107
|
box-shadow: none;
|
|
2113
2108
|
outline: none;
|
|
2114
2109
|
position: relative;
|
|
2115
|
-
border-color: solid #
|
|
2110
|
+
border-color: solid #006aa9 1px; }
|
|
2116
2111
|
.em-ds-button.dropdown-indicator.active:after {
|
|
2117
2112
|
box-shadow: none !important;
|
|
2118
2113
|
border-color: transparent; }
|
|
@@ -2125,7 +2120,7 @@ VARIANTS
|
|
|
2125
2120
|
width: 100%;
|
|
2126
2121
|
height: 100%;
|
|
2127
2122
|
pointer-events: none;
|
|
2128
|
-
border: solid 1px #
|
|
2123
|
+
border: solid 1px #006aa9;
|
|
2129
2124
|
border-radius: 2px; }
|
|
2130
2125
|
|
|
2131
2126
|
.combobox-menu-wrapper-external .em-ds-menu {
|
|
@@ -2147,15 +2142,15 @@ VARIANTS
|
|
|
2147
2142
|
outline: calc(0.30769rem * 0.25) solid #1e79c2;
|
|
2148
2143
|
outline-offset: calc(0.30769rem * -0.25); }
|
|
2149
2144
|
.em-ds-combobox__option:active {
|
|
2150
|
-
background-color: #
|
|
2145
|
+
background-color: #ebf6ff; }
|
|
2151
2146
|
.em-ds-combobox__option--is-selected {
|
|
2152
|
-
background-color: #
|
|
2153
|
-
color: #
|
|
2147
|
+
background-color: #ebf6ff;
|
|
2148
|
+
color: #25292f; }
|
|
2154
2149
|
.em-ds-combobox__option--is-selected svg, .em-ds-combobox__option--is-selected svg:not([fill]) {
|
|
2155
|
-
fill: #
|
|
2150
|
+
fill: #ffffff; }
|
|
2156
2151
|
|
|
2157
2152
|
.combobox-menu-list-is-multi .em-ds-combobox__option--is-selected {
|
|
2158
|
-
background-color: #
|
|
2153
|
+
background-color: #ebf6ff; }
|
|
2159
2154
|
|
|
2160
2155
|
.em-ds-expandable-input {
|
|
2161
2156
|
display: flex;
|
|
@@ -2164,7 +2159,7 @@ VARIANTS
|
|
|
2164
2159
|
outline: none;
|
|
2165
2160
|
color: #697489;
|
|
2166
2161
|
box-sizing: border-box;
|
|
2167
|
-
background: #
|
|
2162
|
+
background: #ffffff;
|
|
2168
2163
|
transition: all 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
2169
2164
|
width: 2.4rem;
|
|
2170
2165
|
border-radius: 2px; }
|
|
@@ -2194,7 +2189,7 @@ VARIANTS
|
|
|
2194
2189
|
width: 100%; }
|
|
2195
2190
|
.em-ds-expandable-input--opened {
|
|
2196
2191
|
width: 100%;
|
|
2197
|
-
box-shadow: inset 0 0 0 1px #
|
|
2192
|
+
box-shadow: inset 0 0 0 1px #cbcfd7;
|
|
2198
2193
|
border-radius: 2px; }
|
|
2199
2194
|
.em-ds-expandable-input--opened .em-ds-input-addon-wrapper .expandable-input__input {
|
|
2200
2195
|
opacity: 1;
|
|
@@ -2243,7 +2238,7 @@ VARIANTS
|
|
|
2243
2238
|
color: #697489; }
|
|
2244
2239
|
.em-ds-input-times-group .em-ds-input-times-group__divider--value {
|
|
2245
2240
|
font-style: unset;
|
|
2246
|
-
color: #
|
|
2241
|
+
color: #25292f; }
|
|
2247
2242
|
.em-ds-input-times-group__input {
|
|
2248
2243
|
text-align: center;
|
|
2249
2244
|
border: none;
|
|
@@ -2265,7 +2260,7 @@ VARIANTS
|
|
|
2265
2260
|
color: #697489;
|
|
2266
2261
|
font-style: italic; }
|
|
2267
2262
|
.em-ds-input-times-group__input:focus {
|
|
2268
|
-
background: #
|
|
2263
|
+
background: #a3d6ff; }
|
|
2269
2264
|
.em-ds-input-times-group__input::placeholder {
|
|
2270
2265
|
text-align: center;
|
|
2271
2266
|
font-style: italic; }
|
|
@@ -2284,7 +2279,7 @@ VARIANTS
|
|
|
2284
2279
|
.em-ds-input-times-group__am-pm-input::-ms-expand {
|
|
2285
2280
|
display: none; }
|
|
2286
2281
|
.em-ds-input-times-group__am-pm-input:focus {
|
|
2287
|
-
background: #
|
|
2282
|
+
background: #a3d6ff; }
|
|
2288
2283
|
|
|
2289
2284
|
.em-ds-input-addon-group {
|
|
2290
2285
|
display: flex;
|
|
@@ -2351,7 +2346,7 @@ VARIANTS
|
|
|
2351
2346
|
align-items: flex-start;
|
|
2352
2347
|
position: relative;
|
|
2353
2348
|
cursor: pointer;
|
|
2354
|
-
color: #
|
|
2349
|
+
color: #25292f; }
|
|
2355
2350
|
.em-ds-form-element-checkbox__label .em-ds-form-element-checkbox__input-button {
|
|
2356
2351
|
pointer-events: none; }
|
|
2357
2352
|
.em-ds-form-element-checkbox__label:first-child:not(:last-child) {
|
|
@@ -2375,20 +2370,20 @@ VARIANTS
|
|
|
2375
2370
|
outline: none;
|
|
2376
2371
|
border: calc(0.30769rem * 0.25) solid #1e79c2; }
|
|
2377
2372
|
.em-ds-form-element-checkbox__label:hover .em-ds-form-element-checkbox__input-button.checkbox-true {
|
|
2378
|
-
background-color: #
|
|
2373
|
+
background-color: #ebf6ff; }
|
|
2379
2374
|
|
|
2380
2375
|
.em-ds-form-element-checkbox__label:active .em-ds-form-element-checkbox__input-button {
|
|
2381
2376
|
outline: none;
|
|
2382
|
-
background-color: #
|
|
2377
|
+
background-color: #ebf6ff; }
|
|
2383
2378
|
|
|
2384
2379
|
.em-ds-form-element-checkbox__input-button {
|
|
2385
2380
|
position: relative;
|
|
2386
2381
|
transition: 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
2387
2382
|
width: 1.23077rem;
|
|
2388
2383
|
height: 1.23077rem;
|
|
2389
|
-
border: solid 1px #
|
|
2384
|
+
border: solid 1px #8c93a6;
|
|
2390
2385
|
border-radius: 0.15385rem;
|
|
2391
|
-
background: #
|
|
2386
|
+
background: #ffffff;
|
|
2392
2387
|
display: inline-flex;
|
|
2393
2388
|
justify-content: center;
|
|
2394
2389
|
align-items: center;
|
|
@@ -2426,34 +2421,34 @@ VARIANTS
|
|
|
2426
2421
|
border-radius: 2px; }
|
|
2427
2422
|
.em-ds-form-element-checkbox__input-button:active:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-active:not(.disabled) {
|
|
2428
2423
|
outline: none;
|
|
2429
|
-
background-color: #
|
|
2424
|
+
background-color: #ebf6ff; }
|
|
2430
2425
|
.em-ds-form-element-checkbox__input-button.disabled {
|
|
2431
2426
|
cursor: not-allowed;
|
|
2432
2427
|
pointer-events: none; }
|
|
2433
2428
|
|
|
2434
2429
|
.em-ds-form-element-checkbox--error:hover .em-ds-form-element-checkbox__input-button {
|
|
2435
|
-
border-color: #
|
|
2430
|
+
border-color: #c64252; }
|
|
2436
2431
|
|
|
2437
2432
|
.em-ds-form-element-checkbox--error:active .em-ds-form-element-checkbox__input-button {
|
|
2438
|
-
background-color: #
|
|
2433
|
+
background-color: #f7cdd2; }
|
|
2439
2434
|
|
|
2440
2435
|
.em-ds-form-element-checkbox--error .em-ds-form-element-checkbox__input-button {
|
|
2441
|
-
border-color: #
|
|
2436
|
+
border-color: #c64252; }
|
|
2442
2437
|
.em-ds-form-element-checkbox--error .em-ds-form-element-checkbox__input-button.checkbox-mixed:after {
|
|
2443
|
-
background: #
|
|
2438
|
+
background: #c64252; }
|
|
2444
2439
|
.em-ds-form-element-checkbox--error .em-ds-form-element-checkbox__input-button.checkbox-true:after {
|
|
2445
|
-
border-color: #
|
|
2440
|
+
border-color: #c64252; }
|
|
2446
2441
|
|
|
2447
2442
|
.em-ds-form-element-checkbox--disabled:hover .em-ds-form-element-checkbox__input-button {
|
|
2448
|
-
border-color: #
|
|
2443
|
+
border-color: #8c93a6; }
|
|
2449
2444
|
|
|
2450
2445
|
.em-ds-form-element-checkbox--disabled:active .em-ds-form-element-checkbox__input-button {
|
|
2451
|
-
background: #
|
|
2446
|
+
background: #ebedf0; }
|
|
2452
2447
|
|
|
2453
2448
|
.em-ds-form-element-checkbox__input-button.variant-disabled, .em-ds-form-element-checkbox__input-button[aria-disabled='true'] {
|
|
2454
2449
|
pointer-events: none;
|
|
2455
|
-
border-color: #
|
|
2456
|
-
background: #
|
|
2450
|
+
border-color: #8c93a6;
|
|
2451
|
+
background: #ebedf0;
|
|
2457
2452
|
color: #697489; }
|
|
2458
2453
|
.em-ds-form-element-checkbox__input-button.variant-disabled.checkbox-mixed:after, .em-ds-form-element-checkbox__input-button[aria-disabled='true'].checkbox-mixed:after {
|
|
2459
2454
|
background: #697489; }
|
|
@@ -2471,7 +2466,7 @@ VARIANTS
|
|
|
2471
2466
|
-webkit-tap-highlight-color: transparent;
|
|
2472
2467
|
width: 1.5rem;
|
|
2473
2468
|
height: 1.5rem;
|
|
2474
|
-
border: 2px solid #
|
|
2469
|
+
border: 2px solid #8c93a6; }
|
|
2475
2470
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2476
2471
|
outline: none;
|
|
2477
2472
|
border: 2px solid #1e79c2;
|
|
@@ -2503,7 +2498,7 @@ VARIANTS
|
|
|
2503
2498
|
-webkit-tap-highlight-color: transparent;
|
|
2504
2499
|
width: 1.5rem;
|
|
2505
2500
|
height: 1.5rem;
|
|
2506
|
-
border: 2px solid #
|
|
2501
|
+
border: 2px solid #8c93a6; }
|
|
2507
2502
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2508
2503
|
outline: none;
|
|
2509
2504
|
border: 2px solid #1e79c2;
|
|
@@ -2535,7 +2530,7 @@ VARIANTS
|
|
|
2535
2530
|
-webkit-tap-highlight-color: transparent;
|
|
2536
2531
|
width: 1.5rem;
|
|
2537
2532
|
height: 1.5rem;
|
|
2538
|
-
border: 2px solid #
|
|
2533
|
+
border: 2px solid #8c93a6; }
|
|
2539
2534
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2540
2535
|
outline: none;
|
|
2541
2536
|
border: 2px solid #1e79c2;
|
|
@@ -2567,7 +2562,7 @@ VARIANTS
|
|
|
2567
2562
|
-webkit-tap-highlight-color: transparent;
|
|
2568
2563
|
width: 1.5rem;
|
|
2569
2564
|
height: 1.5rem;
|
|
2570
|
-
border: 2px solid #
|
|
2565
|
+
border: 2px solid #8c93a6; }
|
|
2571
2566
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2572
2567
|
outline: none;
|
|
2573
2568
|
border: 2px solid #1e79c2;
|
|
@@ -2599,7 +2594,7 @@ VARIANTS
|
|
|
2599
2594
|
-webkit-tap-highlight-color: transparent;
|
|
2600
2595
|
width: 1.5rem;
|
|
2601
2596
|
height: 1.5rem;
|
|
2602
|
-
border: 2px solid #
|
|
2597
|
+
border: 2px solid #8c93a6; }
|
|
2603
2598
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2604
2599
|
outline: none;
|
|
2605
2600
|
border: 2px solid #1e79c2;
|
|
@@ -2631,7 +2626,7 @@ VARIANTS
|
|
|
2631
2626
|
-webkit-tap-highlight-color: transparent;
|
|
2632
2627
|
width: 1.5rem;
|
|
2633
2628
|
height: 1.5rem;
|
|
2634
|
-
border: 2px solid #
|
|
2629
|
+
border: 2px solid #8c93a6; }
|
|
2635
2630
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2636
2631
|
outline: none;
|
|
2637
2632
|
border: 2px solid #1e79c2;
|
|
@@ -2663,7 +2658,7 @@ VARIANTS
|
|
|
2663
2658
|
-webkit-tap-highlight-color: transparent;
|
|
2664
2659
|
width: 1.5rem;
|
|
2665
2660
|
height: 1.5rem;
|
|
2666
|
-
border: 2px solid #
|
|
2661
|
+
border: 2px solid #8c93a6; }
|
|
2667
2662
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2668
2663
|
outline: none;
|
|
2669
2664
|
border: 2px solid #1e79c2;
|
|
@@ -2695,7 +2690,7 @@ VARIANTS
|
|
|
2695
2690
|
-webkit-tap-highlight-color: transparent;
|
|
2696
2691
|
width: 1.5rem;
|
|
2697
2692
|
height: 1.5rem;
|
|
2698
|
-
border: 2px solid #
|
|
2693
|
+
border: 2px solid #8c93a6; }
|
|
2699
2694
|
.em-ds-form-element-checkbox__input-button:focus:not(.disabled), .em-ds-form-element-checkbox__input-button.variant-focus:not(.disabled) {
|
|
2700
2695
|
outline: none;
|
|
2701
2696
|
border: 2px solid #1e79c2;
|
|
@@ -2968,15 +2963,15 @@ fieldset.em-ds-form-item-content {
|
|
|
2968
2963
|
height: 2.16rem;
|
|
2969
2964
|
width: 100%;
|
|
2970
2965
|
outline: none;
|
|
2971
|
-
color: #
|
|
2966
|
+
color: #25292f;
|
|
2972
2967
|
box-sizing: border-box;
|
|
2973
2968
|
display: flex;
|
|
2974
|
-
background: #
|
|
2969
|
+
background: #ffffff;
|
|
2975
2970
|
transition: border 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
2976
2971
|
padding: 0 0.61538rem;
|
|
2977
2972
|
z-index: 1;
|
|
2978
2973
|
border-radius: 2px;
|
|
2979
|
-
border: solid 1px #
|
|
2974
|
+
border: solid 1px #8c93a6;
|
|
2980
2975
|
text-overflow: ellipsis; }
|
|
2981
2976
|
.em-ds-input::-ms-clear {
|
|
2982
2977
|
display: none; }
|
|
@@ -2993,9 +2988,9 @@ fieldset.em-ds-form-item-content {
|
|
|
2993
2988
|
box-shadow: inset 0 0 0 1px #8cc2ed;
|
|
2994
2989
|
border-radius: 2px; }
|
|
2995
2990
|
.em-ds-input:active {
|
|
2996
|
-
color: #
|
|
2991
|
+
color: #25292f;
|
|
2997
2992
|
outline: none;
|
|
2998
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
2993
|
+
border: calc(0.30769rem * 0.25) solid #006aa9;
|
|
2999
2994
|
border-radius: 2px; }
|
|
3000
2995
|
.em-ds-input::-webkit-input-placeholder {
|
|
3001
2996
|
color: #697489;
|
|
@@ -3015,8 +3010,8 @@ fieldset.em-ds-form-item-content {
|
|
|
3015
3010
|
box-shadow: inset 0 0 0 1px #8cc2ed;
|
|
3016
3011
|
border-radius: 2px; }
|
|
3017
3012
|
.em-ds-input:disabled, .em-ds-input.input-disabled {
|
|
3018
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
3019
|
-
background: #
|
|
3013
|
+
border: calc(0.30769rem * 0.25) solid #8c93a6;
|
|
3014
|
+
background: #e0e3e8 !important;
|
|
3020
3015
|
color: #616b7f; }
|
|
3021
3016
|
.em-ds-input:disabled::-webkit-input-placeholder, .em-ds-input.input-disabled::-webkit-input-placeholder {
|
|
3022
3017
|
color: #5C6574; }
|
|
@@ -3081,17 +3076,17 @@ fieldset.em-ds-form-item-content {
|
|
|
3081
3076
|
opacity: 1; }
|
|
3082
3077
|
|
|
3083
3078
|
.em-ds-input--disabled {
|
|
3084
|
-
border-color: #
|
|
3079
|
+
border-color: #8c93a6; }
|
|
3085
3080
|
.em-ds-input--disabled:focus-within, .em-ds-input--disabled:hover {
|
|
3086
|
-
border-color: #
|
|
3081
|
+
border-color: #8c93a6; }
|
|
3087
3082
|
.em-ds-input--disabled:active {
|
|
3088
|
-
border-color: #
|
|
3083
|
+
border-color: #8c93a6; }
|
|
3089
3084
|
.em-ds-input--disabled .em-ds-input__input {
|
|
3090
3085
|
color: #616b7f;
|
|
3091
3086
|
cursor: not-allowed; }
|
|
3092
3087
|
|
|
3093
3088
|
.em-ds-input--error {
|
|
3094
|
-
border-color: #
|
|
3089
|
+
border-color: #c64252; }
|
|
3095
3090
|
.em-ds-input--error:focus, .em-ds-input--error:focus-within {
|
|
3096
3091
|
outline: none;
|
|
3097
3092
|
border: calc(0.30769rem * 0.25) solid #1e79c2;
|
|
@@ -3101,7 +3096,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3101
3096
|
color: #697489; }
|
|
3102
3097
|
|
|
3103
3098
|
.em-ds-input--readonly {
|
|
3104
|
-
border-color: #
|
|
3099
|
+
border-color: #e0e3e8;
|
|
3105
3100
|
cursor: not-allowed; }
|
|
3106
3101
|
.em-ds-input--readonly .em-ds-input__input {
|
|
3107
3102
|
color: #697489; }
|
|
@@ -3116,8 +3111,8 @@ fieldset.em-ds-form-item-content {
|
|
|
3116
3111
|
border: calc(0.30769rem * 0.25) solid #1e79c2; }
|
|
3117
3112
|
|
|
3118
3113
|
.em-ds-form-item--variant-disabled .em-ds-input {
|
|
3119
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
3120
|
-
background: #
|
|
3114
|
+
border: calc(0.30769rem * 0.25) solid #8c93a6;
|
|
3115
|
+
background: #e0e3e8 !important;
|
|
3121
3116
|
color: #616b7f; }
|
|
3122
3117
|
.em-ds-form-item--variant-disabled .em-ds-input::-webkit-input-placeholder {
|
|
3123
3118
|
color: #697489; }
|
|
@@ -3130,11 +3125,11 @@ fieldset.em-ds-form-item-content {
|
|
|
3130
3125
|
|
|
3131
3126
|
.em-ds-form-item--variant-read-only .em-ds-input {
|
|
3132
3127
|
border: none;
|
|
3133
|
-
border-top: calc(0.30769rem * 0.25) solid #
|
|
3128
|
+
border-top: calc(0.30769rem * 0.25) solid #8c93a6;
|
|
3134
3129
|
background: none; }
|
|
3135
3130
|
|
|
3136
3131
|
.em-ds-form-item--error .em-ds-input {
|
|
3137
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
3132
|
+
border: calc(0.30769rem * 0.25) solid #c64252; }
|
|
3138
3133
|
.em-ds-form-item--error .em-ds-input:focus, .em-ds-form-item--error .em-ds-input:focus-within {
|
|
3139
3134
|
outline: none;
|
|
3140
3135
|
border: calc(0.30769rem * 0.25) solid #1e79c2;
|
|
@@ -3210,7 +3205,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3210
3205
|
color: #697489; }
|
|
3211
3206
|
.em-ds-input-date-group .em-ds-input-date-group__divider--value {
|
|
3212
3207
|
font-style: unset;
|
|
3213
|
-
color: #
|
|
3208
|
+
color: #25292f; }
|
|
3214
3209
|
.em-ds-input-date-group__input {
|
|
3215
3210
|
text-align: center;
|
|
3216
3211
|
border: none;
|
|
@@ -3235,22 +3230,22 @@ fieldset.em-ds-form-item-content {
|
|
|
3235
3230
|
min-width: 2.58462rem;
|
|
3236
3231
|
max-width: 3.32308rem; }
|
|
3237
3232
|
.em-ds-input-date-group__input:focus {
|
|
3238
|
-
background: #
|
|
3233
|
+
background: #a3d6ff; }
|
|
3239
3234
|
.em-ds-input-date-group__input:active {
|
|
3240
3235
|
outline: none;
|
|
3241
|
-
border: calc(0.30769rem * 0.25) solid #
|
|
3236
|
+
border: calc(0.30769rem * 0.25) solid #006aa9;
|
|
3242
3237
|
border-radius: 2px; }
|
|
3243
3238
|
|
|
3244
3239
|
.em-ds-input-addon-wrapper {
|
|
3245
3240
|
border-radius: 2px;
|
|
3246
3241
|
display: flex;
|
|
3247
|
-
box-shadow: inset 0 0 0 1px #
|
|
3242
|
+
box-shadow: inset 0 0 0 1px #8c93a6;
|
|
3248
3243
|
height: 2.16rem;
|
|
3249
3244
|
width: 100%; }
|
|
3250
3245
|
.em-ds-input-addon-wrapper > * {
|
|
3251
3246
|
height: 100%; }
|
|
3252
3247
|
.em-ds-input-addon-wrapper .em-ds-input-addon-wrapper__addon--error {
|
|
3253
|
-
border: 1px solid #
|
|
3248
|
+
border: 1px solid #c64252;
|
|
3254
3249
|
border-radius: 2px;
|
|
3255
3250
|
border-top-left-radius: unset;
|
|
3256
3251
|
border-bottom-left-radius: unset;
|
|
@@ -3297,7 +3292,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3297
3292
|
top: 10%;
|
|
3298
3293
|
right: 2.16rem;
|
|
3299
3294
|
width: calc(0.30769rem * 0.25);
|
|
3300
|
-
background: #
|
|
3295
|
+
background: #cbcfd7;
|
|
3301
3296
|
pointer-events: none; }
|
|
3302
3297
|
.em-ds-input-addon-wrapper__addon.em-ds-input-addon-wrapper__addon--right > .em-ds-input-addon-wrapper__clearable:not(.em-ds-input__clearable):focus-within:before {
|
|
3303
3298
|
display: none; }
|
|
@@ -3381,30 +3376,30 @@ fieldset.em-ds-form-item-content {
|
|
|
3381
3376
|
width: calc(100% + 2px);
|
|
3382
3377
|
height: calc(100% + 2px);
|
|
3383
3378
|
pointer-events: none;
|
|
3384
|
-
border: solid 1px #
|
|
3379
|
+
border: solid 1px #a3d6ff; }
|
|
3385
3380
|
.em-ds-form-element-toggle:after, .em-ds-form-element-toggle:before {
|
|
3386
3381
|
border-radius: 1.23077rem; }
|
|
3387
3382
|
|
|
3388
3383
|
.em-ds-form-element-toggle-box {
|
|
3389
3384
|
border-radius: 0.61538rem;
|
|
3390
|
-
border: solid 1px #
|
|
3385
|
+
border: solid 1px #353c46;
|
|
3391
3386
|
height: 1.23077rem;
|
|
3392
3387
|
width: calc((1.84615rem * 0.9166) * 2);
|
|
3393
3388
|
background: #697489;
|
|
3394
|
-
color: #
|
|
3389
|
+
color: #ffffff;
|
|
3395
3390
|
transition: background-color 0.1s ease 0s, box-shadow 0.1s ease 0s, opacity 0.1s ease 0s;
|
|
3396
3391
|
display: flex;
|
|
3397
3392
|
justify-content: flex-end;
|
|
3398
3393
|
position: relative;
|
|
3399
3394
|
cursor: pointer; }
|
|
3400
3395
|
.em-ds-form-element-toggle-box:hover {
|
|
3401
|
-
background: #
|
|
3396
|
+
background: #464f5c; }
|
|
3402
3397
|
|
|
3403
3398
|
.em-ds-form-element-toggle__input {
|
|
3404
3399
|
border-radius: 50%;
|
|
3405
3400
|
height: calc(1.23077rem - (0.30769rem * 0.5));
|
|
3406
3401
|
width: calc(1.23077rem - (0.30769rem * 0.5));
|
|
3407
|
-
background: #
|
|
3402
|
+
background: #ffffff;
|
|
3408
3403
|
transition: background-color 0.1s ease 0s, box-shadow 0.1s ease 0s, opacity 0.1s ease 0s;
|
|
3409
3404
|
display: inline-block;
|
|
3410
3405
|
position: absolute;
|
|
@@ -3488,50 +3483,50 @@ fieldset.em-ds-form-item-content {
|
|
|
3488
3483
|
|
|
3489
3484
|
.em-ds-form-element-toggle--checked .em-ds-form-element-toggle-box {
|
|
3490
3485
|
justify-content: flex-start;
|
|
3491
|
-
border: solid 1px #
|
|
3486
|
+
border: solid 1px #006aa9;
|
|
3492
3487
|
background: #1e79c2;
|
|
3493
|
-
color: #
|
|
3488
|
+
color: #ffffff; }
|
|
3494
3489
|
|
|
3495
3490
|
.em-ds-form-element-toggle--checked .em-ds-form-element-toggle__input {
|
|
3496
3491
|
margin-left: calc((0.30769rem * 0.5) * (-0.5)); }
|
|
3497
3492
|
|
|
3498
3493
|
.em-ds-form-element-toggle--checked:hover .em-ds-form-element-toggle-box {
|
|
3499
3494
|
border: solid 1px #005181;
|
|
3500
|
-
background: #
|
|
3495
|
+
background: #006aa9; }
|
|
3501
3496
|
|
|
3502
3497
|
.em-ds-form-element-toggle--checked:focus:before {
|
|
3503
|
-
border: solid 2px #
|
|
3498
|
+
border: solid 2px #006aa9; }
|
|
3504
3499
|
|
|
3505
3500
|
.em-ds-form-element-toggle--checked:focus:after {
|
|
3506
|
-
border: solid 1px #
|
|
3501
|
+
border: solid 1px #a3d6ff; }
|
|
3507
3502
|
|
|
3508
3503
|
.em-ds-form-element-toggle--checked:active {
|
|
3509
|
-
background: #
|
|
3504
|
+
background: #006aa9; }
|
|
3510
3505
|
|
|
3511
3506
|
.em-ds-form-element-toggle--disabled .em-ds-form-element-toggle-box {
|
|
3512
3507
|
cursor: not-allowed;
|
|
3513
3508
|
border: solid 1px transparent;
|
|
3514
|
-
background: #
|
|
3509
|
+
background: #e0e3e8;
|
|
3515
3510
|
color: #5C6574; }
|
|
3516
3511
|
|
|
3517
3512
|
.em-ds-form-element-toggle--disabled .em-ds-form-element-toggle__input {
|
|
3518
|
-
background: #
|
|
3513
|
+
background: #ffffff; }
|
|
3519
3514
|
|
|
3520
3515
|
.em-ds-form-element-toggle--disabled:hover .em-ds-form-element-toggle-box {
|
|
3521
3516
|
border: solid 1px transparent;
|
|
3522
|
-
background: #
|
|
3517
|
+
background: #e0e3e8; }
|
|
3523
3518
|
|
|
3524
3519
|
.em-ds-form-element-toggle--readonly .em-ds-form-element-toggle-box {
|
|
3525
3520
|
cursor: not-allowed;
|
|
3526
|
-
border: solid 1px #
|
|
3521
|
+
border: solid 1px #353c46;
|
|
3527
3522
|
background: #697489;
|
|
3528
|
-
color: #
|
|
3523
|
+
color: #ffffff; }
|
|
3529
3524
|
|
|
3530
3525
|
.em-ds-form-element-toggle--readonly .em-ds-form-element-toggle__input {
|
|
3531
|
-
background: #
|
|
3526
|
+
background: #e0e3e8; }
|
|
3532
3527
|
|
|
3533
3528
|
.em-ds-form-element-toggle--readonly:hover .em-ds-form-element-toggle-box {
|
|
3534
|
-
border: solid 1px #
|
|
3529
|
+
border: solid 1px #353c46;
|
|
3535
3530
|
background: #697489; }
|
|
3536
3531
|
|
|
3537
3532
|
.em-ds-form-element-toggle--readonly:focus {
|
|
@@ -3574,7 +3569,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3574
3569
|
top: 10%;
|
|
3575
3570
|
left: 0;
|
|
3576
3571
|
width: calc(0.30769rem * 0.25);
|
|
3577
|
-
background: #
|
|
3572
|
+
background: #cbcfd7;
|
|
3578
3573
|
pointer-events: none;
|
|
3579
3574
|
border: none; }
|
|
3580
3575
|
.em-ds-labeled-outline:focus-within .em-ds-labeled-outline__outline svg .em-ds-labeled-outline__outline__path, .em-ds-labeled-outline:focus-within svg:not([fill]) .em-ds-labeled-outline__outline__path, .em-ds-labeled-outline:hover .em-ds-labeled-outline__outline svg .em-ds-labeled-outline__outline__path, .em-ds-labeled-outline:hover svg:not([fill]) .em-ds-labeled-outline__outline__path {
|
|
@@ -3629,7 +3624,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3629
3624
|
top: 10%;
|
|
3630
3625
|
left: 0;
|
|
3631
3626
|
width: calc(0.30769rem * 0.25);
|
|
3632
|
-
background: #
|
|
3627
|
+
background: #cbcfd7;
|
|
3633
3628
|
pointer-events: none;
|
|
3634
3629
|
border: none; }
|
|
3635
3630
|
.em-ds-labeled-outline .floating-label-input-controller .em-ds__control--is-focused {
|
|
@@ -3666,7 +3661,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3666
3661
|
top: 10%;
|
|
3667
3662
|
left: 0;
|
|
3668
3663
|
width: calc(0.30769rem * 0.25);
|
|
3669
|
-
background: #
|
|
3664
|
+
background: #cbcfd7;
|
|
3670
3665
|
pointer-events: none;
|
|
3671
3666
|
border: none; }
|
|
3672
3667
|
.em-ds-labeled-outline--has-value .em-ds-form-required-mark {
|
|
@@ -3680,7 +3675,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3680
3675
|
left: 0;
|
|
3681
3676
|
opacity: 0;
|
|
3682
3677
|
transition: opacity 100ms cubic-bezier(0.64, 0, 0.35, 1), border-color 100ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3683
|
-
background-color: #
|
|
3678
|
+
background-color: #ffffff; }
|
|
3684
3679
|
.em-ds-labeled-outline__outline svg, .em-ds-labeled-outline__outline svg:not([fill]) {
|
|
3685
3680
|
width: 100%;
|
|
3686
3681
|
height: 100%; }
|
|
@@ -3695,13 +3690,13 @@ fieldset.em-ds-form-item-content {
|
|
|
3695
3690
|
height: 100%;
|
|
3696
3691
|
transition: opacity 100ms cubic-bezier(0.64, 0, 0.35, 1), border-color 100ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3697
3692
|
opacity: 1;
|
|
3698
|
-
border: 0.07692rem solid #
|
|
3693
|
+
border: 0.07692rem solid #cbcfd7; }
|
|
3699
3694
|
|
|
3700
3695
|
.em-ds-labeled-outline__outline__path {
|
|
3701
3696
|
stroke-width: 1px;
|
|
3702
3697
|
transition: stroke 100ms cubic-bezier(0.64, 0, 0.35, 1), stroke-width 100ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3703
3698
|
fill: transparent;
|
|
3704
|
-
stroke: #
|
|
3699
|
+
stroke: #cbcfd7; }
|
|
3705
3700
|
|
|
3706
3701
|
.em-ds-labeled-outline__label {
|
|
3707
3702
|
position: absolute;
|
|
@@ -3715,10 +3710,10 @@ fieldset.em-ds-form-item-content {
|
|
|
3715
3710
|
cursor: not-allowed; }
|
|
3716
3711
|
|
|
3717
3712
|
.em-ds-labeled-outline--disabled .em-ds-labeled-outline__outline__path {
|
|
3718
|
-
stroke: #
|
|
3713
|
+
stroke: #e0e3e8; }
|
|
3719
3714
|
|
|
3720
3715
|
.em-ds-labeled-outline--disabled .em-ds-labeled-outline__idle {
|
|
3721
|
-
border-color: #
|
|
3716
|
+
border-color: #e0e3e8; }
|
|
3722
3717
|
|
|
3723
3718
|
.em-ds-labeled-outline--disabled .em-ds-labeled-outline__label {
|
|
3724
3719
|
color: #697489; }
|
|
@@ -3727,22 +3722,22 @@ fieldset.em-ds-form-item-content {
|
|
|
3727
3722
|
cursor: not-allowed; }
|
|
3728
3723
|
|
|
3729
3724
|
.em-ds-labeled-outline--readonly .em-ds-labeled-outline__outline__path {
|
|
3730
|
-
stroke: #
|
|
3725
|
+
stroke: #e0e3e8; }
|
|
3731
3726
|
|
|
3732
3727
|
.em-ds-labeled-outline--readonly .em-ds-labeled-outline__idle {
|
|
3733
|
-
border-color: #
|
|
3728
|
+
border-color: #e0e3e8; }
|
|
3734
3729
|
|
|
3735
3730
|
.em-ds-labeled-outline--readonly .em-ds-labeled-outline__label {
|
|
3736
3731
|
color: #697489; }
|
|
3737
3732
|
|
|
3738
3733
|
.em-ds-labeled-outline--error input:focus ~ .em-ds-labeled-outline__outline svg {
|
|
3739
|
-
filter: drop-shadow(0px 0px 2px #
|
|
3734
|
+
filter: drop-shadow(0px 0px 2px #c64252); }
|
|
3740
3735
|
|
|
3741
3736
|
.em-ds-labeled-outline--error .em-ds-labeled-outline__outline__path {
|
|
3742
|
-
stroke: #
|
|
3737
|
+
stroke: #c64252; }
|
|
3743
3738
|
|
|
3744
3739
|
.em-ds-labeled-outline--error .em-ds-labeled-outline__idle {
|
|
3745
|
-
border-color: #
|
|
3740
|
+
border-color: #c64252; }
|
|
3746
3741
|
|
|
3747
3742
|
.em-ds-input-mask {
|
|
3748
3743
|
position: relative;
|
|
@@ -3752,8 +3747,8 @@ fieldset.em-ds-form-item-content {
|
|
|
3752
3747
|
color: #697489;
|
|
3753
3748
|
box-sizing: border-box;
|
|
3754
3749
|
display: block;
|
|
3755
|
-
border: solid 1px #
|
|
3756
|
-
background: #
|
|
3750
|
+
border: solid 1px #cbcfd7;
|
|
3751
|
+
background: #ffffff;
|
|
3757
3752
|
transition: border 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3758
3753
|
border-radius: 2px; }
|
|
3759
3754
|
.em-ds-input-mask:focus-within {
|
|
@@ -3775,7 +3770,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3775
3770
|
border: none;
|
|
3776
3771
|
padding: 0 0.61538rem; }
|
|
3777
3772
|
.em-ds-input-mask__input:active {
|
|
3778
|
-
color: #
|
|
3773
|
+
color: #25292f; }
|
|
3779
3774
|
.em-ds-input-mask__input::-webkit-input-placeholder {
|
|
3780
3775
|
color: #697489;
|
|
3781
3776
|
font-style: italic; }
|
|
@@ -3808,24 +3803,24 @@ fieldset.em-ds-form-item-content {
|
|
|
3808
3803
|
right: 0; }
|
|
3809
3804
|
|
|
3810
3805
|
.em-ds-input-mask--disabled {
|
|
3811
|
-
border-color: #
|
|
3806
|
+
border-color: #e0e3e8; }
|
|
3812
3807
|
.em-ds-input-mask--disabled:focus-within, .em-ds-input-mask--disabled:hover {
|
|
3813
|
-
border-color: #
|
|
3808
|
+
border-color: #e0e3e8; }
|
|
3814
3809
|
.em-ds-input-mask--disabled:active {
|
|
3815
|
-
border-color: #
|
|
3810
|
+
border-color: #e0e3e8; }
|
|
3816
3811
|
.em-ds-input-mask--disabled .em-ds-input-mask__input {
|
|
3817
3812
|
color: #697489;
|
|
3818
3813
|
cursor: not-allowed; }
|
|
3819
3814
|
|
|
3820
3815
|
.em-ds-input-mask--error {
|
|
3821
|
-
border-color: #
|
|
3816
|
+
border-color: #c64252; }
|
|
3822
3817
|
.em-ds-input-mask--error:focus, .em-ds-input-mask--error:hover, .em-ds-input-mask--error:active {
|
|
3823
|
-
border-color: #
|
|
3818
|
+
border-color: #c64252; }
|
|
3824
3819
|
.em-ds-input-mask--error .em-ds-input-mask__input {
|
|
3825
3820
|
color: #697489; }
|
|
3826
3821
|
|
|
3827
3822
|
.em-ds-input-mask--readonly {
|
|
3828
|
-
border-color: #
|
|
3823
|
+
border-color: #e0e3e8;
|
|
3829
3824
|
cursor: not-allowed; }
|
|
3830
3825
|
.em-ds-input-mask--readonly .em-ds-input-mask__input {
|
|
3831
3826
|
color: #697489; }
|
|
@@ -3840,19 +3835,19 @@ fieldset.em-ds-form-item-content {
|
|
|
3840
3835
|
outline: none;
|
|
3841
3836
|
color: #697489;
|
|
3842
3837
|
display: flex;
|
|
3843
|
-
background: #
|
|
3838
|
+
background: #ffffff;
|
|
3844
3839
|
transition: border 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3845
3840
|
border-radius: 2px;
|
|
3846
|
-
box-shadow: inset 0 0 0 1px #
|
|
3841
|
+
box-shadow: inset 0 0 0 1px #8c93a6;
|
|
3847
3842
|
padding: 1px; }
|
|
3848
3843
|
.em-ds-form-element-textarea:focus-within {
|
|
3849
3844
|
padding: 0; }
|
|
3850
3845
|
.em-ds-form-element-textarea:hover {
|
|
3851
3846
|
outline: none;
|
|
3852
|
-
box-shadow: inset 0 0 0 1px #
|
|
3847
|
+
box-shadow: inset 0 0 0 1px #006aa9;
|
|
3853
3848
|
border-radius: 2px; }
|
|
3854
3849
|
.em-ds-form-element-textarea--error {
|
|
3855
|
-
box-shadow: inset 0 0 0 1px #
|
|
3850
|
+
box-shadow: inset 0 0 0 1px #c64252; }
|
|
3856
3851
|
|
|
3857
3852
|
.em-ds-form-element-textarea__textarea {
|
|
3858
3853
|
min-height: 2.16rem;
|
|
@@ -3868,7 +3863,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3868
3863
|
box-shadow: inset 0 0 0 1px #8cc2ed;
|
|
3869
3864
|
border-radius: 2px; }
|
|
3870
3865
|
.em-ds-form-element-textarea__textarea:active {
|
|
3871
|
-
color: #
|
|
3866
|
+
color: #25292f; }
|
|
3872
3867
|
.em-ds-form-element-textarea__textarea::-webkit-input-placeholder {
|
|
3873
3868
|
color: #697489;
|
|
3874
3869
|
font-style: italic; }
|
|
@@ -3883,24 +3878,24 @@ fieldset.em-ds-form-item-content {
|
|
|
3883
3878
|
font-style: italic; }
|
|
3884
3879
|
|
|
3885
3880
|
.em-ds-form-element-textarea--disabled {
|
|
3886
|
-
border-color: #
|
|
3881
|
+
border-color: #e0e3e8; }
|
|
3887
3882
|
.em-ds-form-element-textarea--disabled:focus-within, .em-ds-form-element-textarea--disabled:hover {
|
|
3888
|
-
border-color: #
|
|
3883
|
+
border-color: #e0e3e8; }
|
|
3889
3884
|
.em-ds-form-element-textarea--disabled:active {
|
|
3890
|
-
border-color: #
|
|
3885
|
+
border-color: #e0e3e8; }
|
|
3891
3886
|
.em-ds-form-element-textarea--disabled .em-ds-form-element-textarea__textarea {
|
|
3892
3887
|
color: #697489;
|
|
3893
3888
|
cursor: not-allowed; }
|
|
3894
3889
|
|
|
3895
3890
|
.em-ds-form-element-textarea--error {
|
|
3896
|
-
border-color: #
|
|
3891
|
+
border-color: #c64252; }
|
|
3897
3892
|
.em-ds-form-element-textarea--error:focus, .em-ds-form-element-textarea--error:hover, .em-ds-form-element-textarea--error:active {
|
|
3898
|
-
border-color: #
|
|
3893
|
+
border-color: #c64252; }
|
|
3899
3894
|
.em-ds-form-element-textarea--error .em-ds-form-element-textarea__textarea {
|
|
3900
3895
|
color: #697489; }
|
|
3901
3896
|
|
|
3902
3897
|
.em-ds-form-element-textarea--readonly {
|
|
3903
|
-
border-color: #
|
|
3898
|
+
border-color: #e0e3e8;
|
|
3904
3899
|
cursor: not-allowed; }
|
|
3905
3900
|
.em-ds-form-element-textarea--readonly .em-ds-form-element-textarea__textarea {
|
|
3906
3901
|
color: #697489; }
|
|
@@ -3911,7 +3906,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3911
3906
|
.em-ds-counter__textarea span {
|
|
3912
3907
|
margin: 0 0.09231rem; }
|
|
3913
3908
|
.em-ds-counter__textarea--limit-error {
|
|
3914
|
-
color: #
|
|
3909
|
+
color: #c64252; }
|
|
3915
3910
|
|
|
3916
3911
|
@media (max-width: 48rem) {
|
|
3917
3912
|
.em-ds-form-element-textarea__textarea {
|
|
@@ -3971,7 +3966,7 @@ fieldset.em-ds-form-item-content {
|
|
|
3971
3966
|
line-height: normal;
|
|
3972
3967
|
font-weight: 400;
|
|
3973
3968
|
transition: 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
3974
|
-
color: #
|
|
3969
|
+
color: #25292f;
|
|
3975
3970
|
line-height: 100%;
|
|
3976
3971
|
position: relative;
|
|
3977
3972
|
bottom: -1px; }
|
|
@@ -3983,8 +3978,8 @@ fieldset.em-ds-form-item-content {
|
|
|
3983
3978
|
min-width: 1.23077rem;
|
|
3984
3979
|
height: 1.23077rem;
|
|
3985
3980
|
margin-right: 0.61538rem;
|
|
3986
|
-
border: solid 1px #
|
|
3987
|
-
background: #
|
|
3981
|
+
border: solid 1px #8c93a6;
|
|
3982
|
+
background: #ffffff;
|
|
3988
3983
|
display: inline-flex;
|
|
3989
3984
|
justify-content: center;
|
|
3990
3985
|
align-items: center;
|
|
@@ -4006,69 +4001,69 @@ fieldset.em-ds-form-item-content {
|
|
|
4006
4001
|
width: fit-content;
|
|
4007
4002
|
padding-bottom: 1.23077rem; }
|
|
4008
4003
|
.em-ds-form-element-radio circle.unchecked {
|
|
4009
|
-
fill: #
|
|
4004
|
+
fill: #ffffff; }
|
|
4010
4005
|
.em-ds-form-element-radio .em-ds-form-element-radio__label:hover .em-ds-form-element-radio__input-button {
|
|
4011
4006
|
border-color: #1e79c2;
|
|
4012
|
-
background-color: #
|
|
4007
|
+
background-color: #ebf6ff; }
|
|
4013
4008
|
.em-ds-form-element-radio .em-ds-form-element-radio__label:hover circle.unchecked {
|
|
4014
|
-
fill: #
|
|
4009
|
+
fill: #ebf6ff; }
|
|
4015
4010
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4016
4011
|
box-shadow: none; }
|
|
4017
4012
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus:not(:active) {
|
|
4018
|
-
border: solid 2px #
|
|
4013
|
+
border: solid 2px #006aa9; }
|
|
4019
4014
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:active {
|
|
4020
|
-
background-color: #
|
|
4015
|
+
background-color: #ffffff; }
|
|
4021
4016
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:active circle.unchecked {
|
|
4022
|
-
fill: #
|
|
4017
|
+
fill: #ffffff; }
|
|
4023
4018
|
.em-ds-form-element-radio .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button circle.checked {
|
|
4024
4019
|
fill: #1e79c2; }
|
|
4025
4020
|
|
|
4026
4021
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__input-button {
|
|
4027
|
-
border-color: #
|
|
4022
|
+
border-color: #c64252; }
|
|
4028
4023
|
|
|
4029
4024
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label:hover .em-ds-form-element-radio__input-button:not(:focus) {
|
|
4030
|
-
border-color: #
|
|
4025
|
+
border-color: #c64252; }
|
|
4031
4026
|
|
|
4032
4027
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label:active .em-ds-form-element-radio__input-button {
|
|
4033
|
-
border-color: #
|
|
4028
|
+
border-color: #c64252; }
|
|
4034
4029
|
|
|
4035
4030
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label:active circle.unchecked {
|
|
4036
|
-
fill: #
|
|
4031
|
+
fill: #ebedf0; }
|
|
4037
4032
|
|
|
4038
4033
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button circle.checked {
|
|
4039
|
-
fill: #
|
|
4034
|
+
fill: #c64252; }
|
|
4040
4035
|
|
|
4041
4036
|
.em-ds-form-element-radio--disabled circle.checked {
|
|
4042
|
-
fill: #
|
|
4037
|
+
fill: #8c93a6; }
|
|
4043
4038
|
|
|
4044
4039
|
.em-ds-form-element-radio--disabled circle.unchecked {
|
|
4045
|
-
fill: #
|
|
4040
|
+
fill: #ebedf0; }
|
|
4046
4041
|
|
|
4047
4042
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label {
|
|
4048
4043
|
cursor: not-allowed; }
|
|
4049
4044
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label:hover .em-ds-form-element-radio__input-button {
|
|
4050
|
-
border-color: #
|
|
4051
|
-
background-color: #
|
|
4045
|
+
border-color: #8c93a6;
|
|
4046
|
+
background-color: #ebedf0; }
|
|
4052
4047
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label:hover circle.unchecked {
|
|
4053
|
-
fill: #
|
|
4048
|
+
fill: #ebedf0; }
|
|
4054
4049
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label:active .em-ds-form-element-radio__input-button {
|
|
4055
|
-
background-color: #
|
|
4050
|
+
background-color: #ebedf0; }
|
|
4056
4051
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label:active circle.unchecked {
|
|
4057
|
-
fill: #
|
|
4052
|
+
fill: #ebedf0; }
|
|
4058
4053
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button {
|
|
4059
|
-
background-color: #
|
|
4054
|
+
background-color: #ebedf0; }
|
|
4060
4055
|
|
|
4061
4056
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__label-text {
|
|
4062
4057
|
color: #697489; }
|
|
4063
4058
|
|
|
4064
4059
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__input-button {
|
|
4065
4060
|
pointer-events: none;
|
|
4066
|
-
background: #
|
|
4061
|
+
background: #ebedf0; }
|
|
4067
4062
|
.em-ds-form-element-radio--disabled .em-ds-form-element-radio__input-button:hover {
|
|
4068
|
-
border-color: #
|
|
4063
|
+
border-color: #8c93a6; }
|
|
4069
4064
|
|
|
4070
4065
|
.em-ds-form-element-radio--readonly .em-ds-form-element-radio__label:hover .em-ds-form-element-radio__input-button {
|
|
4071
|
-
border-color: #
|
|
4066
|
+
border-color: #8c93a6; }
|
|
4072
4067
|
|
|
4073
4068
|
.em-ds-form-element-radio--readonly .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button circle.checked {
|
|
4074
4069
|
fill: #697489; }
|
|
@@ -4082,17 +4077,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4082
4077
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4083
4078
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4084
4079
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4085
|
-
border: solid 2px #
|
|
4080
|
+
border: solid 2px #8c93a6; }
|
|
4086
4081
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4087
|
-
border: solid 3px #
|
|
4082
|
+
border: solid 3px #006aa9; }
|
|
4088
4083
|
.em-ds-form-element-radio__input-button {
|
|
4089
4084
|
width: calc(1.23077rem * 1.22);
|
|
4090
4085
|
min-width: calc(1.23077rem * 1.22);
|
|
4091
4086
|
height: calc(1.23077rem * 1.22);
|
|
4092
|
-
border: solid 2px #
|
|
4087
|
+
border: solid 2px #8c93a6;
|
|
4093
4088
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4094
4089
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4095
|
-
border: solid 2px #
|
|
4090
|
+
border: solid 2px #c64252; } }
|
|
4096
4091
|
|
|
4097
4092
|
@media only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
4098
4093
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4103,17 +4098,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4103
4098
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4104
4099
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4105
4100
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4106
|
-
border: solid 2px #
|
|
4101
|
+
border: solid 2px #8c93a6; }
|
|
4107
4102
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4108
|
-
border: solid 3px #
|
|
4103
|
+
border: solid 3px #006aa9; }
|
|
4109
4104
|
.em-ds-form-element-radio__input-button {
|
|
4110
4105
|
width: calc(1.23077rem * 1.22);
|
|
4111
4106
|
min-width: calc(1.23077rem * 1.22);
|
|
4112
4107
|
height: calc(1.23077rem * 1.22);
|
|
4113
|
-
border: solid 2px #
|
|
4108
|
+
border: solid 2px #8c93a6;
|
|
4114
4109
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4115
4110
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4116
|
-
border: solid 2px #
|
|
4111
|
+
border: solid 2px #c64252; } }
|
|
4117
4112
|
|
|
4118
4113
|
@media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
|
|
4119
4114
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4124,17 +4119,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4124
4119
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4125
4120
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4126
4121
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4127
|
-
border: solid 2px #
|
|
4122
|
+
border: solid 2px #8c93a6; }
|
|
4128
4123
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4129
|
-
border: solid 3px #
|
|
4124
|
+
border: solid 3px #006aa9; }
|
|
4130
4125
|
.em-ds-form-element-radio__input-button {
|
|
4131
4126
|
width: calc(1.23077rem * 1.22);
|
|
4132
4127
|
min-width: calc(1.23077rem * 1.22);
|
|
4133
4128
|
height: calc(1.23077rem * 1.22);
|
|
4134
|
-
border: solid 2px #
|
|
4129
|
+
border: solid 2px #8c93a6;
|
|
4135
4130
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4136
4131
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4137
|
-
border: solid 2px #
|
|
4132
|
+
border: solid 2px #c64252; } }
|
|
4138
4133
|
|
|
4139
4134
|
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) {
|
|
4140
4135
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4145,17 +4140,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4145
4140
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4146
4141
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4147
4142
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4148
|
-
border: solid 2px #
|
|
4143
|
+
border: solid 2px #8c93a6; }
|
|
4149
4144
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4150
|
-
border: solid 3px #
|
|
4145
|
+
border: solid 3px #006aa9; }
|
|
4151
4146
|
.em-ds-form-element-radio__input-button {
|
|
4152
4147
|
width: calc(1.23077rem * 1.22);
|
|
4153
4148
|
min-width: calc(1.23077rem * 1.22);
|
|
4154
4149
|
height: calc(1.23077rem * 1.22);
|
|
4155
|
-
border: solid 2px #
|
|
4150
|
+
border: solid 2px #8c93a6;
|
|
4156
4151
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4157
4152
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4158
|
-
border: solid 2px #
|
|
4153
|
+
border: solid 2px #c64252; } }
|
|
4159
4154
|
|
|
4160
4155
|
@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
4161
4156
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4166,17 +4161,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4166
4161
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4167
4162
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4168
4163
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4169
|
-
border: solid 2px #
|
|
4164
|
+
border: solid 2px #8c93a6; }
|
|
4170
4165
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4171
|
-
border: solid 3px #
|
|
4166
|
+
border: solid 3px #006aa9; }
|
|
4172
4167
|
.em-ds-form-element-radio__input-button {
|
|
4173
4168
|
width: calc(1.23077rem * 1.22);
|
|
4174
4169
|
min-width: calc(1.23077rem * 1.22);
|
|
4175
4170
|
height: calc(1.23077rem * 1.22);
|
|
4176
|
-
border: solid 2px #
|
|
4171
|
+
border: solid 2px #8c93a6;
|
|
4177
4172
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4178
4173
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4179
|
-
border: solid 2px #
|
|
4174
|
+
border: solid 2px #c64252; } }
|
|
4180
4175
|
|
|
4181
4176
|
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
4182
4177
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4187,17 +4182,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4187
4182
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4188
4183
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4189
4184
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4190
|
-
border: solid 2px #
|
|
4185
|
+
border: solid 2px #8c93a6; }
|
|
4191
4186
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4192
|
-
border: solid 3px #
|
|
4187
|
+
border: solid 3px #006aa9; }
|
|
4193
4188
|
.em-ds-form-element-radio__input-button {
|
|
4194
4189
|
width: calc(1.23077rem * 1.22);
|
|
4195
4190
|
min-width: calc(1.23077rem * 1.22);
|
|
4196
4191
|
height: calc(1.23077rem * 1.22);
|
|
4197
|
-
border: solid 2px #
|
|
4192
|
+
border: solid 2px #8c93a6;
|
|
4198
4193
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4199
4194
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4200
|
-
border: solid 2px #
|
|
4195
|
+
border: solid 2px #c64252; } }
|
|
4201
4196
|
|
|
4202
4197
|
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
4203
4198
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4208,17 +4203,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4208
4203
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4209
4204
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4210
4205
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4211
|
-
border: solid 2px #
|
|
4206
|
+
border: solid 2px #8c93a6; }
|
|
4212
4207
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4213
|
-
border: solid 3px #
|
|
4208
|
+
border: solid 3px #006aa9; }
|
|
4214
4209
|
.em-ds-form-element-radio__input-button {
|
|
4215
4210
|
width: calc(1.23077rem * 1.22);
|
|
4216
4211
|
min-width: calc(1.23077rem * 1.22);
|
|
4217
4212
|
height: calc(1.23077rem * 1.22);
|
|
4218
|
-
border: solid 2px #
|
|
4213
|
+
border: solid 2px #8c93a6;
|
|
4219
4214
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4220
4215
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4221
|
-
border: solid 2px #
|
|
4216
|
+
border: solid 2px #c64252; } }
|
|
4222
4217
|
|
|
4223
4218
|
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
4224
4219
|
.em-ds-form-element-radio__label-text {
|
|
@@ -4229,17 +4224,17 @@ fieldset.em-ds-form-item-content {
|
|
|
4229
4224
|
.em-ds-form-element-radio .em-ds-form-element-radio__label {
|
|
4230
4225
|
padding: calc(0.30769rem * 0.81) 0; }
|
|
4231
4226
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4232
|
-
border: solid 2px #
|
|
4227
|
+
border: solid 2px #8c93a6; }
|
|
4233
4228
|
.em-ds-form-element-radio .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button:focus {
|
|
4234
|
-
border: solid 3px #
|
|
4229
|
+
border: solid 3px #006aa9; }
|
|
4235
4230
|
.em-ds-form-element-radio__input-button {
|
|
4236
4231
|
width: calc(1.23077rem * 1.22);
|
|
4237
4232
|
min-width: calc(1.23077rem * 1.22);
|
|
4238
4233
|
height: calc(1.23077rem * 1.22);
|
|
4239
|
-
border: solid 2px #
|
|
4234
|
+
border: solid 2px #8c93a6;
|
|
4240
4235
|
margin-right: calc(1.23077rem * 0.81); }
|
|
4241
4236
|
.em-ds-form-element-radio--error .em-ds-form-element-radio__label .em-ds-form-element-radio__input-button {
|
|
4242
|
-
border: solid 2px #
|
|
4237
|
+
border: solid 2px #c64252; } }
|
|
4243
4238
|
|
|
4244
4239
|
.em-ds-radio-group-form-item-layout-wrapper {
|
|
4245
4240
|
display: inline-flex; }
|
|
@@ -4382,7 +4377,7 @@ fieldset.em-ds-form-item-content {
|
|
|
4382
4377
|
padding-top: 0.5rem; } }
|
|
4383
4378
|
|
|
4384
4379
|
.em-ds-form-required-mark {
|
|
4385
|
-
color: #
|
|
4380
|
+
color: #c64252;
|
|
4386
4381
|
font-size: 0.75rem;
|
|
4387
4382
|
margin-left: 0.30769rem;
|
|
4388
4383
|
position: relative;
|
|
@@ -4407,7 +4402,7 @@ legend.em-ds-label--group .em-ds-form-required-mark {
|
|
|
4407
4402
|
line-height: normal;
|
|
4408
4403
|
font-weight: 400; }
|
|
4409
4404
|
.em-ds-determinate-progress-indicator--disabled {
|
|
4410
|
-
color: #
|
|
4405
|
+
color: #8c93a6; }
|
|
4411
4406
|
.em-ds-determinate-progress-indicator .em-ds-truncated-tooltip-text {
|
|
4412
4407
|
width: initial; }
|
|
4413
4408
|
.em-ds-determinate-progress-indicator__title {
|
|
@@ -4422,7 +4417,7 @@ legend.em-ds-label--group .em-ds-form-required-mark {
|
|
|
4422
4417
|
grid-area: progressbar;
|
|
4423
4418
|
height: 0.15385rem;
|
|
4424
4419
|
position: relative;
|
|
4425
|
-
background: #
|
|
4420
|
+
background: #e0e3e8;
|
|
4426
4421
|
border-radius: 0.07692rem; }
|
|
4427
4422
|
.em-ds-determinate-progress-indicator .em-ds-progress-bar__progress {
|
|
4428
4423
|
transition: width 100ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
@@ -4432,28 +4427,28 @@ legend.em-ds-label--group .em-ds-form-required-mark {
|
|
|
4432
4427
|
margin-left: 0.15385rem; }
|
|
4433
4428
|
|
|
4434
4429
|
.em-ds-determinate-progress-indicator--disabled .em-ds-determinate-progress-indicator__title {
|
|
4435
|
-
color: #
|
|
4430
|
+
color: #8c93a6; }
|
|
4436
4431
|
|
|
4437
4432
|
.em-ds-determinate-progress-indicator--disabled .em-ds-determinate-progress-indicator__counter {
|
|
4438
|
-
color: #
|
|
4433
|
+
color: #cbcfd7; }
|
|
4439
4434
|
|
|
4440
4435
|
.em-ds-determinate-progress-indicator--disabled .em-ds-progress-bar__progress {
|
|
4441
|
-
background: #
|
|
4436
|
+
background: #cbcfd7; }
|
|
4442
4437
|
|
|
4443
4438
|
.em-ds-progress-bar__progress--default {
|
|
4444
4439
|
background-color: #697489; }
|
|
4445
4440
|
|
|
4446
4441
|
.em-ds-progress-bar__progress--success {
|
|
4447
|
-
background-color: #
|
|
4442
|
+
background-color: #207e56; }
|
|
4448
4443
|
|
|
4449
4444
|
.em-ds-progress-bar__progress--warning {
|
|
4450
|
-
background-color: #
|
|
4445
|
+
background-color: #d17a00; }
|
|
4451
4446
|
|
|
4452
4447
|
.em-ds-progress-bar__progress--info {
|
|
4453
|
-
background-color: #
|
|
4448
|
+
background-color: #1394e5; }
|
|
4454
4449
|
|
|
4455
4450
|
.em-ds-progress-bar__progress--error {
|
|
4456
|
-
background-color: #
|
|
4451
|
+
background-color: #c64252; }
|
|
4457
4452
|
|
|
4458
4453
|
.em-ds-page-header-main-section {
|
|
4459
4454
|
display: flex;
|
|
@@ -4533,7 +4528,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4533
4528
|
align-items: flex-end;
|
|
4534
4529
|
justify-content: flex-end; }
|
|
4535
4530
|
.em-ds-page-header--with-bottom-separator {
|
|
4536
|
-
border-bottom: 0.11538rem solid #
|
|
4531
|
+
border-bottom: 0.11538rem solid #8c93a6; }
|
|
4537
4532
|
.em-ds-page-header .em-ds-page-header-breadcrumb a:first-child {
|
|
4538
4533
|
padding-left: 1px; }
|
|
4539
4534
|
|
|
@@ -4573,14 +4568,14 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4573
4568
|
display: block;
|
|
4574
4569
|
content: '';
|
|
4575
4570
|
height: 1.84615rem;
|
|
4576
|
-
background: #
|
|
4571
|
+
background: #464f5c;
|
|
4577
4572
|
width: 1px;
|
|
4578
4573
|
margin-right: 0.61538rem; }
|
|
4579
4574
|
.em-ds-page-header-v2-summary .ph-summary-value {
|
|
4580
|
-
color: #
|
|
4575
|
+
color: #353c46;
|
|
4581
4576
|
padding-right: 0.61538rem; }
|
|
4582
4577
|
.em-ds-page-header-v2-summary .ph-summary-label {
|
|
4583
|
-
color: #
|
|
4578
|
+
color: #464f5c; }
|
|
4584
4579
|
.em-ds-page-header-v2-summary .ph-summary-space {
|
|
4585
4580
|
width: 3.69231rem; }
|
|
4586
4581
|
|
|
@@ -4632,7 +4627,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4632
4627
|
|
|
4633
4628
|
.em-ds-toolbar {
|
|
4634
4629
|
display: inline-block;
|
|
4635
|
-
background: #
|
|
4630
|
+
background: #ffffff;
|
|
4636
4631
|
border-radius: 2px;
|
|
4637
4632
|
display: flex;
|
|
4638
4633
|
justify-content: center;
|
|
@@ -4669,9 +4664,9 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4669
4664
|
height: 100%; }
|
|
4670
4665
|
|
|
4671
4666
|
.em-ds-time-picker--isMenuOpened .em-ds-input-addon-group__addon {
|
|
4672
|
-
border-left: solid 1px #
|
|
4667
|
+
border-left: solid 1px #006aa9; }
|
|
4673
4668
|
.em-ds-time-picker--isMenuOpened .em-ds-input-addon-group__addon .em-ds-button {
|
|
4674
|
-
border: solid 1px #
|
|
4669
|
+
border: solid 1px #006aa9; }
|
|
4675
4670
|
|
|
4676
4671
|
.em-ds-time-picker .em-ds-input-addon-wrapper {
|
|
4677
4672
|
min-width: 9.84615rem; }
|
|
@@ -4679,7 +4674,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4679
4674
|
width: 0; }
|
|
4680
4675
|
|
|
4681
4676
|
.em-ds-time-picker-menu {
|
|
4682
|
-
background-color: #
|
|
4677
|
+
background-color: #ffffff;
|
|
4683
4678
|
position: relative;
|
|
4684
4679
|
flex-direction: column;
|
|
4685
4680
|
display: flex;
|
|
@@ -4688,8 +4683,8 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4688
4683
|
-o-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19);
|
|
4689
4684
|
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19); }
|
|
4690
4685
|
.em-ds-time-picker-menu .em-ds-time-picker-menu__header {
|
|
4691
|
-
background-color: #
|
|
4692
|
-
color: #
|
|
4686
|
+
background-color: #f6f7f9;
|
|
4687
|
+
color: #464f5c;
|
|
4693
4688
|
font-weight: bold;
|
|
4694
4689
|
text-align: center;
|
|
4695
4690
|
padding: 1.23077rem 0;
|
|
@@ -4706,16 +4701,16 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4706
4701
|
border-right: unset; }
|
|
4707
4702
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__header {
|
|
4708
4703
|
height: 100%;
|
|
4709
|
-
background-color: #
|
|
4704
|
+
background-color: #f6f7f9;
|
|
4710
4705
|
text-align: center;
|
|
4711
|
-
color: #
|
|
4706
|
+
color: #25292f;
|
|
4712
4707
|
padding: 0.55385rem 0;
|
|
4713
4708
|
font-size: 0.923rem; }
|
|
4714
4709
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel {
|
|
4715
4710
|
outline: none;
|
|
4716
4711
|
position: relative;
|
|
4717
|
-
background: #
|
|
4718
|
-
border-right: 0.07692rem solid #
|
|
4712
|
+
background: #ffffff;
|
|
4713
|
+
border-right: 0.07692rem solid #b0b9c8; }
|
|
4719
4714
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel:focus {
|
|
4720
4715
|
-ms-box-shadow: 0 0 4px 0 rgba(19, 148, 229, 0.7);
|
|
4721
4716
|
-o-box-shadow: 0 0 4px 0 rgba(19, 148, 229, 0.7);
|
|
@@ -4736,7 +4731,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4736
4731
|
width: 2.46154rem;
|
|
4737
4732
|
height: 2.46154rem;
|
|
4738
4733
|
cursor: pointer;
|
|
4739
|
-
color: #
|
|
4734
|
+
color: #25292f;
|
|
4740
4735
|
vertical-align: center;
|
|
4741
4736
|
text-align: center;
|
|
4742
4737
|
border-radius: 50%;
|
|
@@ -4758,19 +4753,19 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4758
4753
|
color: #697489; }
|
|
4759
4754
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__item:hover :not(.em-ds-time-picker-panel__item--disabled) :not(.em-ds-time-picker-panel__item--selected) {
|
|
4760
4755
|
border: 1px solid #1e79c2;
|
|
4761
|
-
box-shadow: inset 0 0 0 1px #
|
|
4756
|
+
box-shadow: inset 0 0 0 1px #a3d6ff;
|
|
4762
4757
|
font-weight: lighter;
|
|
4763
4758
|
color: #1e79c2; }
|
|
4764
4759
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__item--disabled:hover {
|
|
4765
4760
|
color: #697489; }
|
|
4766
4761
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__item--selected {
|
|
4767
4762
|
font-weight: 600;
|
|
4768
|
-
color: #
|
|
4763
|
+
color: #ffffff; }
|
|
4769
4764
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__item--selected:hover {
|
|
4770
4765
|
border: solid 1px #1e79c2;
|
|
4771
4766
|
font-weight: bolder;
|
|
4772
|
-
box-shadow: inset 0 0 0 1px #
|
|
4773
|
-
color: #
|
|
4767
|
+
box-shadow: inset 0 0 0 1px #a3d6ff;
|
|
4768
|
+
color: #ffffff; }
|
|
4774
4769
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel__item--selected::after {
|
|
4775
4770
|
background: #fff; }
|
|
4776
4771
|
.em-ds-time-picker-panel__wrapper .em-ds-time-picker-panel--scrolling .em-ds-time-picker-panel__item-list {
|
|
@@ -4802,8 +4797,8 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4802
4797
|
fill: #1e79c2; }
|
|
4803
4798
|
|
|
4804
4799
|
.em-ds-time-picker.variant-disabled > .em-ds-input {
|
|
4805
|
-
background: #
|
|
4806
|
-
border-color: #
|
|
4800
|
+
background: #ebedf0;
|
|
4801
|
+
border-color: #8c93a6;
|
|
4807
4802
|
pointer-events: none; }
|
|
4808
4803
|
.em-ds-time-picker.variant-disabled > .em-ds-input input,
|
|
4809
4804
|
.em-ds-time-picker.variant-disabled > .em-ds-input select {
|
|
@@ -4839,29 +4834,29 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4839
4834
|
position: absolute;
|
|
4840
4835
|
top: 0;
|
|
4841
4836
|
right: 0;
|
|
4842
|
-
fill: #
|
|
4837
|
+
fill: #b0b9c8; }
|
|
4843
4838
|
.Toastify__toast-container .toast-close-button:focus {
|
|
4844
4839
|
position: absolute !important; }
|
|
4845
4840
|
.Toastify__toast-container:not(.with-progressbar) .Toastify__toast--default {
|
|
4846
|
-
border-color: #
|
|
4841
|
+
border-color: #8c93a6; }
|
|
4847
4842
|
.Toastify__toast-container:not(.with-progressbar) .Toastify__toast--info {
|
|
4848
|
-
border-color: #
|
|
4843
|
+
border-color: #52a6ec; }
|
|
4849
4844
|
.Toastify__toast-container:not(.with-progressbar) .Toastify__toast--success {
|
|
4850
|
-
border-color: #
|
|
4845
|
+
border-color: #207e56; }
|
|
4851
4846
|
.Toastify__toast-container:not(.with-progressbar) .Toastify__toast--warning {
|
|
4852
|
-
border-color: #
|
|
4847
|
+
border-color: #d17a00; }
|
|
4853
4848
|
.Toastify__toast-container:not(.with-progressbar) .Toastify__toast--error {
|
|
4854
|
-
border-color: #
|
|
4849
|
+
border-color: #c64252; }
|
|
4855
4850
|
.Toastify__toast-container.with-progressbar .Toastify__toast--default {
|
|
4856
|
-
border-color: #
|
|
4851
|
+
border-color: #b0b9c8; }
|
|
4857
4852
|
.Toastify__toast-container.with-progressbar .Toastify__toast--info {
|
|
4858
|
-
border-color: #
|
|
4853
|
+
border-color: #a3d6ff; }
|
|
4859
4854
|
.Toastify__toast-container.with-progressbar .Toastify__toast--success {
|
|
4860
|
-
border-color: #
|
|
4855
|
+
border-color: #d4f0e5; }
|
|
4861
4856
|
.Toastify__toast-container.with-progressbar .Toastify__toast--warning {
|
|
4862
|
-
border-color: #
|
|
4857
|
+
border-color: #fbb431; }
|
|
4863
4858
|
.Toastify__toast-container.with-progressbar .Toastify__toast--error {
|
|
4864
|
-
border-color: #
|
|
4859
|
+
border-color: #f7cdd2; }
|
|
4865
4860
|
|
|
4866
4861
|
@media only screen and (max-width: 480px) {
|
|
4867
4862
|
.Toastify__toast-container {
|
|
@@ -4888,19 +4883,19 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4888
4883
|
max-height: 39.38462rem;
|
|
4889
4884
|
cursor: pointer;
|
|
4890
4885
|
direction: ltr;
|
|
4891
|
-
background-color: #
|
|
4886
|
+
background-color: #ffffff;
|
|
4892
4887
|
border-left: 0.30769rem solid;
|
|
4893
4888
|
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2); }
|
|
4894
4889
|
.Toastify__toast--default .em-ds-toast-content__icon-message svg {
|
|
4895
|
-
fill: #
|
|
4890
|
+
fill: #8c93a6; }
|
|
4896
4891
|
.Toastify__toast--info .em-ds-toast-content__icon-message svg {
|
|
4897
|
-
fill: #
|
|
4892
|
+
fill: #52a6ec; }
|
|
4898
4893
|
.Toastify__toast--success .em-ds-toast-content__icon-message svg {
|
|
4899
|
-
fill: #
|
|
4894
|
+
fill: #207e56; }
|
|
4900
4895
|
.Toastify__toast--warning .em-ds-toast-content__icon-message svg {
|
|
4901
|
-
fill: #
|
|
4896
|
+
fill: #d17a00; }
|
|
4902
4897
|
.Toastify__toast--error .em-ds-toast-content__icon-message svg {
|
|
4903
|
-
fill: #
|
|
4898
|
+
fill: #c64252; }
|
|
4904
4899
|
.Toastify__toast--rtl {
|
|
4905
4900
|
direction: rtl; }
|
|
4906
4901
|
.Toastify__toast-body {
|
|
@@ -4920,20 +4915,20 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
4920
4915
|
z-index: 9999;
|
|
4921
4916
|
opacity: 0.7;
|
|
4922
4917
|
animation: Toastify__trackProgress linear 1;
|
|
4923
|
-
background-color: #
|
|
4918
|
+
background-color: #ebf6ff; }
|
|
4924
4919
|
.Toastify__progress-bar--rtl {
|
|
4925
4920
|
right: 0;
|
|
4926
4921
|
left: initial; }
|
|
4927
4922
|
.Toastify__progress-bar--default {
|
|
4928
|
-
background-color: #
|
|
4923
|
+
background-color: #8c93a6; }
|
|
4929
4924
|
.Toastify__progress-bar--info {
|
|
4930
|
-
background-color: #
|
|
4925
|
+
background-color: #52a6ec; }
|
|
4931
4926
|
.Toastify__progress-bar--success {
|
|
4932
|
-
background-color: #
|
|
4927
|
+
background-color: #207e56; }
|
|
4933
4928
|
.Toastify__progress-bar--warning {
|
|
4934
|
-
background-color: #
|
|
4929
|
+
background-color: #d17a00; }
|
|
4935
4930
|
.Toastify__progress-bar--error {
|
|
4936
|
-
background-color: #
|
|
4931
|
+
background-color: #c64252; }
|
|
4937
4932
|
|
|
4938
4933
|
@keyframes Toastify__trackProgress {
|
|
4939
4934
|
0% {
|
|
@@ -5181,7 +5176,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5181
5176
|
min-width: 4.32rem;
|
|
5182
5177
|
padding: 0.30769rem 1.23077rem;
|
|
5183
5178
|
position: relative;
|
|
5184
|
-
background-color: #
|
|
5179
|
+
background-color: #ffffff;
|
|
5185
5180
|
border-radius: 2px;
|
|
5186
5181
|
-ms-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
5187
5182
|
-o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
@@ -5199,9 +5194,9 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5199
5194
|
pointer-events: none;
|
|
5200
5195
|
background-color: transparent; }
|
|
5201
5196
|
.em-ds-tooltip__arrow .stroke {
|
|
5202
|
-
fill: #
|
|
5197
|
+
fill: #ffffff; }
|
|
5203
5198
|
.em-ds-tooltip__arrow .fill {
|
|
5204
|
-
fill: #
|
|
5199
|
+
fill: #ffffff; }
|
|
5205
5200
|
.em-ds-tooltip__arrow[data-placement^="top"] {
|
|
5206
5201
|
transform: rotateZ(180deg); }
|
|
5207
5202
|
.em-ds-tooltip__arrow[data-placement^="right"] {
|
|
@@ -5218,7 +5213,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5218
5213
|
white-space: normal;
|
|
5219
5214
|
word-wrap: break-word;
|
|
5220
5215
|
display: inline-block;
|
|
5221
|
-
color: #
|
|
5216
|
+
color: #464f5c;
|
|
5222
5217
|
max-width: 16.73846rem; }
|
|
5223
5218
|
|
|
5224
5219
|
.tooltip-container--toolbar {
|
|
@@ -5236,7 +5231,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5236
5231
|
text-align: left;
|
|
5237
5232
|
vertical-align: middle; }
|
|
5238
5233
|
.em-ds-tooltip__text {
|
|
5239
|
-
color: #
|
|
5234
|
+
color: #25292f; }
|
|
5240
5235
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5241
5236
|
height: 1.47692rem; } }
|
|
5242
5237
|
|
|
@@ -5252,7 +5247,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5252
5247
|
text-align: left;
|
|
5253
5248
|
vertical-align: middle; }
|
|
5254
5249
|
.em-ds-tooltip__text {
|
|
5255
|
-
color: #
|
|
5250
|
+
color: #25292f; }
|
|
5256
5251
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5257
5252
|
height: 1.47692rem; } }
|
|
5258
5253
|
|
|
@@ -5268,7 +5263,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5268
5263
|
text-align: left;
|
|
5269
5264
|
vertical-align: middle; }
|
|
5270
5265
|
.em-ds-tooltip__text {
|
|
5271
|
-
color: #
|
|
5266
|
+
color: #25292f; }
|
|
5272
5267
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5273
5268
|
height: 1.47692rem; } }
|
|
5274
5269
|
|
|
@@ -5284,7 +5279,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5284
5279
|
text-align: left;
|
|
5285
5280
|
vertical-align: middle; }
|
|
5286
5281
|
.em-ds-tooltip__text {
|
|
5287
|
-
color: #
|
|
5282
|
+
color: #25292f; }
|
|
5288
5283
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5289
5284
|
height: 1.47692rem; } }
|
|
5290
5285
|
|
|
@@ -5300,7 +5295,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5300
5295
|
text-align: left;
|
|
5301
5296
|
vertical-align: middle; }
|
|
5302
5297
|
.em-ds-tooltip__text {
|
|
5303
|
-
color: #
|
|
5298
|
+
color: #25292f; }
|
|
5304
5299
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5305
5300
|
height: 1.47692rem; } }
|
|
5306
5301
|
|
|
@@ -5316,7 +5311,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5316
5311
|
text-align: left;
|
|
5317
5312
|
vertical-align: middle; }
|
|
5318
5313
|
.em-ds-tooltip__text {
|
|
5319
|
-
color: #
|
|
5314
|
+
color: #25292f; }
|
|
5320
5315
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5321
5316
|
height: 1.47692rem; } }
|
|
5322
5317
|
|
|
@@ -5332,7 +5327,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5332
5327
|
text-align: left;
|
|
5333
5328
|
vertical-align: middle; }
|
|
5334
5329
|
.em-ds-tooltip__text {
|
|
5335
|
-
color: #
|
|
5330
|
+
color: #25292f; }
|
|
5336
5331
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5337
5332
|
height: 1.47692rem; } }
|
|
5338
5333
|
|
|
@@ -5348,7 +5343,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5348
5343
|
text-align: left;
|
|
5349
5344
|
vertical-align: middle; }
|
|
5350
5345
|
.em-ds-tooltip__text {
|
|
5351
|
-
color: #
|
|
5346
|
+
color: #25292f; }
|
|
5352
5347
|
.em-ds-tooltip__arrow[data-placement^="top"], .em-ds-tooltip__arrow[data-placement^="bottom"] {
|
|
5353
5348
|
height: 1.47692rem; } }
|
|
5354
5349
|
|
|
@@ -5358,11 +5353,11 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5358
5353
|
max-width: 19.2rem;
|
|
5359
5354
|
min-width: 4.32rem;
|
|
5360
5355
|
padding: 0.61538rem 1.23077rem;
|
|
5361
|
-
background-color: #
|
|
5356
|
+
background-color: #ffffff;
|
|
5362
5357
|
white-space: normal;
|
|
5363
5358
|
word-wrap: break-word;
|
|
5364
5359
|
display: inline-block;
|
|
5365
|
-
color: #
|
|
5360
|
+
color: #464f5c;
|
|
5366
5361
|
border-radius: 2px;
|
|
5367
5362
|
-ms-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
|
|
5368
5363
|
-o-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
|
|
@@ -5385,7 +5380,7 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5385
5380
|
fill: #697489;
|
|
5386
5381
|
fill-opacity: .4; }
|
|
5387
5382
|
.em-ds-popover__arrow .fill {
|
|
5388
|
-
fill: #
|
|
5383
|
+
fill: #ffffff; }
|
|
5389
5384
|
.em-ds-popover__arrow[data-placement^="top"] {
|
|
5390
5385
|
top: 100%; }
|
|
5391
5386
|
.em-ds-popover__arrow[data-placement^="bottom"] {
|
|
@@ -5486,22 +5481,22 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5486
5481
|
fill: #333333 !important; }
|
|
5487
5482
|
|
|
5488
5483
|
.em-ds-icon--color-neutral-800 {
|
|
5489
|
-
fill: #
|
|
5484
|
+
fill: #25292f !important; }
|
|
5490
5485
|
|
|
5491
5486
|
.em-ds-icon--color-neutral-800 svg {
|
|
5492
|
-
fill: #
|
|
5487
|
+
fill: #25292f !important; }
|
|
5493
5488
|
|
|
5494
5489
|
.em-ds-icon--color-neutral-700 {
|
|
5495
|
-
fill: #
|
|
5490
|
+
fill: #353c46 !important; }
|
|
5496
5491
|
|
|
5497
5492
|
.em-ds-icon--color-neutral-700 svg {
|
|
5498
|
-
fill: #
|
|
5493
|
+
fill: #353c46 !important; }
|
|
5499
5494
|
|
|
5500
5495
|
.em-ds-icon--color-neutral-600 {
|
|
5501
|
-
fill: #
|
|
5496
|
+
fill: #464f5c !important; }
|
|
5502
5497
|
|
|
5503
5498
|
.em-ds-icon--color-neutral-600 svg {
|
|
5504
|
-
fill: #
|
|
5499
|
+
fill: #464f5c !important; }
|
|
5505
5500
|
|
|
5506
5501
|
.em-ds-icon--color-neutral-500 {
|
|
5507
5502
|
fill: #697489 !important; }
|
|
@@ -5510,46 +5505,46 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5510
5505
|
fill: #697489 !important; }
|
|
5511
5506
|
|
|
5512
5507
|
.em-ds-icon--color-neutral-400 {
|
|
5513
|
-
fill: #
|
|
5508
|
+
fill: #8c93a6 !important; }
|
|
5514
5509
|
|
|
5515
5510
|
.em-ds-icon--color-neutral-400 svg {
|
|
5516
|
-
fill: #
|
|
5511
|
+
fill: #8c93a6 !important; }
|
|
5517
5512
|
|
|
5518
5513
|
.em-ds-icon--color-neutral-300 {
|
|
5519
|
-
fill: #
|
|
5514
|
+
fill: #b0b9c8 !important; }
|
|
5520
5515
|
|
|
5521
5516
|
.em-ds-icon--color-neutral-300 svg {
|
|
5522
|
-
fill: #
|
|
5517
|
+
fill: #b0b9c8 !important; }
|
|
5523
5518
|
|
|
5524
5519
|
.em-ds-icon--color-neutral-200 {
|
|
5525
|
-
fill: #
|
|
5520
|
+
fill: #cbcfd7 !important; }
|
|
5526
5521
|
|
|
5527
5522
|
.em-ds-icon--color-neutral-200 svg {
|
|
5528
|
-
fill: #
|
|
5523
|
+
fill: #cbcfd7 !important; }
|
|
5529
5524
|
|
|
5530
5525
|
.em-ds-icon--color-neutral-100 {
|
|
5531
|
-
fill: #
|
|
5526
|
+
fill: #e0e3e8 !important; }
|
|
5532
5527
|
|
|
5533
5528
|
.em-ds-icon--color-neutral-100 svg {
|
|
5534
|
-
fill: #
|
|
5529
|
+
fill: #e0e3e8 !important; }
|
|
5535
5530
|
|
|
5536
5531
|
.em-ds-icon--color-neutral-80 {
|
|
5537
|
-
fill: #
|
|
5532
|
+
fill: #ebedf0 !important; }
|
|
5538
5533
|
|
|
5539
5534
|
.em-ds-icon--color-neutral-80 svg {
|
|
5540
|
-
fill: #
|
|
5535
|
+
fill: #ebedf0 !important; }
|
|
5541
5536
|
|
|
5542
5537
|
.em-ds-icon--color-neutral-50 {
|
|
5543
|
-
fill: #
|
|
5538
|
+
fill: #f6f7f9 !important; }
|
|
5544
5539
|
|
|
5545
5540
|
.em-ds-icon--color-neutral-50 svg {
|
|
5546
|
-
fill: #
|
|
5541
|
+
fill: #f6f7f9 !important; }
|
|
5547
5542
|
|
|
5548
5543
|
.em-ds-icon--color-neutral-0 {
|
|
5549
|
-
fill: #
|
|
5544
|
+
fill: #ffffff !important; }
|
|
5550
5545
|
|
|
5551
5546
|
.em-ds-icon--color-neutral-0 svg {
|
|
5552
|
-
fill: #
|
|
5547
|
+
fill: #ffffff !important; }
|
|
5553
5548
|
|
|
5554
5549
|
.em-ds-icon--color-brand-primary-900 {
|
|
5555
5550
|
fill: !important; }
|
|
@@ -5564,10 +5559,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5564
5559
|
fill: #005181 !important; }
|
|
5565
5560
|
|
|
5566
5561
|
.em-ds-icon--color-brand-primary-700 {
|
|
5567
|
-
fill: #
|
|
5562
|
+
fill: #006aa9 !important; }
|
|
5568
5563
|
|
|
5569
5564
|
.em-ds-icon--color-brand-primary-700 svg {
|
|
5570
|
-
fill: #
|
|
5565
|
+
fill: #006aa9 !important; }
|
|
5571
5566
|
|
|
5572
5567
|
.em-ds-icon--color-brand-primary-600 {
|
|
5573
5568
|
fill: #1e79c2 !important; }
|
|
@@ -5576,34 +5571,34 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5576
5571
|
fill: #1e79c2 !important; }
|
|
5577
5572
|
|
|
5578
5573
|
.em-ds-icon--color-brand-primary-500 {
|
|
5579
|
-
fill: #
|
|
5574
|
+
fill: #1394e5 !important; }
|
|
5580
5575
|
|
|
5581
5576
|
.em-ds-icon--color-brand-primary-500 svg {
|
|
5582
|
-
fill: #
|
|
5577
|
+
fill: #1394e5 !important; }
|
|
5583
5578
|
|
|
5584
5579
|
.em-ds-icon--color-brand-primary-400 {
|
|
5585
|
-
fill: #
|
|
5580
|
+
fill: #52a6ec !important; }
|
|
5586
5581
|
|
|
5587
5582
|
.em-ds-icon--color-brand-primary-400 svg {
|
|
5588
|
-
fill: #
|
|
5583
|
+
fill: #52a6ec !important; }
|
|
5589
5584
|
|
|
5590
5585
|
.em-ds-icon--color-brand-primary-300 {
|
|
5591
|
-
fill: #
|
|
5586
|
+
fill: #a3d6ff !important; }
|
|
5592
5587
|
|
|
5593
5588
|
.em-ds-icon--color-brand-primary-300 svg {
|
|
5594
|
-
fill: #
|
|
5589
|
+
fill: #a3d6ff !important; }
|
|
5595
5590
|
|
|
5596
5591
|
.em-ds-icon--color-brand-primary-200 {
|
|
5597
|
-
fill: #
|
|
5592
|
+
fill: #ebf6ff !important; }
|
|
5598
5593
|
|
|
5599
5594
|
.em-ds-icon--color-brand-primary-200 svg {
|
|
5600
|
-
fill: #
|
|
5595
|
+
fill: #ebf6ff !important; }
|
|
5601
5596
|
|
|
5602
5597
|
.em-ds-icon--color-brand-primary-100 {
|
|
5603
|
-
fill: #
|
|
5598
|
+
fill: #f6fbff !important; }
|
|
5604
5599
|
|
|
5605
5600
|
.em-ds-icon--color-brand-primary-100 svg {
|
|
5606
|
-
fill: #
|
|
5601
|
+
fill: #f6fbff !important; }
|
|
5607
5602
|
|
|
5608
5603
|
.em-ds-icon--color-brand-secondary-900 {
|
|
5609
5604
|
fill: !important; }
|
|
@@ -5660,10 +5655,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5660
5655
|
fill: !important; }
|
|
5661
5656
|
|
|
5662
5657
|
.em-ds-icon--color-success-900 {
|
|
5663
|
-
fill: #
|
|
5658
|
+
fill: #207e56 !important; }
|
|
5664
5659
|
|
|
5665
5660
|
.em-ds-icon--color-success-900 svg {
|
|
5666
|
-
fill: #
|
|
5661
|
+
fill: #207e56 !important; }
|
|
5667
5662
|
|
|
5668
5663
|
.em-ds-icon--color-success-800 {
|
|
5669
5664
|
fill: !important; }
|
|
@@ -5696,10 +5691,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5696
5691
|
fill: !important; }
|
|
5697
5692
|
|
|
5698
5693
|
.em-ds-icon--color-success-300 {
|
|
5699
|
-
fill: #
|
|
5694
|
+
fill: #d4f0e5 !important; }
|
|
5700
5695
|
|
|
5701
5696
|
.em-ds-icon--color-success-300 svg {
|
|
5702
|
-
fill: #
|
|
5697
|
+
fill: #d4f0e5 !important; }
|
|
5703
5698
|
|
|
5704
5699
|
.em-ds-icon--color-success-200 {
|
|
5705
5700
|
fill: !important; }
|
|
@@ -5714,10 +5709,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5714
5709
|
fill: !important; }
|
|
5715
5710
|
|
|
5716
5711
|
.em-ds-icon--color-warning-900 {
|
|
5717
|
-
fill: #
|
|
5712
|
+
fill: #d17a00 !important; }
|
|
5718
5713
|
|
|
5719
5714
|
.em-ds-icon--color-warning-900 svg {
|
|
5720
|
-
fill: #
|
|
5715
|
+
fill: #d17a00 !important; }
|
|
5721
5716
|
|
|
5722
5717
|
.em-ds-icon--color-warning-800 {
|
|
5723
5718
|
fill: !important; }
|
|
@@ -5726,28 +5721,28 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5726
5721
|
fill: !important; }
|
|
5727
5722
|
|
|
5728
5723
|
.em-ds-icon--color-warning-700 {
|
|
5729
|
-
fill: #
|
|
5724
|
+
fill: #ff9400 !important; }
|
|
5730
5725
|
|
|
5731
5726
|
.em-ds-icon--color-warning-700 svg {
|
|
5732
|
-
fill: #
|
|
5727
|
+
fill: #ff9400 !important; }
|
|
5733
5728
|
|
|
5734
5729
|
.em-ds-icon--color-warning-600 {
|
|
5735
|
-
fill: #
|
|
5730
|
+
fill: #fbb431 !important; }
|
|
5736
5731
|
|
|
5737
5732
|
.em-ds-icon--color-warning-600 svg {
|
|
5738
|
-
fill: #
|
|
5733
|
+
fill: #fbb431 !important; }
|
|
5739
5734
|
|
|
5740
5735
|
.em-ds-icon--color-warning-500 {
|
|
5741
|
-
fill: #
|
|
5736
|
+
fill: #fbb431 !important; }
|
|
5742
5737
|
|
|
5743
5738
|
.em-ds-icon--color-warning-500 svg {
|
|
5744
|
-
fill: #
|
|
5739
|
+
fill: #fbb431 !important; }
|
|
5745
5740
|
|
|
5746
5741
|
.em-ds-icon--color-warning-400 {
|
|
5747
|
-
fill: #
|
|
5742
|
+
fill: #fbde31 !important; }
|
|
5748
5743
|
|
|
5749
5744
|
.em-ds-icon--color-warning-400 svg {
|
|
5750
|
-
fill: #
|
|
5745
|
+
fill: #fbde31 !important; }
|
|
5751
5746
|
|
|
5752
5747
|
.em-ds-icon--color-warning-300 {
|
|
5753
5748
|
fill: !important; }
|
|
@@ -5768,10 +5763,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5768
5763
|
fill: !important; }
|
|
5769
5764
|
|
|
5770
5765
|
.em-ds-icon--color-danger-900 {
|
|
5771
|
-
fill: #
|
|
5766
|
+
fill: #c64252 !important; }
|
|
5772
5767
|
|
|
5773
5768
|
.em-ds-icon--color-danger-900 svg {
|
|
5774
|
-
fill: #
|
|
5769
|
+
fill: #c64252 !important; }
|
|
5775
5770
|
|
|
5776
5771
|
.em-ds-icon--color-danger-800 {
|
|
5777
5772
|
fill: !important; }
|
|
@@ -5810,10 +5805,10 @@ _:-ms-fullscreen, :root .em-ds-page-header-toolbar--ie-flex-basis-auto {
|
|
|
5810
5805
|
fill: !important; }
|
|
5811
5806
|
|
|
5812
5807
|
.em-ds-icon--color-danger-200 {
|
|
5813
|
-
fill: #
|
|
5808
|
+
fill: #f7cdd2 !important; }
|
|
5814
5809
|
|
|
5815
5810
|
.em-ds-icon--color-danger-200 svg {
|
|
5816
|
-
fill: #
|
|
5811
|
+
fill: #f7cdd2 !important; }
|
|
5817
5812
|
|
|
5818
5813
|
.em-ds-icon--color-danger-100 {
|
|
5819
5814
|
fill: !important; }
|
|
@@ -5885,21 +5880,21 @@ div.em-ds-button {
|
|
|
5885
5880
|
width: 100%; }
|
|
5886
5881
|
|
|
5887
5882
|
.em-ds-button--primary {
|
|
5888
|
-
color: #
|
|
5883
|
+
color: #ffffff;
|
|
5889
5884
|
background-color: #1e79c2;
|
|
5890
5885
|
border: solid 0.07692rem #1e79c2; }
|
|
5891
5886
|
.em-ds-button--primary .em-ds-icon {
|
|
5892
|
-
fill: #
|
|
5887
|
+
fill: #ffffff; }
|
|
5893
5888
|
.em-ds-button--primary:hover:not([disabled]), .em-ds-button--primary.em-ds-button--variant-hover {
|
|
5894
|
-
background-color: #
|
|
5895
|
-
border: solid 0.07692rem #
|
|
5889
|
+
background-color: #006aa9;
|
|
5890
|
+
border: solid 0.07692rem #006aa9; }
|
|
5896
5891
|
.em-ds-button--primary:active, .em-ds-button--primary.em-ds-button--variant-active {
|
|
5897
|
-
background-color: #
|
|
5898
|
-
border: solid 0.07692rem #
|
|
5892
|
+
background-color: #006aa9;
|
|
5893
|
+
border: solid 0.07692rem #006aa9; }
|
|
5899
5894
|
.em-ds-button--primary:disabled, .em-ds-button--primary.em-ds-button--variant-disabled {
|
|
5900
5895
|
color: #5c6574;
|
|
5901
|
-
background-color: #
|
|
5902
|
-
border-color: #
|
|
5896
|
+
background-color: #e0e3e8;
|
|
5897
|
+
border-color: #e0e3e8;
|
|
5903
5898
|
cursor: not-allowed; }
|
|
5904
5899
|
.em-ds-button--primary:disabled .em-ds-icon, .em-ds-button--primary.em-ds-button--variant-disabled .em-ds-icon {
|
|
5905
5900
|
fill: #5c6574; }
|
|
@@ -5910,7 +5905,7 @@ div.em-ds-button {
|
|
|
5910
5905
|
left: 1px;
|
|
5911
5906
|
width: calc(100% - 2px);
|
|
5912
5907
|
height: calc(100% - 2px);
|
|
5913
|
-
border: solid 0.15385rem #
|
|
5908
|
+
border: solid 0.15385rem #ffffff; }
|
|
5914
5909
|
.em-ds-button--primary.em-ds-button--s:focus::after, .em-ds-button--primary.em-ds-button--s.em-ds-button--variant-focus::after {
|
|
5915
5910
|
position: absolute;
|
|
5916
5911
|
content: '';
|
|
@@ -5918,7 +5913,7 @@ div.em-ds-button {
|
|
|
5918
5913
|
left: 0;
|
|
5919
5914
|
width: 100%;
|
|
5920
5915
|
height: 100%;
|
|
5921
|
-
border: solid 0.07692rem #
|
|
5916
|
+
border: solid 0.07692rem #ffffff; }
|
|
5922
5917
|
|
|
5923
5918
|
.em-ds-button--text {
|
|
5924
5919
|
color: #1e79c2;
|
|
@@ -5928,19 +5923,19 @@ div.em-ds-button {
|
|
|
5928
5923
|
border: none;
|
|
5929
5924
|
font-weight: 600; }
|
|
5930
5925
|
.em-ds-input-addon-group__addon .em-ds-button--text {
|
|
5931
|
-
border: solid 0.07692rem #
|
|
5926
|
+
border: solid 0.07692rem #8c93a6; }
|
|
5932
5927
|
.em-ds-button--text .em-ds-icon {
|
|
5933
5928
|
fill: #1e79c2; }
|
|
5934
5929
|
.em-ds-button--text:hover:not([disabled]), .em-ds-button--text.em-ds-button--variant-hover {
|
|
5935
|
-
color: #
|
|
5936
|
-
background-color: #
|
|
5930
|
+
color: #006aa9;
|
|
5931
|
+
background-color: #ebf6ff; }
|
|
5937
5932
|
.em-ds-button--text:active, .em-ds-button--text.em-ds-button--variant-active {
|
|
5938
|
-
color: #
|
|
5933
|
+
color: #006aa9; }
|
|
5939
5934
|
.em-ds-button--text:active .em-ds-icon, .em-ds-button--text.em-ds-button--variant-active .em-ds-icon {
|
|
5940
|
-
fill: #
|
|
5935
|
+
fill: #006aa9; }
|
|
5941
5936
|
.em-ds-button--text:disabled, .em-ds-button--text.em-ds-button--variant-disabled {
|
|
5942
5937
|
color: #697489;
|
|
5943
|
-
background: #
|
|
5938
|
+
background: #ffffff;
|
|
5944
5939
|
cursor: not-allowed; }
|
|
5945
5940
|
.em-ds-button--text:disabled .em-ds-icon, .em-ds-button--text.em-ds-button--variant-disabled .em-ds-icon {
|
|
5946
5941
|
fill: #697489; }
|
|
@@ -5952,29 +5947,29 @@ div.em-ds-button {
|
|
|
5952
5947
|
width: 100%;
|
|
5953
5948
|
height: 100%;
|
|
5954
5949
|
border-radius: 2px;
|
|
5955
|
-
border: solid 0.15385rem #
|
|
5950
|
+
border: solid 0.15385rem #006aa9; }
|
|
5956
5951
|
|
|
5957
5952
|
.em-ds-button--secondary {
|
|
5958
5953
|
color: #1e79c2;
|
|
5959
|
-
background-color: #
|
|
5960
|
-
border: solid 0.07692rem #
|
|
5954
|
+
background-color: #ffffff;
|
|
5955
|
+
border: solid 0.07692rem #8c93a6;
|
|
5961
5956
|
border-radius: 2px; }
|
|
5962
5957
|
.em-ds-input-addon-group__addon .em-ds-button--secondary {
|
|
5963
|
-
border: solid 0.07692rem #
|
|
5958
|
+
border: solid 0.07692rem #8c93a6; }
|
|
5964
5959
|
.em-ds-button--secondary .em-ds-icon {
|
|
5965
5960
|
fill: #1e79c2; }
|
|
5966
5961
|
.em-ds-button--secondary:hover:not([disabled]), .em-ds-button--secondary.em-ds-button--variant-hover {
|
|
5967
|
-
border: solid 0.07692rem #
|
|
5962
|
+
border: solid 0.07692rem #006aa9; }
|
|
5968
5963
|
.em-ds-button--secondary:hover:not([disabled]) .em-ds-icon, .em-ds-button--secondary.em-ds-button--variant-hover .em-ds-icon {
|
|
5969
|
-
fill: #
|
|
5964
|
+
fill: #006aa9; }
|
|
5970
5965
|
.em-ds-button--secondary:active, .em-ds-button--secondary.em-ds-button--variant-active {
|
|
5971
|
-
color: #
|
|
5972
|
-
border: solid 0.07692rem #
|
|
5966
|
+
color: #006aa9;
|
|
5967
|
+
border: solid 0.07692rem #006aa9; }
|
|
5973
5968
|
.em-ds-button--secondary:active .em-ds-icon, .em-ds-button--secondary.em-ds-button--variant-active .em-ds-icon {
|
|
5974
|
-
fill: #
|
|
5969
|
+
fill: #006aa9; }
|
|
5975
5970
|
.em-ds-button--secondary:disabled, .em-ds-button--secondary.em-ds-button--variant-disabled {
|
|
5976
5971
|
color: #697489;
|
|
5977
|
-
background-color: #
|
|
5972
|
+
background-color: #ffffff;
|
|
5978
5973
|
cursor: not-allowed; }
|
|
5979
5974
|
.em-ds-button--secondary:disabled .em-ds-icon, .em-ds-button--secondary.em-ds-button--variant-disabled .em-ds-icon {
|
|
5980
5975
|
fill: #697489; }
|
|
@@ -5986,7 +5981,7 @@ div.em-ds-button {
|
|
|
5986
5981
|
width: calc(100% + 2px);
|
|
5987
5982
|
height: calc(100% + 2px);
|
|
5988
5983
|
border-radius: 2px;
|
|
5989
|
-
border: solid 0.15385rem #
|
|
5984
|
+
border: solid 0.15385rem #006aa9; }
|
|
5990
5985
|
|
|
5991
5986
|
.em-ds-button--link {
|
|
5992
5987
|
line-height: 1.5;
|
|
@@ -6006,15 +6001,15 @@ div.em-ds-button {
|
|
|
6006
6001
|
-webkit-text-decoration-line: underline;
|
|
6007
6002
|
text-decoration-line: underline; }
|
|
6008
6003
|
.em-ds-button--link:active {
|
|
6009
|
-
color: #
|
|
6004
|
+
color: #006aa9; }
|
|
6010
6005
|
.em-ds-button--link:disabled {
|
|
6011
|
-
color: #
|
|
6006
|
+
color: #8c93a6;
|
|
6012
6007
|
cursor: not-allowed; }
|
|
6013
6008
|
.em-ds-button--link.em-ds-button--icon-only:focus span.label-wrapper, .em-ds-button--link.em-ds-button--icon-only.em-ds-button--variant-focus span.label-wrapper {
|
|
6014
6009
|
outline: none;
|
|
6015
6010
|
position: relative; }
|
|
6016
6011
|
.em-ds-button--link.em-ds-button--icon-only:focus span.label-wrapper:after, .em-ds-button--link.em-ds-button--icon-only.em-ds-button--variant-focus span.label-wrapper:after {
|
|
6017
|
-
content:
|
|
6012
|
+
content: '';
|
|
6018
6013
|
position: absolute;
|
|
6019
6014
|
top: 0;
|
|
6020
6015
|
left: 0;
|
|
@@ -6032,9 +6027,9 @@ div.em-ds-button {
|
|
|
6032
6027
|
height: calc(100% + 4px); }
|
|
6033
6028
|
|
|
6034
6029
|
.em-ds-button-success.em-ds-button--text {
|
|
6035
|
-
color: #
|
|
6030
|
+
color: #207e56; }
|
|
6036
6031
|
.em-ds-button-success.em-ds-button--text:focus, .em-ds-button-success.em-ds-button--text:focus:not([disabled]), .em-ds-button-success.em-ds-button--text.em-ds-button--variant-focus {
|
|
6037
|
-
color: #
|
|
6032
|
+
color: #207e56; }
|
|
6038
6033
|
.em-ds-button-success.em-ds-button--text:focus::after, .em-ds-button-success.em-ds-button--text:focus:not([disabled])::after, .em-ds-button-success.em-ds-button--text.em-ds-button--variant-focus::after {
|
|
6039
6034
|
position: absolute;
|
|
6040
6035
|
content: '';
|
|
@@ -6043,9 +6038,9 @@ div.em-ds-button {
|
|
|
6043
6038
|
width: 100%;
|
|
6044
6039
|
height: 100%;
|
|
6045
6040
|
border-radius: 2px;
|
|
6046
|
-
border: solid 0.15385rem #
|
|
6041
|
+
border: solid 0.15385rem #207e56; }
|
|
6047
6042
|
.em-ds-button-success.em-ds-button--text:hover, .em-ds-button-success.em-ds-button--text:hover:not([disabled]), .em-ds-button-success.em-ds-button--text.em-ds-button--variant-hover {
|
|
6048
|
-
color: #
|
|
6043
|
+
color: #207e56; }
|
|
6049
6044
|
.em-ds-button-success.em-ds-button--text:hover span.label-wrapper.no-icon:before, .em-ds-button-success.em-ds-button--text:hover:not([disabled]) span.label-wrapper.no-icon:before, .em-ds-button-success.em-ds-button--text.em-ds-button--variant-hover span.label-wrapper.no-icon:before {
|
|
6050
6045
|
background-color: transparent;
|
|
6051
6046
|
border-radius: 2px; }
|
|
@@ -6055,9 +6050,9 @@ div.em-ds-button {
|
|
|
6055
6050
|
fill: #16553a; }
|
|
6056
6051
|
|
|
6057
6052
|
.em-ds-button-danger.em-ds-button--text {
|
|
6058
|
-
color: #
|
|
6053
|
+
color: #c64252; }
|
|
6059
6054
|
.em-ds-button-danger.em-ds-button--text:focus, .em-ds-button-danger.em-ds-button--text:focus:not([disabled]), .em-ds-button-danger.em-ds-button--text.em-ds-button--variant-focus {
|
|
6060
|
-
color: #
|
|
6055
|
+
color: #c64252; }
|
|
6061
6056
|
.em-ds-button-danger.em-ds-button--text:focus::after, .em-ds-button-danger.em-ds-button--text:focus:not([disabled])::after, .em-ds-button-danger.em-ds-button--text.em-ds-button--variant-focus::after {
|
|
6062
6057
|
position: absolute;
|
|
6063
6058
|
content: '';
|
|
@@ -6066,9 +6061,9 @@ div.em-ds-button {
|
|
|
6066
6061
|
width: 100%;
|
|
6067
6062
|
height: 100%;
|
|
6068
6063
|
border-radius: 2px;
|
|
6069
|
-
border: solid 0.15385rem #
|
|
6064
|
+
border: solid 0.15385rem #c64252; }
|
|
6070
6065
|
.em-ds-button-danger.em-ds-button--text:hover, .em-ds-button-danger.em-ds-button--text:hover:not([disabled]), .em-ds-button-danger.em-ds-button--text.em-ds-button--variant-hover {
|
|
6071
|
-
color: #
|
|
6066
|
+
color: #c64252; }
|
|
6072
6067
|
.em-ds-button-danger.em-ds-button--text:hover span.label-wrapper.no-icon:before, .em-ds-button-danger.em-ds-button--text:hover:not([disabled]) span.label-wrapper.no-icon:before, .em-ds-button-danger.em-ds-button--text.em-ds-button--variant-hover span.label-wrapper.no-icon:before {
|
|
6073
6068
|
background-color: transparent;
|
|
6074
6069
|
border-radius: 2px; }
|
|
@@ -6078,9 +6073,9 @@ div.em-ds-button {
|
|
|
6078
6073
|
fill: #a4313f; }
|
|
6079
6074
|
|
|
6080
6075
|
.em-ds-button-warning.em-ds-button--text {
|
|
6081
|
-
color: #
|
|
6076
|
+
color: #d17a00; }
|
|
6082
6077
|
.em-ds-button-warning.em-ds-button--text:focus, .em-ds-button-warning.em-ds-button--text:focus:not([disabled]), .em-ds-button-warning.em-ds-button--text.em-ds-button--variant-focus {
|
|
6083
|
-
color: #
|
|
6078
|
+
color: #d17a00; }
|
|
6084
6079
|
.em-ds-button-warning.em-ds-button--text:focus::after, .em-ds-button-warning.em-ds-button--text:focus:not([disabled])::after, .em-ds-button-warning.em-ds-button--text.em-ds-button--variant-focus::after {
|
|
6085
6080
|
position: absolute;
|
|
6086
6081
|
content: '';
|
|
@@ -6089,9 +6084,9 @@ div.em-ds-button {
|
|
|
6089
6084
|
width: 100%;
|
|
6090
6085
|
height: 100%;
|
|
6091
6086
|
border-radius: 2px;
|
|
6092
|
-
border: solid 0.15385rem #
|
|
6087
|
+
border: solid 0.15385rem #d17a00; }
|
|
6093
6088
|
.em-ds-button-warning.em-ds-button--text:hover, .em-ds-button-warning.em-ds-button--text:hover:not([disabled]), .em-ds-button-warning.em-ds-button--text.em-ds-button--variant-hover {
|
|
6094
|
-
color: #
|
|
6089
|
+
color: #d17a00; }
|
|
6095
6090
|
.em-ds-button-warning.em-ds-button--text:hover span.label-wrapper.no-icon:before, .em-ds-button-warning.em-ds-button--text:hover:not([disabled]) span.label-wrapper.no-icon:before, .em-ds-button-warning.em-ds-button--text.em-ds-button--variant-hover span.label-wrapper.no-icon:before {
|
|
6096
6091
|
background-color: transparent;
|
|
6097
6092
|
border-radius: 2px; }
|
|
@@ -6307,18 +6302,18 @@ div.em-ds-button {
|
|
|
6307
6302
|
.em-ds-separator-wrapper.em-ds-separator-wrapper--vertical.em-ds-separator-wrapper--end {
|
|
6308
6303
|
justify-content: flex-end; }
|
|
6309
6304
|
.em-ds-separator-wrapper .em-ds-separator {
|
|
6310
|
-
border-top: 0.5px solid #
|
|
6305
|
+
border-top: 0.5px solid #25292f; }
|
|
6311
6306
|
.em-ds-separator-wrapper .em-ds-separator--vertical {
|
|
6312
6307
|
width: 1px;
|
|
6313
6308
|
border: inherit;
|
|
6314
|
-
border-left: 0.5px solid #
|
|
6309
|
+
border-left: 0.5px solid #25292f;
|
|
6315
6310
|
height: 100%; }
|
|
6316
6311
|
.em-ds-separator-wrapper .em-ds-separator--vertical.em-ds-separator--group-level, .em-ds-separator-wrapper .em-ds-separator--vertical.em-ds-separator--non-form {
|
|
6317
|
-
border-left: 1.2px solid #
|
|
6312
|
+
border-left: 1.2px solid #b0b9c8; }
|
|
6318
6313
|
.em-ds-separator-wrapper .em-ds-separator--vertical.em-ds-separator--dashed {
|
|
6319
6314
|
width: 2px;
|
|
6320
6315
|
border: none;
|
|
6321
|
-
background-image: linear-gradient(#
|
|
6316
|
+
background-image: linear-gradient(#b0b9c8 45%, rgba(255, 255, 255, 0) 0%);
|
|
6322
6317
|
background-position: right;
|
|
6323
6318
|
background-size: 1px 5px;
|
|
6324
6319
|
background-repeat: repeat-y; }
|
|
@@ -6326,12 +6321,12 @@ div.em-ds-button {
|
|
|
6326
6321
|
flex: 100%;
|
|
6327
6322
|
height: 1px; }
|
|
6328
6323
|
.em-ds-separator-wrapper .em-ds-separator--horizontal.em-ds-separator--group-level {
|
|
6329
|
-
border-color: #
|
|
6324
|
+
border-color: #464f5c; }
|
|
6330
6325
|
.em-ds-separator-wrapper .em-ds-separator--horizontal.em-ds-separator--non-form {
|
|
6331
|
-
border-color: #
|
|
6326
|
+
border-color: #b0b9c8; }
|
|
6332
6327
|
.em-ds-separator-wrapper .em-ds-separator--horizontal.em-ds-separator--dashed {
|
|
6333
6328
|
border: none;
|
|
6334
|
-
background-image: linear-gradient(to right, #
|
|
6329
|
+
background-image: linear-gradient(to right, #b0b9c8 45%, rgba(255, 255, 255, 0) 0%);
|
|
6335
6330
|
background-position: bottom;
|
|
6336
6331
|
background-size: 5px 1px;
|
|
6337
6332
|
background-repeat: repeat-x; }
|
|
@@ -6399,7 +6394,7 @@ div.em-ds-button {
|
|
|
6399
6394
|
text-align: center; }
|
|
6400
6395
|
.em-ds-labelValue__wrapper .em-ds-labelValue__label-value-wrapper .em-ds-labelValue__label--neutral700,
|
|
6401
6396
|
.em-ds-labelValue__wrapper .em-ds-labelValue__label-value-wrapper .em-ds-labelValue__value--neutral700 {
|
|
6402
|
-
color: #
|
|
6397
|
+
color: #353c46; }
|
|
6403
6398
|
.em-ds-labelValue__wrapper .em-ds-labelValue__label-value-wrapper .em-ds-labelValue__value--s {
|
|
6404
6399
|
font-size: 1rem; }
|
|
6405
6400
|
.em-ds-labelValue__wrapper .em-ds-labelValue__label-value-wrapper .em-ds-labelValue__value--m {
|
|
@@ -6420,7 +6415,7 @@ div.em-ds-button {
|
|
|
6420
6415
|
|
|
6421
6416
|
.em-ds-group-box__content {
|
|
6422
6417
|
padding: 1.84615rem 0;
|
|
6423
|
-
border: 1px solid #
|
|
6418
|
+
border: 1px solid #cbcfd7; }
|
|
6424
6419
|
.em-ds-group-box__content--no-border-top {
|
|
6425
6420
|
border-top: none; }
|
|
6426
6421
|
.em-ds-group-box__content.em-ds-group-box__content--group-box {
|
|
@@ -6461,11 +6456,11 @@ div.em-ds-button {
|
|
|
6461
6456
|
width: 100%;
|
|
6462
6457
|
height: 2.76972rem;
|
|
6463
6458
|
padding: 0 0;
|
|
6464
|
-
color: #
|
|
6459
|
+
color: #25292f;
|
|
6465
6460
|
display: flex;
|
|
6466
6461
|
flex-direction: row;
|
|
6467
6462
|
align-items: center;
|
|
6468
|
-
border-bottom: 1px solid #
|
|
6463
|
+
border-bottom: 1px solid #cbcfd7; }
|
|
6469
6464
|
|
|
6470
6465
|
.em-ds-group-box__label--no-border {
|
|
6471
6466
|
border: none; }
|
|
@@ -6475,7 +6470,7 @@ div.em-ds-button {
|
|
|
6475
6470
|
font-size: 1.0769rem;
|
|
6476
6471
|
padding: 12px 0; }
|
|
6477
6472
|
.em-ds-group-box__label.em-ds-group-box__label--group-box.em-ds-group-box__label--border-bottom {
|
|
6478
|
-
border-bottom: 1px solid #
|
|
6473
|
+
border-bottom: 1px solid #cbcfd7; }
|
|
6479
6474
|
|
|
6480
6475
|
.em-ds-group-box__content--category-box .em-ds-group-box__wrapper--group-box:first-child {
|
|
6481
6476
|
border-left: none; }
|
|
@@ -6493,13 +6488,13 @@ div.em-ds-button {
|
|
|
6493
6488
|
border-right: none; }
|
|
6494
6489
|
|
|
6495
6490
|
.em-ds-group-box__wrapper--no-border .em-ds-group-box__content--category-box .em-ds-group-box__wrapper:first-child .em-ds-group-box__content {
|
|
6496
|
-
border-left: 1px solid #
|
|
6491
|
+
border-left: 1px solid #cbcfd7; }
|
|
6497
6492
|
|
|
6498
6493
|
.em-ds-group-box__wrapper--no-border .em-ds-group-box__content--category-box .em-ds-group-box__wrapper:first-child .em-ds-group-box__content--no-border {
|
|
6499
6494
|
border-left: none; }
|
|
6500
6495
|
|
|
6501
6496
|
.em-ds-group-box__wrapper--no-border .em-ds-group-box__content--category-box .em-ds-group-box__wrapper:last-child .em-ds-group-box__content {
|
|
6502
|
-
border-right: 1px solid #
|
|
6497
|
+
border-right: 1px solid #cbcfd7; }
|
|
6503
6498
|
|
|
6504
6499
|
.em-ds-group-box__wrapper--no-border .em-ds-group-box__content--category-box .em-ds-group-box__wrapper:last-child .em-ds-group-box__content--no-border {
|
|
6505
6500
|
border-right: none; }
|
|
@@ -6529,465 +6524,20 @@ div.em-ds-button {
|
|
|
6529
6524
|
.em-ds-text-wrapperRef.em-ds-text-wrapperRef--text-align-center {
|
|
6530
6525
|
text-align: center; }
|
|
6531
6526
|
|
|
6532
|
-
.em-ds-accordion-item__accordion-button {
|
|
6533
|
-
border: solid 1px transparent;
|
|
6534
|
-
width: 100%;
|
|
6535
|
-
height: 2.46154rem;
|
|
6536
|
-
justify-content: left;
|
|
6537
|
-
text-transform: initial; }
|
|
6538
|
-
.em-ds-accordion-item__accordion-button > span[role='presentation'] {
|
|
6539
|
-
padding: 0;
|
|
6540
|
-
width: 100%; }
|
|
6541
|
-
.em-ds-accordion-item__accordion-button.em-ds-button .label-wrapper {
|
|
6542
|
-
overflow: visible; }
|
|
6543
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6544
|
-
font-size: 1.2307rem;
|
|
6545
|
-
line-height: normal;
|
|
6546
|
-
font-weight: 400;
|
|
6547
|
-
cursor: pointer;
|
|
6548
|
-
display: flex;
|
|
6549
|
-
flex-direction: row;
|
|
6550
|
-
height: 2.46154rem; }
|
|
6551
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title .em-ds-icon {
|
|
6552
|
-
margin-top: auto;
|
|
6553
|
-
margin-bottom: auto;
|
|
6554
|
-
fill: #1e79c2; }
|
|
6555
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title:focus {
|
|
6556
|
-
outline: none; }
|
|
6557
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title h2 {
|
|
6558
|
-
font-size: 1.8461rem;
|
|
6559
|
-
line-height: normal;
|
|
6560
|
-
font-weight: 400;
|
|
6561
|
-
font-size: 1.2307rem;
|
|
6562
|
-
width: 100%;
|
|
6563
|
-
margin: 0 0 0 0.30769rem;
|
|
6564
|
-
color: #353C46;
|
|
6565
|
-
text-decoration: none;
|
|
6566
|
-
height: 2.46154rem;
|
|
6567
|
-
margin-top: 7px; }
|
|
6568
|
-
.em-ds-accordion-item__accordion-button.with-secondary-title {
|
|
6569
|
-
height: 3.69231rem; }
|
|
6570
|
-
.em-ds-accordion-item__accordion-button.with-secondary-title .em-ds-accordion-item__title {
|
|
6571
|
-
height: 3.69231rem; }
|
|
6572
|
-
.em-ds-accordion-item__accordion-button.with-secondary-title .em-ds-accordion-item__title h2 {
|
|
6573
|
-
height: calc(3.69231rem * 1.16 * 0.4);
|
|
6574
|
-
padding-top: calc(1.23077rem * 0.5);
|
|
6575
|
-
margin-bottom: 0.30769rem;
|
|
6576
|
-
line-height: calc(3.69231rem * 1.16 * 0.3);
|
|
6577
|
-
font-size: 1.2307rem;
|
|
6578
|
-
margin-top: 0px; }
|
|
6579
|
-
|
|
6580
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6581
|
-
display: flex;
|
|
6582
|
-
flex-direction: column;
|
|
6583
|
-
text-align: left;
|
|
6584
|
-
align-items: center; }
|
|
6585
|
-
.em-ds-accordion-item__title-wrapper.with-secondary-title {
|
|
6586
|
-
overflow: hidden;
|
|
6587
|
-
margin-right: 1.23077rem; }
|
|
6588
|
-
|
|
6589
|
-
.em-ds-accordion-item__accordion-actions {
|
|
6590
|
-
display: flex;
|
|
6591
|
-
flex-direction: row;
|
|
6592
|
-
flex: 1;
|
|
6593
|
-
justify-content: flex-end;
|
|
6594
|
-
align-items: center; }
|
|
6595
|
-
.em-ds-accordion-item__accordion-actions .em-ds-button {
|
|
6596
|
-
margin-left: 0.61538rem; }
|
|
6597
|
-
|
|
6598
|
-
.em-ds-accordion-item__title {
|
|
6599
|
-
width: 100%; }
|
|
6600
|
-
|
|
6601
|
-
.em-ds-accordion-item__secondary-title {
|
|
6602
|
-
font-size: 1.8461rem;
|
|
6603
|
-
line-height: normal;
|
|
6604
|
-
font-weight: 400;
|
|
6605
|
-
font-size: 0.8461rem;
|
|
6606
|
-
line-height: calc(3.69231rem * 1.16 * 0.3);
|
|
6607
|
-
width: 100%;
|
|
6608
|
-
margin: 0 0 0 0.30769rem;
|
|
6609
|
-
color: #697489;
|
|
6610
|
-
text-decoration: none;
|
|
6611
|
-
padding-bottom: calc(1.23077rem * 0.5); }
|
|
6612
|
-
|
|
6613
|
-
@media (max-width: 48rem) {
|
|
6614
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6615
|
-
width: 100%;
|
|
6616
|
-
max-width: 100%;
|
|
6617
|
-
overflow: hidden; }
|
|
6618
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6619
|
-
margin-left: 0;
|
|
6620
|
-
margin-right: 0; }
|
|
6621
|
-
.em-ds-accordion-item__accordion-button {
|
|
6622
|
-
height: 2.75001rem;
|
|
6623
|
-
max-width: 100%;
|
|
6624
|
-
width: 100%;
|
|
6625
|
-
overflow: hidden;
|
|
6626
|
-
padding: 0; }
|
|
6627
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6628
|
-
font-size: 1.2307rem; }
|
|
6629
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6630
|
-
height: 2.75001rem;
|
|
6631
|
-
justify-content: space-between; }
|
|
6632
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6633
|
-
margin-left: 0;
|
|
6634
|
-
margin-right: 0;
|
|
6635
|
-
width: 1.5rem; }
|
|
6636
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6637
|
-
line-height: 2.75001rem;
|
|
6638
|
-
font-size: 1.3846rem;
|
|
6639
|
-
margin-top: 0px; }
|
|
6640
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6641
|
-
width: calc(100% - 1.84615rem);
|
|
6642
|
-
text-overflow: ellipsis;
|
|
6643
|
-
overflow: hidden; } }
|
|
6644
|
-
|
|
6645
|
-
@media only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
6646
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6647
|
-
width: 100%;
|
|
6648
|
-
max-width: 100%;
|
|
6649
|
-
overflow: hidden; }
|
|
6650
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6651
|
-
margin-left: 0;
|
|
6652
|
-
margin-right: 0; }
|
|
6653
|
-
.em-ds-accordion-item__accordion-button {
|
|
6654
|
-
height: 2.75001rem;
|
|
6655
|
-
max-width: 100%;
|
|
6656
|
-
width: 100%;
|
|
6657
|
-
overflow: hidden;
|
|
6658
|
-
padding: 0; }
|
|
6659
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6660
|
-
font-size: 1.2307rem; }
|
|
6661
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6662
|
-
height: 2.75001rem;
|
|
6663
|
-
justify-content: space-between; }
|
|
6664
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6665
|
-
margin-left: 0;
|
|
6666
|
-
margin-right: 0;
|
|
6667
|
-
width: 1.5rem; }
|
|
6668
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6669
|
-
line-height: 2.75001rem;
|
|
6670
|
-
font-size: 1.3846rem;
|
|
6671
|
-
margin-top: 0px; }
|
|
6672
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6673
|
-
width: calc(100% - 1.84615rem);
|
|
6674
|
-
text-overflow: ellipsis;
|
|
6675
|
-
overflow: hidden; } }
|
|
6676
|
-
|
|
6677
|
-
@media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
|
|
6678
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6679
|
-
width: 100%;
|
|
6680
|
-
max-width: 100%;
|
|
6681
|
-
overflow: hidden; }
|
|
6682
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6683
|
-
margin-left: 0;
|
|
6684
|
-
margin-right: 0; }
|
|
6685
|
-
.em-ds-accordion-item__accordion-button {
|
|
6686
|
-
height: 2.75001rem;
|
|
6687
|
-
max-width: 100%;
|
|
6688
|
-
width: 100%;
|
|
6689
|
-
overflow: hidden;
|
|
6690
|
-
padding: 0; }
|
|
6691
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6692
|
-
font-size: 1.2307rem; }
|
|
6693
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6694
|
-
height: 2.75001rem;
|
|
6695
|
-
justify-content: space-between; }
|
|
6696
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6697
|
-
margin-left: 0;
|
|
6698
|
-
margin-right: 0;
|
|
6699
|
-
width: 1.5rem; }
|
|
6700
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6701
|
-
line-height: 2.75001rem;
|
|
6702
|
-
font-size: 1.3846rem;
|
|
6703
|
-
margin-top: 0px; }
|
|
6704
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6705
|
-
width: calc(100% - 1.84615rem);
|
|
6706
|
-
text-overflow: ellipsis;
|
|
6707
|
-
overflow: hidden; } }
|
|
6708
|
-
|
|
6709
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) {
|
|
6710
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6711
|
-
width: 100%;
|
|
6712
|
-
max-width: 100%;
|
|
6713
|
-
overflow: hidden; }
|
|
6714
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6715
|
-
margin-left: 0;
|
|
6716
|
-
margin-right: 0; }
|
|
6717
|
-
.em-ds-accordion-item__accordion-button {
|
|
6718
|
-
height: 2.75001rem;
|
|
6719
|
-
max-width: 100%;
|
|
6720
|
-
width: 100%;
|
|
6721
|
-
overflow: hidden;
|
|
6722
|
-
padding: 0; }
|
|
6723
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6724
|
-
font-size: 1.2307rem; }
|
|
6725
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6726
|
-
height: 2.75001rem;
|
|
6727
|
-
justify-content: space-between; }
|
|
6728
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6729
|
-
margin-left: 0;
|
|
6730
|
-
margin-right: 0;
|
|
6731
|
-
width: 1.5rem; }
|
|
6732
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6733
|
-
line-height: 2.75001rem;
|
|
6734
|
-
font-size: 1.3846rem;
|
|
6735
|
-
margin-top: 0px; }
|
|
6736
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6737
|
-
width: calc(100% - 1.84615rem);
|
|
6738
|
-
text-overflow: ellipsis;
|
|
6739
|
-
overflow: hidden; } }
|
|
6740
|
-
|
|
6741
|
-
@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6742
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6743
|
-
width: 100%;
|
|
6744
|
-
max-width: 100%;
|
|
6745
|
-
overflow: hidden; }
|
|
6746
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6747
|
-
margin-left: 0;
|
|
6748
|
-
margin-right: 0; }
|
|
6749
|
-
.em-ds-accordion-item__accordion-button {
|
|
6750
|
-
height: 2.75001rem;
|
|
6751
|
-
max-width: 100%;
|
|
6752
|
-
width: 100%;
|
|
6753
|
-
overflow: hidden;
|
|
6754
|
-
padding: 0; }
|
|
6755
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6756
|
-
font-size: 1.2307rem; }
|
|
6757
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6758
|
-
height: 2.75001rem;
|
|
6759
|
-
justify-content: space-between; }
|
|
6760
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6761
|
-
margin-left: 0;
|
|
6762
|
-
margin-right: 0;
|
|
6763
|
-
width: 1.5rem; }
|
|
6764
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6765
|
-
line-height: 2.75001rem;
|
|
6766
|
-
font-size: 1.3846rem;
|
|
6767
|
-
margin-top: 0px; }
|
|
6768
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6769
|
-
width: calc(100% - 1.84615rem);
|
|
6770
|
-
text-overflow: ellipsis;
|
|
6771
|
-
overflow: hidden; } }
|
|
6772
|
-
|
|
6773
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6774
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6775
|
-
width: 100%;
|
|
6776
|
-
max-width: 100%;
|
|
6777
|
-
overflow: hidden; }
|
|
6778
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6779
|
-
margin-left: 0;
|
|
6780
|
-
margin-right: 0; }
|
|
6781
|
-
.em-ds-accordion-item__accordion-button {
|
|
6782
|
-
height: 2.75001rem;
|
|
6783
|
-
max-width: 100%;
|
|
6784
|
-
width: 100%;
|
|
6785
|
-
overflow: hidden;
|
|
6786
|
-
padding: 0; }
|
|
6787
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6788
|
-
font-size: 1.2307rem; }
|
|
6789
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6790
|
-
height: 2.75001rem;
|
|
6791
|
-
justify-content: space-between; }
|
|
6792
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6793
|
-
margin-left: 0;
|
|
6794
|
-
margin-right: 0;
|
|
6795
|
-
width: 1.5rem; }
|
|
6796
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6797
|
-
line-height: 2.75001rem;
|
|
6798
|
-
font-size: 1.3846rem;
|
|
6799
|
-
margin-top: 0px; }
|
|
6800
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6801
|
-
width: calc(100% - 1.84615rem);
|
|
6802
|
-
text-overflow: ellipsis;
|
|
6803
|
-
overflow: hidden; } }
|
|
6804
|
-
|
|
6805
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6806
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6807
|
-
width: 100%;
|
|
6808
|
-
max-width: 100%;
|
|
6809
|
-
overflow: hidden; }
|
|
6810
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6811
|
-
margin-left: 0;
|
|
6812
|
-
margin-right: 0; }
|
|
6813
|
-
.em-ds-accordion-item__accordion-button {
|
|
6814
|
-
height: 2.75001rem;
|
|
6815
|
-
max-width: 100%;
|
|
6816
|
-
width: 100%;
|
|
6817
|
-
overflow: hidden;
|
|
6818
|
-
padding: 0; }
|
|
6819
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6820
|
-
font-size: 1.2307rem; }
|
|
6821
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6822
|
-
height: 2.75001rem;
|
|
6823
|
-
justify-content: space-between; }
|
|
6824
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6825
|
-
margin-left: 0;
|
|
6826
|
-
margin-right: 0;
|
|
6827
|
-
width: 1.5rem; }
|
|
6828
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6829
|
-
line-height: 2.75001rem;
|
|
6830
|
-
font-size: 1.3846rem;
|
|
6831
|
-
margin-top: 0px; }
|
|
6832
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6833
|
-
width: calc(100% - 1.84615rem);
|
|
6834
|
-
text-overflow: ellipsis;
|
|
6835
|
-
overflow: hidden; } }
|
|
6836
|
-
|
|
6837
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6838
|
-
.em-ds-accordion-item .em-ds-button {
|
|
6839
|
-
width: 100%;
|
|
6840
|
-
max-width: 100%;
|
|
6841
|
-
overflow: hidden; }
|
|
6842
|
-
.em-ds-accordion-item .em-ds-button .em-ds-icon:last-child {
|
|
6843
|
-
margin-left: 0;
|
|
6844
|
-
margin-right: 0; }
|
|
6845
|
-
.em-ds-accordion-item__accordion-button {
|
|
6846
|
-
height: 2.75001rem;
|
|
6847
|
-
max-width: 100%;
|
|
6848
|
-
width: 100%;
|
|
6849
|
-
overflow: hidden;
|
|
6850
|
-
padding: 0; }
|
|
6851
|
-
.em-ds-accordion-item__accordion-button .em-ds-accordion-item__title {
|
|
6852
|
-
font-size: 1.2307rem; }
|
|
6853
|
-
.em-ds-accordion-item .em-ds-accordion-item__title {
|
|
6854
|
-
height: 2.75001rem;
|
|
6855
|
-
justify-content: space-between; }
|
|
6856
|
-
.em-ds-accordion-item .em-ds-accordion-item__title .em-ds-icon {
|
|
6857
|
-
margin-left: 0;
|
|
6858
|
-
margin-right: 0;
|
|
6859
|
-
width: 1.5rem; }
|
|
6860
|
-
.em-ds-accordion-item .em-ds-accordion-item__title h2 {
|
|
6861
|
-
line-height: 2.75001rem;
|
|
6862
|
-
font-size: 1.3846rem;
|
|
6863
|
-
margin-top: 0px; }
|
|
6864
|
-
.em-ds-accordion-item__title-wrapper {
|
|
6865
|
-
width: calc(100% - 1.84615rem);
|
|
6866
|
-
text-overflow: ellipsis;
|
|
6867
|
-
overflow: hidden; } }
|
|
6868
|
-
|
|
6869
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6870
|
-
border-bottom: 1px solid #CBCFD7; }
|
|
6871
|
-
|
|
6872
|
-
@media (max-width: 48rem) {
|
|
6873
|
-
.em-ds-accordion {
|
|
6874
|
-
overflow: hidden; }
|
|
6875
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6876
|
-
border-top: 1px solid #CBCFD7;
|
|
6877
|
-
border-bottom: none; }
|
|
6878
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6879
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6880
|
-
|
|
6881
|
-
@media only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
6882
|
-
.em-ds-accordion {
|
|
6883
|
-
overflow: hidden; }
|
|
6884
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6885
|
-
border-top: 1px solid #CBCFD7;
|
|
6886
|
-
border-bottom: none; }
|
|
6887
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6888
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6889
|
-
|
|
6890
|
-
@media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
|
|
6891
|
-
.em-ds-accordion {
|
|
6892
|
-
overflow: hidden; }
|
|
6893
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6894
|
-
border-top: 1px solid #CBCFD7;
|
|
6895
|
-
border-bottom: none; }
|
|
6896
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6897
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6898
|
-
|
|
6899
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) {
|
|
6900
|
-
.em-ds-accordion {
|
|
6901
|
-
overflow: hidden; }
|
|
6902
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6903
|
-
border-top: 1px solid #CBCFD7;
|
|
6904
|
-
border-bottom: none; }
|
|
6905
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6906
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6907
|
-
|
|
6908
|
-
@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6909
|
-
.em-ds-accordion {
|
|
6910
|
-
overflow: hidden; }
|
|
6911
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6912
|
-
border-top: 1px solid #CBCFD7;
|
|
6913
|
-
border-bottom: none; }
|
|
6914
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6915
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6916
|
-
|
|
6917
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6918
|
-
.em-ds-accordion {
|
|
6919
|
-
overflow: hidden; }
|
|
6920
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6921
|
-
border-top: 1px solid #CBCFD7;
|
|
6922
|
-
border-bottom: none; }
|
|
6923
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6924
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6925
|
-
|
|
6926
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6927
|
-
.em-ds-accordion {
|
|
6928
|
-
overflow: hidden; }
|
|
6929
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6930
|
-
border-top: 1px solid #CBCFD7;
|
|
6931
|
-
border-bottom: none; }
|
|
6932
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6933
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6934
|
-
|
|
6935
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6936
|
-
.em-ds-accordion {
|
|
6937
|
-
overflow: hidden; }
|
|
6938
|
-
.em-ds-accordion .em-ds-accordion-item {
|
|
6939
|
-
border-top: 1px solid #CBCFD7;
|
|
6940
|
-
border-bottom: none; }
|
|
6941
|
-
.em-ds-accordion .em-ds-accordion-item:last-child {
|
|
6942
|
-
border-bottom: 1px solid #CBCFD7; } }
|
|
6943
|
-
|
|
6944
|
-
.em-ds-accordion .em-ds-accordion-item__container {
|
|
6945
|
-
overflow: hidden;
|
|
6946
|
-
transition: height cubic-bezier(0.64, 0, 0.35, 1) 200ms; }
|
|
6947
|
-
.em-ds-accordion .em-ds-accordion-item__container .em-ds-accordion-item__expand-zone {
|
|
6948
|
-
overflow: hidden; }
|
|
6949
|
-
|
|
6950
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6951
|
-
padding: 1.23077rem 0 1.84615rem 1.84615rem; }
|
|
6952
|
-
@media (max-width: 48rem) {
|
|
6953
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6954
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6955
|
-
@media only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
6956
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6957
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6958
|
-
@media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
|
|
6959
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6960
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6961
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) {
|
|
6962
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6963
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6964
|
-
@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6965
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6966
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6967
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6968
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6969
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6970
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
|
|
6971
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6972
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6973
|
-
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) {
|
|
6974
|
-
.em-ds-accordion .em-ds-accordion-item__expand-zone-space {
|
|
6975
|
-
padding: 1rem 0 1.5rem 0; } }
|
|
6976
|
-
|
|
6977
6527
|
.em-ds-card {
|
|
6978
|
-
border: 1px solid #
|
|
6528
|
+
border: 1px solid #f6f7f9;
|
|
6979
6529
|
border-radius: 0;
|
|
6980
6530
|
-ms-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
|
|
6981
6531
|
-o-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
|
|
6982
6532
|
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3); }
|
|
6983
6533
|
.em-ds-card .em-ds-card-header {
|
|
6984
|
-
color: #
|
|
6985
|
-
background: #
|
|
6534
|
+
color: #464f5c;
|
|
6535
|
+
background: #f6f7f9;
|
|
6986
6536
|
padding: 6px 15px;
|
|
6987
6537
|
border-bottom: 1px solid transparent;
|
|
6988
6538
|
border-radius: 0; }
|
|
6989
6539
|
.em-ds-card .em-ds-card-header .em-ds-card-header__heading {
|
|
6990
|
-
color: #
|
|
6540
|
+
color: #464f5c;
|
|
6991
6541
|
font-family: inherit;
|
|
6992
6542
|
font-size: 18pt; }
|
|
6993
6543
|
.em-ds-card .em-ds-card-header .em-ds-card-header__pull-right {
|
|
@@ -7036,7 +6586,7 @@ div.em-ds-button {
|
|
|
7036
6586
|
display: block;
|
|
7037
6587
|
height: 1px;
|
|
7038
6588
|
width: 100%;
|
|
7039
|
-
background-color: #
|
|
6589
|
+
background-color: #e0e3e8; }
|
|
7040
6590
|
.em-ds-menu-separator:first-child {
|
|
7041
6591
|
display: none; }
|
|
7042
6592
|
|
|
@@ -7048,11 +6598,11 @@ div.em-ds-button {
|
|
|
7048
6598
|
max-width: 34.46154rem; }
|
|
7049
6599
|
|
|
7050
6600
|
.em-ds-menu {
|
|
7051
|
-
border: 1px solid #
|
|
6601
|
+
border: 1px solid #cbcfd7;
|
|
7052
6602
|
margin: 0;
|
|
7053
6603
|
padding: 0.61538rem 0;
|
|
7054
|
-
background: #
|
|
7055
|
-
color: #
|
|
6604
|
+
background: #ffffff;
|
|
6605
|
+
color: #25292f;
|
|
7056
6606
|
list-style: none;
|
|
7057
6607
|
min-width: 9.84615rem;
|
|
7058
6608
|
border-radius: 2px;
|
|
@@ -7060,7 +6610,7 @@ div.em-ds-button {
|
|
|
7060
6610
|
-o-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
|
|
7061
6611
|
box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
|
|
7062
6612
|
.em-ds-menu .em-ds-separator {
|
|
7063
|
-
border-color: #
|
|
6613
|
+
border-color: #b0b9c8; }
|
|
7064
6614
|
.em-ds-menu--type-phone {
|
|
7065
6615
|
margin-top: 0.30769rem; }
|
|
7066
6616
|
|
|
@@ -7108,12 +6658,12 @@ div.em-ds-button {
|
|
|
7108
6658
|
.em-ds-menu-item:focus-within .em-ds-menu-item__addon:last-child {
|
|
7109
6659
|
opacity: 1; }
|
|
7110
6660
|
.em-ds-menu-item:focus {
|
|
7111
|
-
background-color: #
|
|
6661
|
+
background-color: #ebf6ff;
|
|
7112
6662
|
outline: none; }
|
|
7113
6663
|
.em-ds-menu-item:focus .em-ds-menu-item__addon:last-child {
|
|
7114
6664
|
opacity: 1; }
|
|
7115
6665
|
.em-ds-menu-item:active {
|
|
7116
|
-
background-color: #
|
|
6666
|
+
background-color: #ebf6ff; }
|
|
7117
6667
|
.em-ds-menu-item:active .em-ds-menu-item__addon:last-child {
|
|
7118
6668
|
opacity: 1; }
|
|
7119
6669
|
.em-ds-menu-item[role='menuitemcheckbox'] .checkable-mark svg, .em-ds-menu-item[role='menuitemradio'] .checkable-mark svg {
|
|
@@ -7145,13 +6695,13 @@ div.em-ds-button {
|
|
|
7145
6695
|
.em-ds-menu-item--menu-type-phone .em-ds-menu-item__custom-phone-render {
|
|
7146
6696
|
margin: 0;
|
|
7147
6697
|
padding: 0;
|
|
7148
|
-
color: #
|
|
6698
|
+
color: #006aa9;
|
|
7149
6699
|
font-weight: 600;
|
|
7150
6700
|
font-size: 1rem; }
|
|
7151
6701
|
.em-ds-menu-item--menu-type-phone:active .em-ds-menu-item__content {
|
|
7152
|
-
color: #
|
|
6702
|
+
color: #ffffff; }
|
|
7153
6703
|
.em-ds-menu-item--menu-type-phone:active .em-ds-menu-item__custom-phone-render {
|
|
7154
|
-
color: #
|
|
6704
|
+
color: #ffffff; }
|
|
7155
6705
|
|
|
7156
6706
|
.em-ds-menu-search-group__search-wrapper {
|
|
7157
6707
|
padding: 0 0.61538rem 0.61538rem; }
|
|
@@ -7165,7 +6715,7 @@ div.em-ds-button {
|
|
|
7165
6715
|
.em-ds-menu--menu-combo-box {
|
|
7166
6716
|
padding: 0;
|
|
7167
6717
|
padding-top: 0.61538rem;
|
|
7168
|
-
border: 1px solid #
|
|
6718
|
+
border: 1px solid #cbcfd7; }
|
|
7169
6719
|
.em-ds-menu--menu-combo-box .em-ds-combobox-container {
|
|
7170
6720
|
height: auto; }
|
|
7171
6721
|
.em-ds-menu--menu-combo-box .em-ds-combobox__menu {
|
|
@@ -7181,7 +6731,7 @@ div.em-ds-button {
|
|
|
7181
6731
|
outline: none;
|
|
7182
6732
|
display: inline-flex;
|
|
7183
6733
|
align-items: center;
|
|
7184
|
-
background-color: #
|
|
6734
|
+
background-color: #ebf6ff;
|
|
7185
6735
|
padding: 0 0.30769rem;
|
|
7186
6736
|
border-radius: 1.23077rem;
|
|
7187
6737
|
white-space: nowrap;
|
|
@@ -7189,7 +6739,7 @@ div.em-ds-button {
|
|
|
7189
6739
|
.em-ds-pill__label {
|
|
7190
6740
|
padding-top: 0.15385rem;
|
|
7191
6741
|
margin: 0 0.61538rem;
|
|
7192
|
-
color: #
|
|
6742
|
+
color: #25292f;
|
|
7193
6743
|
font-size: 1rem;
|
|
7194
6744
|
line-height: normal;
|
|
7195
6745
|
font-weight: 400; }
|
|
@@ -7236,20 +6786,20 @@ div.em-ds-button {
|
|
|
7236
6786
|
|
|
7237
6787
|
.em-ds-pill.input-pill {
|
|
7238
6788
|
cursor: pointer;
|
|
7239
|
-
background: #
|
|
7240
|
-
border: solid 1px #
|
|
6789
|
+
background: #ffffff;
|
|
6790
|
+
border: solid 1px #cbcfd7;
|
|
7241
6791
|
width: 9em; }
|
|
7242
6792
|
.em-ds-pill.input-pill .em-ds-pill__label {
|
|
7243
6793
|
margin: 0 0.30769rem 0 0.61538rem; }
|
|
7244
6794
|
.em-ds-pill.input-pill.em-ds-input-pill--value {
|
|
7245
|
-
background-color: #
|
|
6795
|
+
background-color: #ebf6ff;
|
|
7246
6796
|
border: unset; }
|
|
7247
6797
|
.em-ds-pill.input-pill.em-ds-input-pill--value .em-ds-input {
|
|
7248
|
-
background-color: #
|
|
6798
|
+
background-color: #ebf6ff; }
|
|
7249
6799
|
.em-ds-pill.input-pill.em-ds-input-pill--value:active, .em-ds-pill.input-pill.em-ds-input-pill--value:focus-within, .em-ds-pill.input-pill.em-ds-input-pill--value[aria-expanded="true"] {
|
|
7250
|
-
background-color: #
|
|
6800
|
+
background-color: #ffffff; }
|
|
7251
6801
|
.em-ds-pill.input-pill.em-ds-input-pill--value:active .em-ds-input, .em-ds-pill.input-pill.em-ds-input-pill--value:focus-within .em-ds-input, .em-ds-pill.input-pill.em-ds-input-pill--value[aria-expanded="true"] .em-ds-input {
|
|
7252
|
-
background-color: #
|
|
6802
|
+
background-color: #ffffff; }
|
|
7253
6803
|
.em-ds-pill.input-pill .em-ds-input {
|
|
7254
6804
|
color: #005181;
|
|
7255
6805
|
padding: unset;
|
|
@@ -7519,7 +7069,7 @@ div.em-ds-button {
|
|
|
7519
7069
|
display: none; }
|
|
7520
7070
|
|
|
7521
7071
|
.em-ds-indeterminate-progress-indicator__bar {
|
|
7522
|
-
background-color: #
|
|
7072
|
+
background-color: #e0e3e8;
|
|
7523
7073
|
overflow: hidden; }
|
|
7524
7074
|
|
|
7525
7075
|
.em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
@@ -7529,23 +7079,23 @@ div.em-ds-button {
|
|
|
7529
7079
|
0% {
|
|
7530
7080
|
transform: scaleX(0.015);
|
|
7531
7081
|
transform-origin: 0% 0%;
|
|
7532
|
-
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #
|
|
7082
|
+
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
|
|
7533
7083
|
25% {
|
|
7534
7084
|
transform: scaleX(0.4); }
|
|
7535
7085
|
50% {
|
|
7536
7086
|
transform: scaleX(0.015);
|
|
7537
7087
|
transform-origin: 100% 0%;
|
|
7538
|
-
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #
|
|
7088
|
+
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
|
|
7539
7089
|
50.1% {
|
|
7540
7090
|
transform: scaleX(0.015);
|
|
7541
7091
|
transform-origin: 100% 0%;
|
|
7542
|
-
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #
|
|
7092
|
+
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
|
|
7543
7093
|
75% {
|
|
7544
7094
|
transform: scaleX(0.4); }
|
|
7545
7095
|
100% {
|
|
7546
7096
|
transform: scaleX(0.015);
|
|
7547
7097
|
transform-origin: 0% 0%;
|
|
7548
|
-
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #
|
|
7098
|
+
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #1394e5); } }
|
|
7549
7099
|
|
|
7550
7100
|
@keyframes processingSuccess {
|
|
7551
7101
|
0%, 30% {
|
|
@@ -7578,7 +7128,7 @@ div.em-ds-button {
|
|
|
7578
7128
|
width: 50%; }
|
|
7579
7129
|
100% {
|
|
7580
7130
|
transform: translateX(0%);
|
|
7581
|
-
background-color: #
|
|
7131
|
+
background-color: #207e56; } }
|
|
7582
7132
|
|
|
7583
7133
|
@keyframes processingFail {
|
|
7584
7134
|
0%, 30% {
|
|
@@ -7630,11 +7180,11 @@ div.em-ds-button {
|
|
|
7630
7180
|
background-color: #697489;
|
|
7631
7181
|
width: 50%; }
|
|
7632
7182
|
.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7633
|
-
background-color: #
|
|
7183
|
+
background-color: #207e56; }
|
|
7634
7184
|
.em-ds-indeterminate-progress-indicator-failed .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7635
7185
|
background-color: #e34256; }
|
|
7636
7186
|
.em-ds-indeterminate-progress-indicator-processing .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7637
|
-
background-color: #
|
|
7187
|
+
background-color: #1394e5;
|
|
7638
7188
|
width: 50%; }
|
|
7639
7189
|
.em-ds-indeterminate-progress-indicator-processing.animated .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7640
7190
|
width: 100%;
|
|
@@ -7645,7 +7195,7 @@ div.em-ds-button {
|
|
|
7645
7195
|
.em-ds-indeterminate-progress-indicator-processing.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator-tooltip-text {
|
|
7646
7196
|
animation: labelAnimation 1s ease-in-out; }
|
|
7647
7197
|
.em-ds-indeterminate-progress-indicator-processing-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7648
|
-
background-color: #
|
|
7198
|
+
background-color: #1394e5;
|
|
7649
7199
|
width: 50%;
|
|
7650
7200
|
animation: processingSuccess 4s infinite;
|
|
7651
7201
|
animation-fill-mode: forwards; }
|
|
@@ -7655,7 +7205,7 @@ div.em-ds-button {
|
|
|
7655
7205
|
.em-ds-indeterminate-progress-indicator-processing-complete.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator-tooltip-text {
|
|
7656
7206
|
animation: labelAnimation 1s ease-in-out; }
|
|
7657
7207
|
.em-ds-indeterminate-progress-indicator-processing-fail .em-ds-indeterminate-progress-indicator__bar-indicator {
|
|
7658
|
-
background-color: #
|
|
7208
|
+
background-color: #1394e5;
|
|
7659
7209
|
width: 50%;
|
|
7660
7210
|
animation: processingFail 4s infinite;
|
|
7661
7211
|
animation-fill-mode: forwards; }
|
|
@@ -7670,11 +7220,11 @@ div.em-ds-button {
|
|
|
7670
7220
|
.em-ds-page-number {
|
|
7671
7221
|
position: relative;
|
|
7672
7222
|
display: inline-flex;
|
|
7673
|
-
border: 0.07692rem solid #
|
|
7223
|
+
border: 0.07692rem solid #cbcfd7;
|
|
7674
7224
|
margin: 0.61538rem 0;
|
|
7675
7225
|
border-radius: 2px; }
|
|
7676
7226
|
.em-ds-page-number .em-ds-time-picker-panel:not(:last-child) {
|
|
7677
|
-
border-right: 0.07692rem solid #
|
|
7227
|
+
border-right: 0.07692rem solid #cbcfd7; }
|
|
7678
7228
|
.em-ds-page-number__pages {
|
|
7679
7229
|
display: flex;
|
|
7680
7230
|
flex-direction: row;
|
|
@@ -7700,7 +7250,7 @@ div.em-ds-button {
|
|
|
7700
7250
|
padding: 0.61538rem 14px; }
|
|
7701
7251
|
.em-ds-page-number__limiter {
|
|
7702
7252
|
width: 1px;
|
|
7703
|
-
background: #
|
|
7253
|
+
background: #cbcfd7;
|
|
7704
7254
|
height: calc(2.46154rem - 1.23077rem);
|
|
7705
7255
|
margin-top: calc(0.30769rem * 1.5);
|
|
7706
7256
|
margin-left: 0.61538rem; }
|
|
@@ -7721,7 +7271,7 @@ div.em-ds-button {
|
|
|
7721
7271
|
margin-top: 1.23077rem; }
|
|
7722
7272
|
|
|
7723
7273
|
.em-ds-circular-progress-indicator__track {
|
|
7724
|
-
stroke: #
|
|
7274
|
+
stroke: #e0e3e8; }
|
|
7725
7275
|
|
|
7726
7276
|
.em-ds-circular-progress-indicator__arc-blue {
|
|
7727
7277
|
transform-origin: 33px 33px;
|
|
@@ -7788,7 +7338,7 @@ div.em-ds-button {
|
|
|
7788
7338
|
justify-content: center;
|
|
7789
7339
|
align-items: center; }
|
|
7790
7340
|
.em-ds-shuttle__empty-container span {
|
|
7791
|
-
color: #
|
|
7341
|
+
color: #b0b9c8; }
|
|
7792
7342
|
|
|
7793
7343
|
.em-ds-shuttle-wrapper {
|
|
7794
7344
|
position: relative;
|
|
@@ -7810,7 +7360,7 @@ div.em-ds-button {
|
|
|
7810
7360
|
.em-ds-shuttle-wrapper .em-ds-shuttle-list {
|
|
7811
7361
|
flex: 1 1 50%;
|
|
7812
7362
|
position: relative;
|
|
7813
|
-
border: 1px solid #
|
|
7363
|
+
border: 1px solid #cbcfd7;
|
|
7814
7364
|
padding: 0;
|
|
7815
7365
|
min-height: 22.89231rem;
|
|
7816
7366
|
height: 100%;
|
|
@@ -7830,7 +7380,7 @@ div.em-ds-button {
|
|
|
7830
7380
|
top: 0; }
|
|
7831
7381
|
.em-ds-shuttle-wrapper .em-ds-shuttle-list__panel {
|
|
7832
7382
|
width: 3.93846rem;
|
|
7833
|
-
background-color: #
|
|
7383
|
+
background-color: #ffffff;
|
|
7834
7384
|
position: absolute;
|
|
7835
7385
|
top: 0;
|
|
7836
7386
|
right: 0;
|
|
@@ -7889,13 +7439,13 @@ div.em-ds-button {
|
|
|
7889
7439
|
align-items: center;
|
|
7890
7440
|
overflow: hidden;
|
|
7891
7441
|
position: relative;
|
|
7892
|
-
border-bottom: 1px solid #
|
|
7893
|
-
background-color: #
|
|
7442
|
+
border-bottom: 1px solid #e0e3e8;
|
|
7443
|
+
background-color: #ffffff; }
|
|
7894
7444
|
.em-ds-shuttle-list-item.drag-helper {
|
|
7895
|
-
border: 1px solid #
|
|
7445
|
+
border: 1px solid #e0e3e8; }
|
|
7896
7446
|
.em-ds-shuttle-list-item__parent-helper-text {
|
|
7897
7447
|
margin-left: 0.61538rem;
|
|
7898
|
-
color: #
|
|
7448
|
+
color: #006aa9; }
|
|
7899
7449
|
.em-ds-shuttle-list-item__content {
|
|
7900
7450
|
display: flex;
|
|
7901
7451
|
align-items: center;
|
|
@@ -7903,7 +7453,7 @@ div.em-ds-button {
|
|
|
7903
7453
|
height: 2.76923rem;
|
|
7904
7454
|
padding-left: 0.61538rem;
|
|
7905
7455
|
padding-right: 0.61538rem;
|
|
7906
|
-
border-left: 4px solid #
|
|
7456
|
+
border-left: 4px solid #e0e3e8;
|
|
7907
7457
|
cursor: default;
|
|
7908
7458
|
pointer-events: none;
|
|
7909
7459
|
max-width: calc(100% - 72px); }
|
|
@@ -7919,7 +7469,7 @@ div.em-ds-button {
|
|
|
7919
7469
|
cursor: pointer;
|
|
7920
7470
|
pointer-events: all; }
|
|
7921
7471
|
.em-ds-shuttle-list-item__content--can-hover:hover {
|
|
7922
|
-
background-color: #
|
|
7472
|
+
background-color: #f6fbff; }
|
|
7923
7473
|
.em-ds-shuttle-list-item__icon-wrapper {
|
|
7924
7474
|
margin-right: 0.61538rem; }
|
|
7925
7475
|
.em-ds-shuttle-list-item__actions {
|
|
@@ -7931,11 +7481,11 @@ div.em-ds-button {
|
|
|
7931
7481
|
cursor: pointer;
|
|
7932
7482
|
height: 2.76923rem;
|
|
7933
7483
|
width: 2.76923rem;
|
|
7934
|
-
border-left: 1px solid #
|
|
7484
|
+
border-left: 1px solid #e0e3e8; }
|
|
7935
7485
|
.em-ds-shuttle-list-item__actions .em-ds-button svg, .em-ds-shuttle-list-item__actions .em-ds-button svg:not([fill]) {
|
|
7936
7486
|
fill: #1e79c2; }
|
|
7937
7487
|
.em-ds-shuttle-list-item__actions .em-ds-button:hover:not(:disabled) {
|
|
7938
|
-
background-color: #
|
|
7488
|
+
background-color: #f6fbff; }
|
|
7939
7489
|
.em-ds-shuttle-list-item__actions .em-ds-button:disabled {
|
|
7940
7490
|
cursor: auto; }
|
|
7941
7491
|
.em-ds-shuttle-list-item__actions .em-ds-button:disabled svg {
|
|
@@ -7945,10 +7495,10 @@ div.em-ds-button {
|
|
|
7945
7495
|
position: absolute;
|
|
7946
7496
|
width: 100%;
|
|
7947
7497
|
z-index: 10;
|
|
7948
|
-
background-color: #
|
|
7498
|
+
background-color: #ffffff;
|
|
7949
7499
|
height: 2.21538rem;
|
|
7950
7500
|
top: -2.21538rem;
|
|
7951
|
-
border-bottom: 1px solid #
|
|
7501
|
+
border-bottom: 1px solid #e0e3e8;
|
|
7952
7502
|
align-items: center;
|
|
7953
7503
|
transition: 200ms cubic-bezier(0.64, 0, 0.35, 1); }
|
|
7954
7504
|
.em-ds-shuttle-search-box .em-ds-input-addon-wrapper {
|
|
@@ -7968,10 +7518,10 @@ div.em-ds-button {
|
|
|
7968
7518
|
position: absolute;
|
|
7969
7519
|
width: 100%;
|
|
7970
7520
|
z-index: 10;
|
|
7971
|
-
background-color: #
|
|
7521
|
+
background-color: #ffffff;
|
|
7972
7522
|
height: 2.76923rem;
|
|
7973
7523
|
bottom: -43px;
|
|
7974
|
-
border-top: 1px solid #
|
|
7524
|
+
border-top: 1px solid #e0e3e8;
|
|
7975
7525
|
align-items: center;
|
|
7976
7526
|
transition: 400ms cubic-bezier(0, 0, 0.42, 1); }
|
|
7977
7527
|
.em-ds-shuttle-infinite-scroll-indicator--opened {
|
|
@@ -8018,7 +7568,7 @@ body.ReactModal__Body--open {
|
|
|
8018
7568
|
flex-direction: column;
|
|
8019
7569
|
width: 100%;
|
|
8020
7570
|
pointer-events: auto;
|
|
8021
|
-
background-color: #
|
|
7571
|
+
background-color: #ffffff;
|
|
8022
7572
|
background-clip: padding-box;
|
|
8023
7573
|
min-width: 9.84615rem; }
|
|
8024
7574
|
.em-ds-modal:focus {
|
|
@@ -8045,10 +7595,10 @@ body.ReactModal__Body--open {
|
|
|
8045
7595
|
margin: 1.84615rem auto; }
|
|
8046
7596
|
|
|
8047
7597
|
.em-ds-modal-modal-header {
|
|
8048
|
-
background: #
|
|
7598
|
+
background: #f6f7f9;
|
|
8049
7599
|
display: flex;
|
|
8050
7600
|
align-items: flex-start;
|
|
8051
|
-
border-bottom: solid 1px #
|
|
7601
|
+
border-bottom: solid 1px #ebedf0;
|
|
8052
7602
|
padding: 1.23077rem;
|
|
8053
7603
|
flex: 0 0 auto; }
|
|
8054
7604
|
|
|
@@ -8056,7 +7606,7 @@ body.ReactModal__Body--open {
|
|
|
8056
7606
|
font-size: 1.3846rem;
|
|
8057
7607
|
line-height: 1.2;
|
|
8058
7608
|
font-weight: 400;
|
|
8059
|
-
color: #
|
|
7609
|
+
color: #353c46;
|
|
8060
7610
|
word-break: break-word; }
|
|
8061
7611
|
|
|
8062
7612
|
.em-ds-modal-modal-header__icon {
|
|
@@ -8078,7 +7628,7 @@ body.ReactModal__Body--open {
|
|
|
8078
7628
|
display: flex;
|
|
8079
7629
|
align-items: center;
|
|
8080
7630
|
justify-content: flex-end;
|
|
8081
|
-
border-top: solid 1px #
|
|
7631
|
+
border-top: solid 1px #ebedf0;
|
|
8082
7632
|
padding: 1.23077rem;
|
|
8083
7633
|
flex: 0 0 auto; }
|
|
8084
7634
|
|
|
@@ -8104,15 +7654,15 @@ body.ReactModal__Body--open {
|
|
|
8104
7654
|
height: 4.92308rem;
|
|
8105
7655
|
width: 4.92308rem; }
|
|
8106
7656
|
.em-ds-modal-feedback--modal-type-warning .em-ds-icon {
|
|
8107
|
-
fill: #
|
|
7657
|
+
fill: #ff9400; }
|
|
8108
7658
|
.em-ds-modal-feedback--modal-type-error .em-ds-icon {
|
|
8109
|
-
fill: #
|
|
7659
|
+
fill: #c64252; }
|
|
8110
7660
|
.em-ds-modal-feedback--modal-type-success .em-ds-icon {
|
|
8111
|
-
fill: #
|
|
7661
|
+
fill: #207e56; }
|
|
8112
7662
|
.em-ds-modal-feedback--modal-type-help .em-ds-icon {
|
|
8113
|
-
fill: #
|
|
7663
|
+
fill: #52a6ec; }
|
|
8114
7664
|
.em-ds-modal-feedback--modal-type-info .em-ds-icon {
|
|
8115
|
-
fill: #
|
|
7665
|
+
fill: #52a6ec; }
|
|
8116
7666
|
|
|
8117
7667
|
.em-ds-modal-v2 {
|
|
8118
7668
|
position: relative;
|
|
@@ -8120,7 +7670,7 @@ body.ReactModal__Body--open {
|
|
|
8120
7670
|
flex-direction: column;
|
|
8121
7671
|
width: auto;
|
|
8122
7672
|
pointer-events: auto;
|
|
8123
|
-
background-color: #
|
|
7673
|
+
background-color: #ffffff;
|
|
8124
7674
|
background-clip: padding-box;
|
|
8125
7675
|
min-width: 300px;
|
|
8126
7676
|
box-shadow: 0 10px 20px 0 #697489;
|
|
@@ -8148,14 +7698,14 @@ body.ReactModal__Body--open {
|
|
|
8148
7698
|
height: 3.69231rem;
|
|
8149
7699
|
display: flex;
|
|
8150
7700
|
align-items: flex-start;
|
|
8151
|
-
border-bottom: solid 1px #
|
|
7701
|
+
border-bottom: solid 1px #ebedf0;
|
|
8152
7702
|
padding-top: 10px;
|
|
8153
7703
|
padding-left: 1.23077rem;
|
|
8154
7704
|
padding-right: 1.23077rem;
|
|
8155
7705
|
flex: 0 0 auto;
|
|
8156
7706
|
width: calc(100% - 1px); }
|
|
8157
7707
|
.em-ds-modal-v2__modal-header--selection .em-ds-modal-v2__modal-header-close {
|
|
8158
|
-
background: #
|
|
7708
|
+
background: #ffffff;
|
|
8159
7709
|
margin-left: auto; }
|
|
8160
7710
|
.em-ds-modal-v2__modal-header--selection .em-ds-modal-v2__modal-header-close--form {
|
|
8161
7711
|
background: none;
|
|
@@ -8213,13 +7763,13 @@ body.ReactModal__Body--open {
|
|
|
8213
7763
|
height: 4.92308rem;
|
|
8214
7764
|
width: 4.92308rem; }
|
|
8215
7765
|
.em-ds-modal-v2__modal-feedback--information .em-ds-icon svg, .em-ds-modal-v2__modal-feedback--information .em-ds-icon svg:not([fill]) {
|
|
8216
|
-
fill: #
|
|
7766
|
+
fill: #006aa9; }
|
|
8217
7767
|
.em-ds-modal-v2__modal-feedback--warning .em-ds-icon svg, .em-ds-modal-v2__modal-feedback--warning .em-ds-icon svg:not([fill]) {
|
|
8218
|
-
fill: #
|
|
7768
|
+
fill: #fbb431; }
|
|
8219
7769
|
.em-ds-modal-v2__modal-feedback--error .em-ds-icon svg, .em-ds-modal-v2__modal-feedback--error .em-ds-icon svg:not([fill]) {
|
|
8220
|
-
fill: #
|
|
7770
|
+
fill: #c64252; }
|
|
8221
7771
|
.em-ds-modal-v2__modal-feedback--success .em-ds-icon svg, .em-ds-modal-v2__modal-feedback--success .em-ds-icon svg:not([fill]) {
|
|
8222
|
-
fill: #
|
|
7772
|
+
fill: #207e56; }
|
|
8223
7773
|
|
|
8224
7774
|
.em-ds-modal-v2-type-information,
|
|
8225
7775
|
.em-ds-modal-v2-type-decision {
|
|
@@ -8229,7 +7779,7 @@ body.ReactModal__Body--open {
|
|
|
8229
7779
|
font-size: 1.3846rem;
|
|
8230
7780
|
line-height: 1.2;
|
|
8231
7781
|
font-weight: 400;
|
|
8232
|
-
color: #
|
|
7782
|
+
color: #353c46;
|
|
8233
7783
|
word-break: break-word;
|
|
8234
7784
|
padding-bottom: 1.23077rem;
|
|
8235
7785
|
padding-right: 1.23077rem;
|
|
@@ -8247,7 +7797,7 @@ body.ReactModal__Body--open {
|
|
|
8247
7797
|
overflow-y: auto;
|
|
8248
7798
|
max-height: calc(80vh - 133px);
|
|
8249
7799
|
font-size: 0.923rem;
|
|
8250
|
-
color: #
|
|
7800
|
+
color: #353c46;
|
|
8251
7801
|
font-size: 1rem;
|
|
8252
7802
|
line-height: normal;
|
|
8253
7803
|
font-weight: 400; }
|
|
@@ -8273,7 +7823,7 @@ body.ReactModal__Body--open {
|
|
|
8273
7823
|
display: flex;
|
|
8274
7824
|
align-items: center;
|
|
8275
7825
|
justify-content: flex-end;
|
|
8276
|
-
border-top: solid 1px #
|
|
7826
|
+
border-top: solid 1px #ebedf0;
|
|
8277
7827
|
padding: 1.23077rem;
|
|
8278
7828
|
flex: 0 0 auto; }
|
|
8279
7829
|
.em-ds-modal-v2__modal-footer-actions {
|
|
@@ -8330,7 +7880,7 @@ body.ReactModal__Body--open {
|
|
|
8330
7880
|
|
|
8331
7881
|
.em-ds-modal-slide__content {
|
|
8332
7882
|
height: calc(var(--height, 100%) * 1px);
|
|
8333
|
-
background: #
|
|
7883
|
+
background: #ffffff;
|
|
8334
7884
|
-ms-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19);
|
|
8335
7885
|
-o-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19);
|
|
8336
7886
|
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19);
|
|
@@ -8340,8 +7890,8 @@ body.ReactModal__Body--open {
|
|
|
8340
7890
|
flex-direction: column;
|
|
8341
7891
|
display: flex;
|
|
8342
7892
|
overflow-y: auto;
|
|
8343
|
-
border: 1px solid #
|
|
8344
|
-
border-left: 2px solid #
|
|
7893
|
+
border: 1px solid #b0b9c8;
|
|
7894
|
+
border-left: 2px solid #b0b9c8;
|
|
8345
7895
|
animation: contentAnimationIn calc(var(--fade-in, 500) * 0.5ms) linear; }
|
|
8346
7896
|
.em-ds-modal-slide__content--disappearing {
|
|
8347
7897
|
animation: contentAnimationOut calc(var(--fade-out, 500) * 1ms) linear; }
|
|
@@ -8383,7 +7933,7 @@ body.ReactModal__Body--open {
|
|
|
8383
7933
|
justify-content: center; }
|
|
8384
7934
|
.em-ds-modal-slide__header .em-ds-modal-slide__title {
|
|
8385
7935
|
font-size: 1.3846rem;
|
|
8386
|
-
color: #
|
|
7936
|
+
color: #353c46; }
|
|
8387
7937
|
|
|
8388
7938
|
.em-ds-modal-slide__wrapper .em-ds-modal-v2__modal-wrapper {
|
|
8389
7939
|
flex: 1;
|
|
@@ -8409,12 +7959,12 @@ body.ReactModal__Body--open {
|
|
|
8409
7959
|
left: 0; }
|
|
8410
7960
|
|
|
8411
7961
|
.em-ds-menu-s {
|
|
8412
|
-
border: 1px solid #
|
|
7962
|
+
border: 1px solid #cbcfd7;
|
|
8413
7963
|
margin: 0;
|
|
8414
7964
|
display: inline-block;
|
|
8415
7965
|
padding: 0.61538rem 0;
|
|
8416
|
-
background: #
|
|
8417
|
-
color: #
|
|
7966
|
+
background: #ffffff;
|
|
7967
|
+
color: #25292f;
|
|
8418
7968
|
list-style: none;
|
|
8419
7969
|
width: 100%;
|
|
8420
7970
|
min-width: 9.84615rem;
|
|
@@ -8439,7 +7989,7 @@ body.ReactModal__Body--open {
|
|
|
8439
7989
|
display: block;
|
|
8440
7990
|
height: 1px;
|
|
8441
7991
|
width: 100%;
|
|
8442
|
-
background-color: #
|
|
7992
|
+
background-color: #e0e3e8; }
|
|
8443
7993
|
|
|
8444
7994
|
.em-ds-menu-items {
|
|
8445
7995
|
display: flex;
|
|
@@ -8463,11 +8013,11 @@ body.ReactModal__Body--open {
|
|
|
8463
8013
|
height: 16px;
|
|
8464
8014
|
width: 16px; }
|
|
8465
8015
|
.em-ds-menu-items:hover, .em-ds-menu-items--active {
|
|
8466
|
-
background-color: #
|
|
8016
|
+
background-color: #ebf6ff; }
|
|
8467
8017
|
.em-ds-menu-items .menu-item-icon {
|
|
8468
8018
|
height: 16px;
|
|
8469
8019
|
width: 16px;
|
|
8470
|
-
fill: #
|
|
8020
|
+
fill: #464f5c;
|
|
8471
8021
|
margin-right: 0.92308rem; }
|
|
8472
8022
|
.em-ds-menu-items .menu-item-icon svg {
|
|
8473
8023
|
height: 16px;
|
|
@@ -8491,14 +8041,14 @@ body.ReactModal__Body--open {
|
|
|
8491
8041
|
flex: 1; }
|
|
8492
8042
|
.em-ds-menu-items--selected {
|
|
8493
8043
|
background: #1e79c2;
|
|
8494
|
-
color: #
|
|
8044
|
+
color: #ffffff; }
|
|
8495
8045
|
.em-ds-menu-items--selected svg, .em-ds-menu-items--selected svg:not([fill]) {
|
|
8496
|
-
fill: #
|
|
8046
|
+
fill: #ffffff; }
|
|
8497
8047
|
.em-ds-menu-items:active {
|
|
8498
8048
|
background-color: #1e79c2;
|
|
8499
|
-
color: #
|
|
8049
|
+
color: #ffffff; }
|
|
8500
8050
|
.em-ds-menu-items:active svg, .em-ds-menu-items:active svg:not([fill]) {
|
|
8501
|
-
fill: #
|
|
8051
|
+
fill: #ffffff; }
|
|
8502
8052
|
|
|
8503
8053
|
.em-ds-menu-select__icon {
|
|
8504
8054
|
padding: 0 0.30769rem 0 0.30769rem; }
|
|
@@ -8517,14 +8067,14 @@ body.ReactModal__Body--open {
|
|
|
8517
8067
|
position: relative;
|
|
8518
8068
|
display: flex;
|
|
8519
8069
|
flex-direction: column;
|
|
8520
|
-
background: #
|
|
8070
|
+
background: #ffffff;
|
|
8521
8071
|
width: 100%;
|
|
8522
8072
|
height: 100%; }
|
|
8523
8073
|
.em-ds-filter-bar + .em-ds-data-grid {
|
|
8524
8074
|
height: calc(100% - 44px); }
|
|
8525
8075
|
.em-ds-data-grid .em-ds-data-grid-header {
|
|
8526
8076
|
overflow: hidden;
|
|
8527
|
-
border-bottom: 0.07692rem solid #
|
|
8077
|
+
border-bottom: 0.07692rem solid #cbcfd7; }
|
|
8528
8078
|
.em-ds-data-grid .em-ds-data-grid-header__row {
|
|
8529
8079
|
margin-left: 3px;
|
|
8530
8080
|
display: flex; }
|
|
@@ -8563,16 +8113,16 @@ _:-ms-fullscreen,
|
|
|
8563
8113
|
line-height: normal;
|
|
8564
8114
|
font-weight: 600;
|
|
8565
8115
|
text-transform: uppercase;
|
|
8566
|
-
background-color: #
|
|
8116
|
+
background-color: #ffffff;
|
|
8567
8117
|
flex: 1 1 0%;
|
|
8568
8118
|
display: flex;
|
|
8569
8119
|
align-items: center;
|
|
8570
8120
|
font-size: 0.923rem;
|
|
8571
8121
|
text-align: left;
|
|
8572
|
-
border-right: 0.07692rem solid #
|
|
8122
|
+
border-right: 0.07692rem solid #ebedf0;
|
|
8573
8123
|
box-sizing: border-box;
|
|
8574
8124
|
padding: 0 0.61538rem;
|
|
8575
|
-
color: #
|
|
8125
|
+
color: #353c46;
|
|
8576
8126
|
min-height: 1.84615rem;
|
|
8577
8127
|
height: auto; }
|
|
8578
8128
|
.em-ds-data-grid-header__cell.em-ds-data-grid-header__cell--wrapText {
|
|
@@ -8639,10 +8189,10 @@ _:-ms-fullscreen,
|
|
|
8639
8189
|
display: none !important; }
|
|
8640
8190
|
|
|
8641
8191
|
.em-ds-data-grid-body__row {
|
|
8642
|
-
color: #
|
|
8192
|
+
color: #353c46;
|
|
8643
8193
|
display: flex;
|
|
8644
8194
|
position: relative;
|
|
8645
|
-
background-color: #
|
|
8195
|
+
background-color: #ffffff;
|
|
8646
8196
|
margin-left: 2px;
|
|
8647
8197
|
margin-right: 0.30769rem;
|
|
8648
8198
|
width: 100%;
|
|
@@ -8653,7 +8203,7 @@ _:-ms-fullscreen,
|
|
|
8653
8203
|
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
8654
8204
|
z-index: 1; }
|
|
8655
8205
|
.em-ds-data-grid-body__row:not(:last-child) {
|
|
8656
|
-
border-bottom: 0.07692rem solid #
|
|
8206
|
+
border-bottom: 0.07692rem solid #ebedf0; }
|
|
8657
8207
|
.em-ds-data-grid-body__row:last-child {
|
|
8658
8208
|
margin-bottom: 0.61538rem; }
|
|
8659
8209
|
.em-ds-data-grid-body__row:hover:not(.expanded-row), .em-ds-data-grid-body__row[aria-expanded="true"] {
|
|
@@ -8757,7 +8307,7 @@ _:-ms-fullscreen,
|
|
|
8757
8307
|
user-select: none; }
|
|
8758
8308
|
|
|
8759
8309
|
.em-ds-data-grid .em-ds-data-grid-body__row.select-highlight {
|
|
8760
|
-
background-color: #
|
|
8310
|
+
background-color: #f6fbff; }
|
|
8761
8311
|
|
|
8762
8312
|
.em-ds-data-grid-body__row .em-ds-form-element-radio,
|
|
8763
8313
|
.em-ds-data-grid-body__row .em-ds-form-element-checkbox,
|
|
@@ -8783,8 +8333,8 @@ _:-ms-fullscreen,
|
|
|
8783
8333
|
|
|
8784
8334
|
.em-ds-data-grid .toolbar-trigger {
|
|
8785
8335
|
order: 3;
|
|
8786
|
-
border-left: 1px solid #
|
|
8787
|
-
border-right: 1px solid #
|
|
8336
|
+
border-left: 1px solid #e0e3e8;
|
|
8337
|
+
border-right: 1px solid #e0e3e8;
|
|
8788
8338
|
background-color: white; }
|
|
8789
8339
|
.em-ds-data-grid .toolbar-trigger span {
|
|
8790
8340
|
fill: #697489; }
|
|
@@ -8902,7 +8452,7 @@ _:-ms-fullscreen,
|
|
|
8902
8452
|
position: relative;
|
|
8903
8453
|
right: -8px;
|
|
8904
8454
|
margin-bottom: -1px;
|
|
8905
|
-
border-right: 1px solid #
|
|
8455
|
+
border-right: 1px solid #e0e3e8; }
|
|
8906
8456
|
|
|
8907
8457
|
.em-ds-data-grid-sort-header {
|
|
8908
8458
|
cursor: pointer;
|
|
@@ -8944,7 +8494,7 @@ _:-ms-fullscreen,
|
|
|
8944
8494
|
justify-content: flex-end;
|
|
8945
8495
|
align-items: center; }
|
|
8946
8496
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination .button-disabled span {
|
|
8947
|
-
color: #
|
|
8497
|
+
color: #8c93a6;
|
|
8948
8498
|
cursor: not-allowed;
|
|
8949
8499
|
pointer-events: none; }
|
|
8950
8500
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination span {
|
|
@@ -8952,8 +8502,8 @@ _:-ms-fullscreen,
|
|
|
8952
8502
|
line-height: normal;
|
|
8953
8503
|
font-weight: 600;
|
|
8954
8504
|
color: #1e79c2;
|
|
8955
|
-
background-color: #
|
|
8956
|
-
border: solid 1px #
|
|
8505
|
+
background-color: #ffffff;
|
|
8506
|
+
border: solid 1px #8c93a6;
|
|
8957
8507
|
display: inline-flex;
|
|
8958
8508
|
box-sizing: border-box;
|
|
8959
8509
|
padding: 0.30769rem 0.61538rem;
|
|
@@ -8965,22 +8515,22 @@ _:-ms-fullscreen,
|
|
|
8965
8515
|
margin-right: 0.30769rem;
|
|
8966
8516
|
cursor: pointer; }
|
|
8967
8517
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination span:hover:not([disabled]) {
|
|
8968
|
-
border: solid 1px #
|
|
8518
|
+
border: solid 1px #1394e5; }
|
|
8969
8519
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination span:active {
|
|
8970
|
-
color: #
|
|
8971
|
-
border: solid 1px #
|
|
8520
|
+
color: #006aa9;
|
|
8521
|
+
border: solid 1px #006aa9; }
|
|
8972
8522
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination div:first-child {
|
|
8973
8523
|
margin-right: 0.36923rem; }
|
|
8974
8524
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination div:last-child {
|
|
8975
8525
|
margin-left: 0.36923rem; }
|
|
8976
8526
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination .selected span {
|
|
8977
|
-
color: #
|
|
8527
|
+
color: #ffffff;
|
|
8978
8528
|
background-color: #1e79c2;
|
|
8979
|
-
border: solid 1px #
|
|
8529
|
+
border: solid 1px #006aa9; }
|
|
8980
8530
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination .selected span:hover:not([disabled]) {
|
|
8981
|
-
background-color: #
|
|
8531
|
+
background-color: #1394e5; }
|
|
8982
8532
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination .selected span:active {
|
|
8983
|
-
background-color: #
|
|
8533
|
+
background-color: #006aa9; }
|
|
8984
8534
|
.em-ds-data-grid__pagination .em-ds-data-grid__pagify-pagination .ellipsis {
|
|
8985
8535
|
margin-right: 0.61538rem; }
|
|
8986
8536
|
|
|
@@ -9079,7 +8629,7 @@ _:-ms-fullscreen,
|
|
|
9079
8629
|
font-size: 1rem;
|
|
9080
8630
|
line-height: normal;
|
|
9081
8631
|
font-weight: 600;
|
|
9082
|
-
color: #
|
|
8632
|
+
color: #353c46; }
|
|
9083
8633
|
.em-ds-data-grid-expandable-column__description {
|
|
9084
8634
|
font-size: 0.8461rem;
|
|
9085
8635
|
line-height: normal;
|
|
@@ -9140,9 +8690,9 @@ _:-ms-fullscreen,
|
|
|
9140
8690
|
min-height: 0; }
|
|
9141
8691
|
|
|
9142
8692
|
.em-ds-data-grid-body.expandable .expandable-row:not(.expanded) {
|
|
9143
|
-
background-color: #
|
|
8693
|
+
background-color: #f6f7f9; }
|
|
9144
8694
|
.em-ds-data-grid-body.expandable .expandable-row:not(.expanded) > .em-ds-data-grid-body__cell {
|
|
9145
|
-
background-color: #
|
|
8695
|
+
background-color: #f6f7f9; }
|
|
9146
8696
|
|
|
9147
8697
|
_:-ms-fullscreen,
|
|
9148
8698
|
:root .em-ds-data-grid-body.expandable .em-ds-data-grid-expanded-row-details-wrapper--ie-flex-basis-auto {
|
|
@@ -9175,24 +8725,24 @@ _:-ms-fullscreen,
|
|
|
9175
8725
|
padding: 0; }
|
|
9176
8726
|
|
|
9177
8727
|
.icc-success {
|
|
9178
|
-
color: #
|
|
8728
|
+
color: #207e56; }
|
|
9179
8729
|
|
|
9180
8730
|
.icc-danger {
|
|
9181
|
-
color: #
|
|
8731
|
+
color: #c64252; }
|
|
9182
8732
|
|
|
9183
8733
|
.icc-warning {
|
|
9184
|
-
color: #
|
|
8734
|
+
color: #d17a00; }
|
|
9185
8735
|
|
|
9186
8736
|
.icc-info {
|
|
9187
8737
|
color: #1e79c2; }
|
|
9188
8738
|
|
|
9189
8739
|
.em-ds-data-grid-group-row-header {
|
|
9190
8740
|
min-height: 24px;
|
|
9191
|
-
background-color: #
|
|
8741
|
+
background-color: #ebf6ff;
|
|
9192
8742
|
display: flex;
|
|
9193
8743
|
align-items: center;
|
|
9194
8744
|
padding: 0 0.61538rem;
|
|
9195
|
-
border-top: solid 1px #
|
|
8745
|
+
border-top: solid 1px #1394e5; }
|
|
9196
8746
|
.em-ds-data-grid-group-row-header__title {
|
|
9197
8747
|
font-weight: 600;
|
|
9198
8748
|
font-size: 12px; }
|
|
@@ -9201,11 +8751,11 @@ body > .em-ds-tree-item {
|
|
|
9201
8751
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5); }
|
|
9202
8752
|
|
|
9203
8753
|
.em-ds-tree-item {
|
|
9204
|
-
color: #
|
|
8754
|
+
color: #25292f;
|
|
9205
8755
|
display: flex;
|
|
9206
8756
|
align-items: center;
|
|
9207
8757
|
position: relative;
|
|
9208
|
-
background-color: #
|
|
8758
|
+
background-color: #ffffff;
|
|
9209
8759
|
padding: 0 0.30769rem;
|
|
9210
8760
|
min-height: 36px; }
|
|
9211
8761
|
.em-ds-tree-item--fixed-height {
|
|
@@ -9234,15 +8784,15 @@ body > .em-ds-tree-item {
|
|
|
9234
8784
|
.em-ds-tree-item--invalid-drop-before {
|
|
9235
8785
|
border-top-width: 2px;
|
|
9236
8786
|
border-top-style: solid;
|
|
9237
|
-
border-top-color: #
|
|
8787
|
+
border-top-color: #c64252; }
|
|
9238
8788
|
.em-ds-tree-item--invalid-drop-in {
|
|
9239
8789
|
border-width: 2px;
|
|
9240
8790
|
border-style: solid;
|
|
9241
|
-
border-color: #
|
|
8791
|
+
border-color: #c64252; }
|
|
9242
8792
|
.em-ds-tree-item--invalid-drop-after {
|
|
9243
8793
|
border-bottom-width: 2px;
|
|
9244
8794
|
border-bottom-style: solid;
|
|
9245
|
-
border-bottom-color: #
|
|
8795
|
+
border-bottom-color: #c64252; }
|
|
9246
8796
|
.em-ds-tree-item .em-ds-tree-item__value {
|
|
9247
8797
|
min-width: 0;
|
|
9248
8798
|
width: 100%;
|
|
@@ -9261,7 +8811,7 @@ body > .em-ds-tree-item {
|
|
|
9261
8811
|
.em-ds-tree-item__addons .em-ds-icon {
|
|
9262
8812
|
fill: #005181; }
|
|
9263
8813
|
.em-ds-tree-item.selected {
|
|
9264
|
-
background-color: #
|
|
8814
|
+
background-color: #ebf6ff; }
|
|
9265
8815
|
.em-ds-tree-item .drag-handle {
|
|
9266
8816
|
transition: 100ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
9267
8817
|
align-items: center;
|
|
@@ -9294,11 +8844,11 @@ body > .em-ds-tree-item {
|
|
|
9294
8844
|
.em-ds-tree-item .tree-item-radio {
|
|
9295
8845
|
padding-bottom: 0; }
|
|
9296
8846
|
.em-ds-tree-item.hover {
|
|
9297
|
-
background-color: #
|
|
8847
|
+
background-color: #ebedf0; }
|
|
9298
8848
|
.em-ds-tree-item.hover .drag-handle {
|
|
9299
8849
|
fill: #005181; }
|
|
9300
8850
|
.em-ds-tree-item.hover.selected {
|
|
9301
|
-
background-color: #
|
|
8851
|
+
background-color: #ebf6ff; }
|
|
9302
8852
|
.em-ds-tree-item:focus {
|
|
9303
8853
|
outline: none;
|
|
9304
8854
|
box-shadow: unset;
|
|
@@ -9342,14 +8892,14 @@ body > .em-ds-tree-item {
|
|
|
9342
8892
|
|
|
9343
8893
|
.tree-text-highlight {
|
|
9344
8894
|
font-weight: bold;
|
|
9345
|
-
background-color: #
|
|
8895
|
+
background-color: #fbb431; }
|
|
9346
8896
|
|
|
9347
8897
|
.em-ds-query-builder-row {
|
|
9348
8898
|
display: grid;
|
|
9349
8899
|
height: 2.46154rem;
|
|
9350
8900
|
width: 100%; }
|
|
9351
8901
|
.em-ds-query-builder-row.has-open-tooltip, .em-ds-query-builder-row:hover {
|
|
9352
|
-
background: #
|
|
8902
|
+
background: #ffffff; }
|
|
9353
8903
|
.em-ds-query-builder-row.has-open-tooltip::after {
|
|
9354
8904
|
content: '';
|
|
9355
8905
|
display: block;
|
|
@@ -9391,7 +8941,7 @@ body > .em-ds-tree-item {
|
|
|
9391
8941
|
display: block;
|
|
9392
8942
|
content: '';
|
|
9393
8943
|
position: absolute;
|
|
9394
|
-
border: solid 1px #
|
|
8944
|
+
border: solid 1px #c64252;
|
|
9395
8945
|
height: 100%;
|
|
9396
8946
|
width: 100%;
|
|
9397
8947
|
top: 0;
|
|
@@ -9414,7 +8964,7 @@ body > .em-ds-tree-item {
|
|
|
9414
8964
|
-ms-box-shadow: 0 1px 2px 0 rgba(105, 116, 137, 0.5);
|
|
9415
8965
|
-o-box-shadow: 0 1px 2px 0 rgba(105, 116, 137, 0.5);
|
|
9416
8966
|
box-shadow: 0 1px 2px 0 rgba(105, 116, 137, 0.5);
|
|
9417
|
-
background: #
|
|
8967
|
+
background: #ffffff; }
|
|
9418
8968
|
.em-ds-query-builder-row__input-controller {
|
|
9419
8969
|
width: 100%;
|
|
9420
8970
|
height: 2.46154rem; }
|
|
@@ -9455,15 +9005,15 @@ body > .em-ds-tree-item {
|
|
|
9455
9005
|
border-radius: 0; }
|
|
9456
9006
|
|
|
9457
9007
|
.em-ds-query-builder-row-input {
|
|
9458
|
-
border-right: solid calc(0.30769rem * 0.5) #
|
|
9008
|
+
border-right: solid calc(0.30769rem * 0.5) #ebedf0; }
|
|
9459
9009
|
.em-ds-query-builder-row-input.child-type-value {
|
|
9460
9010
|
border: none; }
|
|
9461
9011
|
|
|
9462
9012
|
.em-ds-query-builder-row__drag-controller {
|
|
9463
|
-
border-right: solid calc(0.30769rem * 0.5) #
|
|
9013
|
+
border-right: solid calc(0.30769rem * 0.5) #ebedf0; }
|
|
9464
9014
|
|
|
9465
9015
|
.em-ds-query-builder-row-controller {
|
|
9466
|
-
border-left: solid calc(0.30769rem * 0.5) #
|
|
9016
|
+
border-left: solid calc(0.30769rem * 0.5) #ebedf0; }
|
|
9467
9017
|
|
|
9468
9018
|
.em-ds-query-builder-condition-controller {
|
|
9469
9019
|
position: relative; }
|
|
@@ -9471,7 +9021,7 @@ body > .em-ds-tree-item {
|
|
|
9471
9021
|
fill: #005181; }
|
|
9472
9022
|
|
|
9473
9023
|
.em-ds-query-builder-condition-controller-actions {
|
|
9474
|
-
background: #
|
|
9024
|
+
background: #ffffff;
|
|
9475
9025
|
display: flex;
|
|
9476
9026
|
flex-direction: row;
|
|
9477
9027
|
height: 2.46154rem; }
|
|
@@ -9482,7 +9032,7 @@ body > .em-ds-tree-item {
|
|
|
9482
9032
|
margin: 0;
|
|
9483
9033
|
height: 2.46154rem;
|
|
9484
9034
|
width: 2.46154rem;
|
|
9485
|
-
border-right: solid calc(0.30769rem * 0.5) #
|
|
9035
|
+
border-right: solid calc(0.30769rem * 0.5) #ebedf0;
|
|
9486
9036
|
padding: 0.30769rem 0.61538rem; }
|
|
9487
9037
|
.em-ds-query-builder-condition-controller-actions .em-ds-icon-button.no-border-right {
|
|
9488
9038
|
border-right: none; }
|
|
@@ -9495,7 +9045,7 @@ body > .em-ds-tree-item {
|
|
|
9495
9045
|
.em-ds-query-builder-condition-controller__add-rule,
|
|
9496
9046
|
.em-ds-query-builder-condition-controller__remove-rule {
|
|
9497
9047
|
height: 2.46154rem;
|
|
9498
|
-
border-right: solid 0.07692rem #
|
|
9048
|
+
border-right: solid 0.07692rem #f6f7f9; }
|
|
9499
9049
|
.em-ds-query-builder-condition-controller__add-rule-container .em-ds-icon,
|
|
9500
9050
|
.em-ds-query-builder-condition-controller__add-rule .em-ds-icon,
|
|
9501
9051
|
.em-ds-query-builder-condition-controller__remove-rule .em-ds-icon {
|
|
@@ -9523,10 +9073,10 @@ body > .em-ds-tree-item {
|
|
|
9523
9073
|
opacity: 1; }
|
|
9524
9074
|
|
|
9525
9075
|
.em-ds-query-builder-and-or-controller--default {
|
|
9526
|
-
background: #
|
|
9076
|
+
background: #fbb431; }
|
|
9527
9077
|
|
|
9528
9078
|
.em-ds-query-builder-and-or-controller--active {
|
|
9529
|
-
background: #
|
|
9079
|
+
background: #a3d6ff; }
|
|
9530
9080
|
|
|
9531
9081
|
.em-ds-query-builder-and-or-controller-content {
|
|
9532
9082
|
position: relative;
|
|
@@ -9560,7 +9110,7 @@ body > .em-ds-tree-item {
|
|
|
9560
9110
|
opacity: 1; }
|
|
9561
9111
|
|
|
9562
9112
|
.em-ds-query-builder-and-or-controller-actions {
|
|
9563
|
-
background: #
|
|
9113
|
+
background: #ffffff;
|
|
9564
9114
|
display: flex;
|
|
9565
9115
|
flex-direction: row;
|
|
9566
9116
|
align-items: center;
|
|
@@ -9571,17 +9121,17 @@ body > .em-ds-tree-item {
|
|
|
9571
9121
|
margin: 0;
|
|
9572
9122
|
height: 2.46154rem;
|
|
9573
9123
|
width: 2.46154rem;
|
|
9574
|
-
border-right: solid 0.07692rem #
|
|
9124
|
+
border-right: solid 0.07692rem #f6f7f9;
|
|
9575
9125
|
padding: 0.30769rem 0.61538rem; }
|
|
9576
9126
|
.em-ds-query-builder-and-or-controller-actions .em-ds-form-element-toggle {
|
|
9577
9127
|
margin: 0 0.61538rem;
|
|
9578
|
-
border-right: solid 0.07692rem #
|
|
9128
|
+
border-right: solid 0.07692rem #f6f7f9; }
|
|
9579
9129
|
.em-ds-query-builder-and-or-controller-actions .em-ds-icon {
|
|
9580
9130
|
fill: #005181; }
|
|
9581
9131
|
|
|
9582
9132
|
.em-ds-query-builder-and-or-controller__add-rule-container {
|
|
9583
9133
|
height: 2.46154rem;
|
|
9584
|
-
border-right: solid 0.07692rem #
|
|
9134
|
+
border-right: solid 0.07692rem #f6f7f9; }
|
|
9585
9135
|
.em-ds-query-builder-and-or-controller__add-rule-container .em-ds-icon--s {
|
|
9586
9136
|
height: calc(1.23077rem * 0.8);
|
|
9587
9137
|
width: calc(1.23077rem * 0.8); }
|
|
@@ -9592,7 +9142,7 @@ body > .em-ds-tree-item {
|
|
|
9592
9142
|
text-align: center; }
|
|
9593
9143
|
.em-ds-query-builder-and-or-controller__condition-display > .separator {
|
|
9594
9144
|
margin: 0.30769rem auto;
|
|
9595
|
-
background: #
|
|
9145
|
+
background: #e0e3e8;
|
|
9596
9146
|
height: 1px;
|
|
9597
9147
|
width: 50%; }
|
|
9598
9148
|
|
|
@@ -9601,7 +9151,7 @@ body > .em-ds-tree-item {
|
|
|
9601
9151
|
display: inline-block; }
|
|
9602
9152
|
|
|
9603
9153
|
.em-ds-query-builder-and-or-controller__condition-separator {
|
|
9604
|
-
border-bottom: solid calc(0.30769rem * 0.25) #
|
|
9154
|
+
border-bottom: solid calc(0.30769rem * 0.25) #353c46;
|
|
9605
9155
|
margin: 0.30769rem;
|
|
9606
9156
|
width: 50%; }
|
|
9607
9157
|
|
|
@@ -9622,7 +9172,7 @@ body > .em-ds-tree-item {
|
|
|
9622
9172
|
bottom: 0.30769rem; }
|
|
9623
9173
|
.em-ds-query-builder-drag-group .separator {
|
|
9624
9174
|
margin: 0.30769rem 0;
|
|
9625
|
-
background: #
|
|
9175
|
+
background: #e0e3e8;
|
|
9626
9176
|
height: 1px;
|
|
9627
9177
|
width: 80%; }
|
|
9628
9178
|
|
|
@@ -9659,10 +9209,10 @@ body > .em-ds-tree-item {
|
|
|
9659
9209
|
margin-bottom: 0; }
|
|
9660
9210
|
|
|
9661
9211
|
.nestable-item > .nestable-list.nestable-child-count-single .is-or-filter .nestable-item-name--filter {
|
|
9662
|
-
background: #
|
|
9212
|
+
background: #fbb431; }
|
|
9663
9213
|
|
|
9664
9214
|
.nestable-item > .nestable-list.nestable-child-count-single .is-and-filter .nestable-item-name--filter {
|
|
9665
|
-
background: #
|
|
9215
|
+
background: #a3d6ff; }
|
|
9666
9216
|
|
|
9667
9217
|
.nestable-item > .nestable-list.nestable-child-count-single .nestable-item-name--filter {
|
|
9668
9218
|
padding: 1px;
|
|
@@ -9672,10 +9222,10 @@ body > .em-ds-tree-item {
|
|
|
9672
9222
|
box-shadow: -1px 1px 1px 0 rgba(105, 116, 137, 0.5); }
|
|
9673
9223
|
|
|
9674
9224
|
.nested-main-group > .nestable > .nestable-child-count-single .is-or-filter .nestable-item-name--filter {
|
|
9675
|
-
background: #
|
|
9225
|
+
background: #fbb431; }
|
|
9676
9226
|
|
|
9677
9227
|
.nested-main-group > .nestable > .nestable-child-count-single .is-and-filter .nestable-item-name--filter {
|
|
9678
|
-
background: #
|
|
9228
|
+
background: #a3d6ff; }
|
|
9679
9229
|
|
|
9680
9230
|
.nested-main-group > .nestable > .nestable-child-count-single .nestable-item-name--filter {
|
|
9681
9231
|
padding: 1px;
|
|
@@ -9726,11 +9276,11 @@ body > .em-ds-tree-item {
|
|
|
9726
9276
|
left: 0;
|
|
9727
9277
|
right: 0;
|
|
9728
9278
|
bottom: 0;
|
|
9729
|
-
background: #
|
|
9279
|
+
background: #a3d6ff; }
|
|
9730
9280
|
|
|
9731
9281
|
.nestable-item-type-group.is-or-group .nestable-item.is-dragging:before,
|
|
9732
9282
|
.nested-main-group.is-or-group .nestable-item.is-dragging:before {
|
|
9733
|
-
background: #
|
|
9283
|
+
background: #fbb431; }
|
|
9734
9284
|
|
|
9735
9285
|
.nestable-item-icon {
|
|
9736
9286
|
margin-right: 5px;
|
|
@@ -9761,27 +9311,27 @@ body > .em-ds-tree-item {
|
|
|
9761
9311
|
top: 40%;
|
|
9762
9312
|
height: 0.30769rem;
|
|
9763
9313
|
width: 0.61538rem;
|
|
9764
|
-
background: #
|
|
9314
|
+
background: #a3d6ff;
|
|
9765
9315
|
z-index: -1; }
|
|
9766
9316
|
|
|
9767
9317
|
.nestable-item-type-group.is-or-group .nestable-item-type-group:after,
|
|
9768
9318
|
.nested-main-group.is-or-group .nestable-item-type-group:after {
|
|
9769
|
-
background: #
|
|
9319
|
+
background: #fbb431; }
|
|
9770
9320
|
|
|
9771
9321
|
.nestable-item-type-group.is-and-group .nestable-item-type-group:after,
|
|
9772
9322
|
.nested-main-group.is-and-group .nestable-item-type-group:after {
|
|
9773
|
-
background: #
|
|
9323
|
+
background: #a3d6ff; }
|
|
9774
9324
|
|
|
9775
9325
|
.nestable-list.nestable-child-count-multiple > .nestable-item-name--filter {
|
|
9776
9326
|
padding-bottom: 0; }
|
|
9777
9327
|
|
|
9778
9328
|
.nestable-list.nestable-child-count-multiple .nestable-item.nestable-item-type-filter.is-or-filter {
|
|
9779
|
-
background: #
|
|
9329
|
+
background: #fbb431;
|
|
9780
9330
|
padding: calc(0.30769rem * 0.5);
|
|
9781
9331
|
padding-bottom: 0.30769rem; }
|
|
9782
9332
|
|
|
9783
9333
|
.nestable-list.nestable-child-count-multiple .nestable-item.nestable-item-type-filter.is-and-filter {
|
|
9784
|
-
background: #
|
|
9334
|
+
background: #a3d6ff;
|
|
9785
9335
|
padding: calc(0.30769rem * 0.5);
|
|
9786
9336
|
padding-bottom: 0.30769rem; }
|
|
9787
9337
|
|
|
@@ -9802,7 +9352,7 @@ body > .em-ds-tree-item {
|
|
|
9802
9352
|
.em-ds-query-builder-output .em-ds-accordion-item:last-child {
|
|
9803
9353
|
border: none; }
|
|
9804
9354
|
.em-ds-query-builder-output .em-ds-accordion-item__title {
|
|
9805
|
-
color: #
|
|
9355
|
+
color: #006aa9; }
|
|
9806
9356
|
.em-ds-query-builder-output .em-ds-accordion-item__title h2 {
|
|
9807
9357
|
font-size: 1rem;
|
|
9808
9358
|
line-height: normal;
|
|
@@ -9828,7 +9378,7 @@ body > .em-ds-tree-item {
|
|
|
9828
9378
|
background: none; }
|
|
9829
9379
|
|
|
9830
9380
|
.em-ds-query-builder-addon-search-field__btn-selector--btn-placeholder {
|
|
9831
|
-
color: #
|
|
9381
|
+
color: #e0e3e8;
|
|
9832
9382
|
font-style: italic; }
|
|
9833
9383
|
|
|
9834
9384
|
.em-ds-query-builder-addon-search-field__dropdown-field-selector {
|
|
@@ -9839,7 +9389,7 @@ body > .em-ds-tree-item {
|
|
|
9839
9389
|
width: 100%; }
|
|
9840
9390
|
|
|
9841
9391
|
.advanced-search-option {
|
|
9842
|
-
border-top: solid 1px #
|
|
9392
|
+
border-top: solid 1px #e0e3e8; }
|
|
9843
9393
|
|
|
9844
9394
|
.modal-search-field .datagrid-tab-content {
|
|
9845
9395
|
height: calc(100vh - 19.69231rem); }
|
|
@@ -9869,7 +9419,7 @@ body > .em-ds-tree-item {
|
|
|
9869
9419
|
|
|
9870
9420
|
.em-ds-date-time-predefined-range-selector hr {
|
|
9871
9421
|
margin: 1.23077rem 0;
|
|
9872
|
-
border: solid 0.03846rem #
|
|
9422
|
+
border: solid 0.03846rem #e0e3e8; }
|
|
9873
9423
|
|
|
9874
9424
|
.em-ds-date-time-predefined-range-selector .SingleDatePickerInput,
|
|
9875
9425
|
.em-ds-date-time-predefined-range-selector .em-ds-input-addon-group,
|
|
@@ -9971,9 +9521,9 @@ body > .em-ds-tree-item {
|
|
|
9971
9521
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button[aria-checked="true"],
|
|
9972
9522
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button[aria-checked="true"],
|
|
9973
9523
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button[aria-checked="true"] {
|
|
9974
|
-
color: #
|
|
9524
|
+
color: #ffffff;
|
|
9975
9525
|
background-color: #1e79c2;
|
|
9976
|
-
border: solid 1px #
|
|
9526
|
+
border: solid 1px #006aa9; }
|
|
9977
9527
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-radio__label-text,
|
|
9978
9528
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-checkbox__label-text,
|
|
9979
9529
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-radio__label-text,
|
|
@@ -9982,7 +9532,7 @@ body > .em-ds-tree-item {
|
|
|
9982
9532
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-checkbox__label-text,
|
|
9983
9533
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-radio__label-text,
|
|
9984
9534
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button[aria-checked="true"] + .em-ds-form-element-checkbox__label-text {
|
|
9985
|
-
color: #
|
|
9535
|
+
color: #ffffff; }
|
|
9986
9536
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button:focus, .em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input-button.em-ds-button--variant-focus,
|
|
9987
9537
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button:focus,
|
|
9988
9538
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input-button.em-ds-button--variant-focus,
|
|
@@ -10011,9 +9561,9 @@ body > .em-ds-tree-item {
|
|
|
10011
9561
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-radio__input:checked + .em-ds-form-element-checkbox__input-button,
|
|
10012
9562
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input:checked + .em-ds-form-element-radio__input-button,
|
|
10013
9563
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input:checked + .em-ds-form-element-checkbox__input-button {
|
|
10014
|
-
color: #
|
|
9564
|
+
color: #ffffff;
|
|
10015
9565
|
background-color: #1e79c2;
|
|
10016
|
-
border: solid 1px #
|
|
9566
|
+
border: solid 1px #006aa9; }
|
|
10017
9567
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button + .em-ds-form-element-radio__label-text,
|
|
10018
9568
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-radio__input:checked + .em-ds-form-element-radio__input-button + .em-ds-form-element-checkbox__label-text,
|
|
10019
9569
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-radio__input:checked + .em-ds-form-element-checkbox__input-button + .em-ds-form-element-radio__label-text,
|
|
@@ -10046,7 +9596,7 @@ body > .em-ds-tree-item {
|
|
|
10046
9596
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input:checked + .em-ds-form-element-radio__input-button + .em-ds-form-element-checkbox__label-text,
|
|
10047
9597
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input:checked + .em-ds-form-element-checkbox__input-button + .em-ds-form-element-radio__label-text,
|
|
10048
9598
|
.em-ds-week-days-week-days-picker .em-ds-checkbox-group .em-ds-form-element-checkbox .em-ds-form-element-checkbox__input:checked + .em-ds-form-element-checkbox__input-button + .em-ds-form-element-checkbox__label-text {
|
|
10049
|
-
color: #
|
|
9599
|
+
color: #ffffff; }
|
|
10050
9600
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-radio__input:focus, .em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-radio__input.em-ds-button--variant-focus,
|
|
10051
9601
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input:focus,
|
|
10052
9602
|
.em-ds-week-days-week-days-picker .em-ds-radio-group .em-ds-form-element-radio .em-ds-form-element-checkbox__input.em-ds-button--variant-focus,
|
|
@@ -10079,7 +9629,7 @@ body > .em-ds-tree-item {
|
|
|
10079
9629
|
width: 2.95385rem;
|
|
10080
9630
|
height: 2.95385rem;
|
|
10081
9631
|
margin-right: 0.61538rem;
|
|
10082
|
-
background: #
|
|
9632
|
+
background: #e0e3e8;
|
|
10083
9633
|
border: none;
|
|
10084
9634
|
display: inline-flex;
|
|
10085
9635
|
justify-content: center;
|
|
@@ -10181,7 +9731,7 @@ body > .em-ds-tree-item {
|
|
|
10181
9731
|
line-height: 2.46154rem;
|
|
10182
9732
|
padding-left: 0.30769rem;
|
|
10183
9733
|
padding-right: 0.30769rem;
|
|
10184
|
-
color: #
|
|
9734
|
+
color: #cbcfd7; }
|
|
10185
9735
|
|
|
10186
9736
|
.SingleDatePickerInput {
|
|
10187
9737
|
border: none;
|
|
@@ -10260,7 +9810,7 @@ body > .em-ds-tree-item {
|
|
|
10260
9810
|
.em-ds-date-range-picker__header .em-ds-input-addon-group {
|
|
10261
9811
|
width: 100%; }
|
|
10262
9812
|
.em-ds-date-range-picker__header--invalidDate .em-ds-input-addon-group .em-ds-input {
|
|
10263
|
-
border: solid 1px #
|
|
9813
|
+
border: solid 1px #c64252; }
|
|
10264
9814
|
|
|
10265
9815
|
.em-ds-date-switcher__header {
|
|
10266
9816
|
display: flex;
|
|
@@ -10285,7 +9835,7 @@ body > .em-ds-tree-item {
|
|
|
10285
9835
|
.DateInput_input {
|
|
10286
9836
|
border-radius: calc(0.30769rem * 0.5) 0 0 calc(0.30769rem * 0.5);
|
|
10287
9837
|
transition: border 200ms cubic-bezier(0.64, 0, 0.35, 1);
|
|
10288
|
-
border: solid 1px #
|
|
9838
|
+
border: solid 1px #cbcfd7;
|
|
10289
9839
|
border-right: none;
|
|
10290
9840
|
height: calc(1.84615rem * 1.16666);
|
|
10291
9841
|
padding: 0 0.61538rem;
|
|
@@ -10294,8 +9844,8 @@ body > .em-ds-tree-item {
|
|
|
10294
9844
|
.DateInput_input:focus, .DateInput_input:hover {
|
|
10295
9845
|
border-color: #1e79c2; }
|
|
10296
9846
|
.DateInput_input:active {
|
|
10297
|
-
border-color: #
|
|
10298
|
-
color: #
|
|
9847
|
+
border-color: #006aa9;
|
|
9848
|
+
color: #25292f; }
|
|
10299
9849
|
.DateInput_input::-webkit-input-placeholder {
|
|
10300
9850
|
color: #697489;
|
|
10301
9851
|
font-style: italic; }
|
|
@@ -10310,15 +9860,15 @@ body > .em-ds-tree-item {
|
|
|
10310
9860
|
font-style: italic; }
|
|
10311
9861
|
|
|
10312
9862
|
.DateInput_input__disabled {
|
|
10313
|
-
background: #
|
|
9863
|
+
background: #ffffff;
|
|
10314
9864
|
pointer-events: none;
|
|
10315
|
-
border-color: #
|
|
9865
|
+
border-color: #e0e3e8;
|
|
10316
9866
|
color: #697489;
|
|
10317
9867
|
cursor: not-allowed; }
|
|
10318
9868
|
.DateInput_input__disabled:focus, .DateInput_input__disabled:hover {
|
|
10319
|
-
border-color: #
|
|
9869
|
+
border-color: #e0e3e8; }
|
|
10320
9870
|
.DateInput_input__disabled:active {
|
|
10321
|
-
border-color: #
|
|
9871
|
+
border-color: #e0e3e8; }
|
|
10322
9872
|
|
|
10323
9873
|
.em-ds-datepicker {
|
|
10324
9874
|
z-index: 0; }
|
|
@@ -10335,7 +9885,7 @@ body > .em-ds-tree-item {
|
|
|
10335
9885
|
.em-ds-date-range-selector-wrap-day-picker .CalendarMonth,
|
|
10336
9886
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarMonth,
|
|
10337
9887
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarMonth {
|
|
10338
|
-
background: #
|
|
9888
|
+
background: #f6f7f9; }
|
|
10339
9889
|
|
|
10340
9890
|
.em-ds-datepicker .CalendarDay__default,
|
|
10341
9891
|
.em-ds-datepicker .CalendarDay__selected,
|
|
@@ -10357,7 +9907,7 @@ body > .em-ds-tree-item {
|
|
|
10357
9907
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected,
|
|
10358
9908
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected:active,
|
|
10359
9909
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover {
|
|
10360
|
-
background: #
|
|
9910
|
+
background: #ffffff;
|
|
10361
9911
|
text-align: center;
|
|
10362
9912
|
border: none; }
|
|
10363
9913
|
.em-ds-datepicker .CalendarDay__default:focus,
|
|
@@ -10392,7 +9942,7 @@ body > .em-ds-tree-item {
|
|
|
10392
9942
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:focus,
|
|
10393
9943
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__default:hover,
|
|
10394
9944
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__default:focus {
|
|
10395
|
-
background: #
|
|
9945
|
+
background: #ffffff;
|
|
10396
9946
|
border: none; }
|
|
10397
9947
|
.em-ds-datepicker .CalendarDay__default:hover .em-ds-datepicker__day-contents,
|
|
10398
9948
|
.em-ds-datepicker .CalendarDay__default:focus .em-ds-datepicker__day-contents,
|
|
@@ -10404,7 +9954,7 @@ body > .em-ds-tree-item {
|
|
|
10404
9954
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:focus .em-ds-datepicker__day-contents,
|
|
10405
9955
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__default:hover .em-ds-datepicker__day-contents,
|
|
10406
9956
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__default:focus .em-ds-datepicker__day-contents {
|
|
10407
|
-
background: #
|
|
9957
|
+
background: #ffffff;
|
|
10408
9958
|
border: solid 1px #1e79c2;
|
|
10409
9959
|
color: #1e79c2; }
|
|
10410
9960
|
|
|
@@ -10414,7 +9964,7 @@ body > .em-ds-tree-item {
|
|
|
10414
9964
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected,
|
|
10415
9965
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected {
|
|
10416
9966
|
background: #fff;
|
|
10417
|
-
color: #
|
|
9967
|
+
color: #ffffff;
|
|
10418
9968
|
border: none; }
|
|
10419
9969
|
.em-ds-datepicker .CalendarDay__selected .em-ds-datepicker__day-contents,
|
|
10420
9970
|
.em-ds-datepicker .CalendarDay__selected .em-ds-datepicker-range__day-contents,
|
|
@@ -10428,7 +9978,7 @@ body > .em-ds-tree-item {
|
|
|
10428
9978
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected .em-ds-datepicker-range__day-contents {
|
|
10429
9979
|
background-color: #1e79c2;
|
|
10430
9980
|
border: solid 1px #1e79c2;
|
|
10431
|
-
color: #
|
|
9981
|
+
color: #ffffff; }
|
|
10432
9982
|
.em-ds-datepicker .CalendarDay__selected .em-ds-datepicker__day-contents:hover,
|
|
10433
9983
|
.em-ds-datepicker .CalendarDay__selected .em-ds-datepicker-range__day-contents:hover,
|
|
10434
9984
|
.SingleDatePicker_picker .CalendarDay__selected .em-ds-datepicker__day-contents:hover,
|
|
@@ -10439,7 +9989,7 @@ body > .em-ds-tree-item {
|
|
|
10439
9989
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected .em-ds-datepicker-range__day-contents:hover,
|
|
10440
9990
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected .em-ds-datepicker__day-contents:hover,
|
|
10441
9991
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected .em-ds-datepicker-range__day-contents:hover {
|
|
10442
|
-
box-shadow: inset 0 0 0 1px #
|
|
9992
|
+
box-shadow: inset 0 0 0 1px #a3d6ff; }
|
|
10443
9993
|
.em-ds-datepicker .CalendarDay__selected.CalendarDay__selected_start.CalendarDay__selected_end:after,
|
|
10444
9994
|
.SingleDatePicker_picker .CalendarDay__selected.CalendarDay__selected_start.CalendarDay__selected_end:after,
|
|
10445
9995
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected.CalendarDay__selected_start.CalendarDay__selected_end:after,
|
|
@@ -10458,14 +10008,14 @@ body > .em-ds-tree-item {
|
|
|
10458
10008
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected.CalendarDay__selected_start.CalendarDay__selected_end .em-ds-datepicker-range__day-contents {
|
|
10459
10009
|
background-color: #1e79c2;
|
|
10460
10010
|
border: solid 1px #1e79c2;
|
|
10461
|
-
color: #
|
|
10011
|
+
color: #ffffff; }
|
|
10462
10012
|
|
|
10463
10013
|
.em-ds-datepicker .CalendarDay__selected:hover,
|
|
10464
10014
|
.SingleDatePicker_picker .CalendarDay__selected:hover,
|
|
10465
10015
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected:hover,
|
|
10466
10016
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover,
|
|
10467
10017
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover {
|
|
10468
|
-
color: #
|
|
10018
|
+
color: #ffffff; }
|
|
10469
10019
|
.em-ds-datepicker .CalendarDay__selected:hover .em-ds-datepicker__day-contents,
|
|
10470
10020
|
.em-ds-datepicker .CalendarDay__selected:hover .em-ds-datepicker-range__day-contents,
|
|
10471
10021
|
.SingleDatePicker_picker .CalendarDay__selected:hover .em-ds-datepicker__day-contents,
|
|
@@ -10477,7 +10027,7 @@ body > .em-ds-tree-item {
|
|
|
10477
10027
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover .em-ds-datepicker__day-contents,
|
|
10478
10028
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover .em-ds-datepicker-range__day-contents {
|
|
10479
10029
|
background-color: #1e79c2;
|
|
10480
|
-
color: #
|
|
10030
|
+
color: #ffffff; }
|
|
10481
10031
|
|
|
10482
10032
|
.em-ds-datepicker .CalendarDay.CalendarDay__blocked_calendar,
|
|
10483
10033
|
.SingleDatePicker_picker .CalendarDay.CalendarDay__blocked_calendar,
|
|
@@ -10534,7 +10084,7 @@ body > .em-ds-tree-item {
|
|
|
10534
10084
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .CalendarMonth_table {
|
|
10535
10085
|
border-collapse: collapse;
|
|
10536
10086
|
border-spacing: 0;
|
|
10537
|
-
background-color: #
|
|
10087
|
+
background-color: #ffffff;
|
|
10538
10088
|
width: calc(2.46154rem * 9.93) !important;
|
|
10539
10089
|
margin-left: calc(1.84615rem * (-0.5));
|
|
10540
10090
|
margin-top: 1.23077rem; }
|
|
@@ -10545,7 +10095,7 @@ body > .em-ds-tree-item {
|
|
|
10545
10095
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DayPicker_weekHeader,
|
|
10546
10096
|
.em-ds-datepicker-wrapper-day-picker-single-date-controller .DayPicker_weekHeader {
|
|
10547
10097
|
position: absolute;
|
|
10548
|
-
color: #
|
|
10098
|
+
color: #25292f;
|
|
10549
10099
|
height: 1.84615rem;
|
|
10550
10100
|
top: calc(2.46154rem * 1.55);
|
|
10551
10101
|
z-index: 2;
|
|
@@ -10602,26 +10152,26 @@ body > .em-ds-tree-item {
|
|
|
10602
10152
|
justify-content: center;
|
|
10603
10153
|
width: 2.46154rem;
|
|
10604
10154
|
height: 2.46154rem;
|
|
10605
|
-
color: #
|
|
10155
|
+
color: #25292f;
|
|
10606
10156
|
border-radius: 50%;
|
|
10607
10157
|
position: relative;
|
|
10608
10158
|
z-index: 2;
|
|
10609
10159
|
border: solid 1px transparent; }
|
|
10610
10160
|
|
|
10611
10161
|
.CalendarDay__outside .em-ds-datepicker__day-contents {
|
|
10612
|
-
color: #
|
|
10162
|
+
color: #cbcfd7; }
|
|
10613
10163
|
|
|
10614
10164
|
.CalendarDay__default:hover .em-ds-datepicker__day-contents,
|
|
10615
10165
|
.CalendarDay__default:hover .em-ds-datepicker-range__day-contents,
|
|
10616
10166
|
.CalendarDay__default:focus .em-ds-datepicker__day-contents,
|
|
10617
10167
|
.CalendarDay__default:focus .em-ds-datepicker-range__day-contents {
|
|
10618
|
-
background: #
|
|
10168
|
+
background: #ffffff;
|
|
10619
10169
|
border: solid 1px #1e79c2;
|
|
10620
10170
|
color: #1e79c2; }
|
|
10621
10171
|
|
|
10622
10172
|
.without-selected-date .CalendarDay__today .em-ds-datepicker-range__day-contents {
|
|
10623
10173
|
border: solid 1px #697489;
|
|
10624
|
-
color: #
|
|
10174
|
+
color: #25292f; }
|
|
10625
10175
|
|
|
10626
10176
|
.em-ds-datepicker .DayPickerNavigation,
|
|
10627
10177
|
.SingleDatePicker_picker .DayPickerNavigation,
|
|
@@ -10653,32 +10203,32 @@ body > .em-ds-tree-item {
|
|
|
10653
10203
|
.em-ds-datepicker__picker:hover:not([disabled]) {
|
|
10654
10204
|
border: solid 1px #1e79c2; }
|
|
10655
10205
|
.em-ds-datepicker__picker.disabled {
|
|
10656
|
-
border: solid 1px #
|
|
10206
|
+
border: solid 1px #e0e3e8;
|
|
10657
10207
|
pointer-events: none; }
|
|
10658
10208
|
|
|
10659
10209
|
.em-ds-form-item--error .em-ds-datepicker .em-ds-input {
|
|
10660
10210
|
border-right-color: transparent; }
|
|
10661
10211
|
|
|
10662
10212
|
.em-ds-form-item--error .em-ds-datepicker .em-ds-datepicker-range__picker {
|
|
10663
|
-
border-top-color: #
|
|
10664
|
-
border-right-color: #
|
|
10665
|
-
border-bottom-color: #
|
|
10213
|
+
border-top-color: #c64252;
|
|
10214
|
+
border-right-color: #c64252;
|
|
10215
|
+
border-bottom-color: #c64252; }
|
|
10666
10216
|
|
|
10667
10217
|
.em-ds-date-time-picker__wrapper {
|
|
10668
10218
|
display: flex;
|
|
10669
10219
|
flex-direction: row;
|
|
10670
10220
|
margin-top: 0.61538rem;
|
|
10671
10221
|
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.24), 0 8px 17px 0 rgba(0, 0, 0, 0.19);
|
|
10672
|
-
background-color: #
|
|
10222
|
+
background-color: #ffffff; }
|
|
10673
10223
|
.em-ds-date-time-picker__wrapper .em-ds-date-time-picker__time-picker-wrapper {
|
|
10674
|
-
background-color: #
|
|
10224
|
+
background-color: #f6f7f9;
|
|
10675
10225
|
display: flex;
|
|
10676
10226
|
flex-direction: column; }
|
|
10677
10227
|
.em-ds-date-time-picker__wrapper .em-ds-date-time-picker__time-picker-wrapper .em-ds-time-picker-menu {
|
|
10678
10228
|
border: unset;
|
|
10679
10229
|
box-shadow: unset; }
|
|
10680
10230
|
.em-ds-date-time-picker__wrapper .em-ds-datepicker-range-wrapper-day-picker-single-date-controller {
|
|
10681
|
-
border-right: 0.07692rem solid #
|
|
10231
|
+
border-right: 0.07692rem solid #cbcfd7; }
|
|
10682
10232
|
.em-ds-date-time-picker__wrapper .em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DayPicker {
|
|
10683
10233
|
box-shadow: unset; }
|
|
10684
10234
|
|
|
@@ -10692,9 +10242,9 @@ body > .em-ds-tree-item {
|
|
|
10692
10242
|
border-right-color: transparent; }
|
|
10693
10243
|
|
|
10694
10244
|
.em-ds-form-item--error .em-ds-datetimepicker .em-ds-datepicker-range__picker {
|
|
10695
|
-
border-top-color: #
|
|
10696
|
-
border-right-color: #
|
|
10697
|
-
border-bottom-color: #
|
|
10245
|
+
border-top-color: #c64252;
|
|
10246
|
+
border-right-color: #c64252;
|
|
10247
|
+
border-bottom-color: #c64252; }
|
|
10698
10248
|
|
|
10699
10249
|
.em-ds-datepicker-wrapper-input-date-range-picker-controller {
|
|
10700
10250
|
display: flex;
|
|
@@ -10726,12 +10276,12 @@ body > .em-ds-tree-item {
|
|
|
10726
10276
|
.em-ds-datepicker-range .DateInput_input,
|
|
10727
10277
|
.em-ds-date-range-selector-wrap-day-picker .DateInput_input,
|
|
10728
10278
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateInput_input {
|
|
10729
|
-
border: solid 1px #
|
|
10279
|
+
border: solid 1px #cbcfd7;
|
|
10730
10280
|
border-radius: calc(0.30769rem * 0.5); }
|
|
10731
10281
|
.em-ds-datepicker-range .DateInput_input:disabled,
|
|
10732
10282
|
.em-ds-date-range-selector-wrap-day-picker .DateInput_input:disabled,
|
|
10733
10283
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateInput_input:disabled {
|
|
10734
|
-
background-color: #
|
|
10284
|
+
background-color: #ffffff; }
|
|
10735
10285
|
|
|
10736
10286
|
.em-ds-datepicker-range .DateRangePickerInput_arrow,
|
|
10737
10287
|
.em-ds-date-range-selector-wrap-day-picker .DateRangePickerInput_arrow,
|
|
@@ -10742,14 +10292,14 @@ body > .em-ds-tree-item {
|
|
|
10742
10292
|
.em-ds-date-range-selector-wrap-day-picker .DateInput_input__focused,
|
|
10743
10293
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateInput_input__focused {
|
|
10744
10294
|
border: solid 1px #1e79c2;
|
|
10745
|
-
box-shadow: #
|
|
10295
|
+
box-shadow: #52a6ec; }
|
|
10746
10296
|
|
|
10747
10297
|
.em-ds-datepicker-range .DateRangePickerInput__disabled,
|
|
10748
10298
|
.em-ds-date-range-selector-wrap-day-picker .DateRangePickerInput__disabled,
|
|
10749
10299
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateRangePickerInput__disabled {
|
|
10750
|
-
background: #
|
|
10300
|
+
background: #ffffff;
|
|
10751
10301
|
pointer-events: none;
|
|
10752
|
-
border-color: #
|
|
10302
|
+
border-color: #e0e3e8;
|
|
10753
10303
|
color: #697489;
|
|
10754
10304
|
cursor: not-allowed; }
|
|
10755
10305
|
.em-ds-datepicker-range .DateRangePickerInput__disabled:focus, .em-ds-datepicker-range .DateRangePickerInput__disabled:hover,
|
|
@@ -10757,15 +10307,15 @@ body > .em-ds-tree-item {
|
|
|
10757
10307
|
.em-ds-date-range-selector-wrap-day-picker .DateRangePickerInput__disabled:hover,
|
|
10758
10308
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateRangePickerInput__disabled:focus,
|
|
10759
10309
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateRangePickerInput__disabled:hover {
|
|
10760
|
-
border-color: #
|
|
10310
|
+
border-color: #e0e3e8; }
|
|
10761
10311
|
.em-ds-datepicker-range .DateRangePickerInput__disabled:active,
|
|
10762
10312
|
.em-ds-date-range-selector-wrap-day-picker .DateRangePickerInput__disabled:active,
|
|
10763
10313
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateRangePickerInput__disabled:active {
|
|
10764
|
-
border-color: #
|
|
10314
|
+
border-color: #e0e3e8; }
|
|
10765
10315
|
.em-ds-datepicker-range .DateRangePickerInput__disabled .DateInput_input__focused,
|
|
10766
10316
|
.em-ds-date-range-selector-wrap-day-picker .DateRangePickerInput__disabled .DateInput_input__focused,
|
|
10767
10317
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .DateRangePickerInput__disabled .DateInput_input__focused {
|
|
10768
|
-
border: solid 1px #
|
|
10318
|
+
border: solid 1px #e0e3e8 !important;
|
|
10769
10319
|
box-shadow: none; }
|
|
10770
10320
|
|
|
10771
10321
|
.em-ds-datepicker-range .CalendarDay__default,
|
|
@@ -10774,7 +10324,7 @@ body > .em-ds-tree-item {
|
|
|
10774
10324
|
padding: 0 !important;
|
|
10775
10325
|
position: relative;
|
|
10776
10326
|
border: none;
|
|
10777
|
-
background-color: #
|
|
10327
|
+
background-color: #ffffff;
|
|
10778
10328
|
text-align: center;
|
|
10779
10329
|
transition: all 100ms cubic-bezier(0.18, 0.67, 0.6, 1.22); }
|
|
10780
10330
|
.em-ds-datepicker-range .CalendarDay__default:focus,
|
|
@@ -10788,7 +10338,7 @@ body > .em-ds-tree-item {
|
|
|
10788
10338
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__default:focus,
|
|
10789
10339
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:hover,
|
|
10790
10340
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:focus {
|
|
10791
|
-
color: #
|
|
10341
|
+
color: #ffffff; }
|
|
10792
10342
|
.em-ds-datepicker-range .CalendarDay__default:hover .em-ds-datepicker-range__day-contents,
|
|
10793
10343
|
.em-ds-datepicker-range .CalendarDay__default:focus .em-ds-datepicker-range__day-contents,
|
|
10794
10344
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__default:hover .em-ds-datepicker-range__day-contents,
|
|
@@ -10796,13 +10346,13 @@ body > .em-ds-tree-item {
|
|
|
10796
10346
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:hover .em-ds-datepicker-range__day-contents,
|
|
10797
10347
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__default:focus .em-ds-datepicker-range__day-contents {
|
|
10798
10348
|
border: solid 1px #1e79c2;
|
|
10799
|
-
box-shadow: inset 0 0 0 1px #
|
|
10349
|
+
box-shadow: inset 0 0 0 1px #a3d6ff;
|
|
10800
10350
|
color: #1e79c2; }
|
|
10801
10351
|
|
|
10802
10352
|
.em-ds-datepicker-range .CalendarDay__selected,
|
|
10803
10353
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected,
|
|
10804
10354
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected {
|
|
10805
|
-
color: #
|
|
10355
|
+
color: #ffffff; }
|
|
10806
10356
|
|
|
10807
10357
|
.em-ds-datepicker-range .CalendarDay__selected:hover,
|
|
10808
10358
|
.em-ds-datepicker-range .CalendarDay__selected:focus,
|
|
@@ -10810,36 +10360,36 @@ body > .em-ds-tree-item {
|
|
|
10810
10360
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected:focus,
|
|
10811
10361
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover,
|
|
10812
10362
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected:focus {
|
|
10813
|
-
color: #
|
|
10363
|
+
color: #ffffff; }
|
|
10814
10364
|
.em-ds-datepicker-range .CalendarDay__selected:hover .em-ds-datepicker-range__day-contents,
|
|
10815
10365
|
.em-ds-datepicker-range .CalendarDay__selected:focus .em-ds-datepicker-range__day-contents,
|
|
10816
10366
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected:hover .em-ds-datepicker-range__day-contents,
|
|
10817
10367
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected:focus .em-ds-datepicker-range__day-contents,
|
|
10818
10368
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected:hover .em-ds-datepicker-range__day-contents,
|
|
10819
10369
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected:focus .em-ds-datepicker-range__day-contents {
|
|
10820
|
-
color: #
|
|
10370
|
+
color: #ffffff;
|
|
10821
10371
|
background: #1e79c2;
|
|
10822
|
-
box-shadow: inset 0 0 0 1px #
|
|
10372
|
+
box-shadow: inset 0 0 0 1px #a3d6ff; }
|
|
10823
10373
|
|
|
10824
10374
|
.em-ds-datepicker-range .CalendarDay__selected_span,
|
|
10825
10375
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected_span,
|
|
10826
10376
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_span {
|
|
10827
|
-
background: #
|
|
10377
|
+
background: #ebf6ff;
|
|
10828
10378
|
position: relative;
|
|
10829
10379
|
z-index: 3; }
|
|
10830
10380
|
.em-ds-datepicker-range .CalendarDay__selected_span:after,
|
|
10831
10381
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected_span:after,
|
|
10832
10382
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_span:after {
|
|
10833
10383
|
content: "";
|
|
10834
|
-
border-top: calc(0.30769rem * 0.75) solid #
|
|
10835
|
-
border-bottom: calc(0.30769rem * 0.75) solid #
|
|
10384
|
+
border-top: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10385
|
+
border-bottom: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10836
10386
|
position: absolute;
|
|
10837
10387
|
width: 100%;
|
|
10838
10388
|
z-index: 1;
|
|
10839
10389
|
top: 0;
|
|
10840
10390
|
bottom: 0;
|
|
10841
10391
|
left: 0;
|
|
10842
|
-
background: #
|
|
10392
|
+
background: #ebf6ff; }
|
|
10843
10393
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
10844
10394
|
.em-ds-datepicker-range .CalendarDay__selected_span:after,
|
|
10845
10395
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected_span:after,
|
|
@@ -10864,7 +10414,7 @@ body > .em-ds-tree-item {
|
|
|
10864
10414
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_end:before {
|
|
10865
10415
|
content: "";
|
|
10866
10416
|
position: absolute;
|
|
10867
|
-
background-color: #
|
|
10417
|
+
background-color: #ffffff;
|
|
10868
10418
|
top: 0;
|
|
10869
10419
|
bottom: 0;
|
|
10870
10420
|
z-index: 2; }
|
|
@@ -10876,15 +10426,15 @@ body > .em-ds-tree-item {
|
|
|
10876
10426
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_start:after,
|
|
10877
10427
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_end:after {
|
|
10878
10428
|
content: "";
|
|
10879
|
-
border-top: calc(0.30769rem * 0.75) solid #
|
|
10880
|
-
border-bottom: calc(0.30769rem * 0.75) solid #
|
|
10429
|
+
border-top: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10430
|
+
border-bottom: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10881
10431
|
position: absolute;
|
|
10882
10432
|
width: 100%;
|
|
10883
10433
|
z-index: 1;
|
|
10884
10434
|
top: 0;
|
|
10885
10435
|
bottom: 0;
|
|
10886
10436
|
left: 0;
|
|
10887
|
-
background-color: #
|
|
10437
|
+
background-color: #ebf6ff; }
|
|
10888
10438
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
10889
10439
|
.em-ds-datepicker-range .CalendarDay__selected_start:after,
|
|
10890
10440
|
.em-ds-datepicker-range .CalendarDay__selected_end:after,
|
|
@@ -10898,12 +10448,12 @@ body > .em-ds-tree-item {
|
|
|
10898
10448
|
.em-ds-datepicker-range .em-ds-range-picker__non-selected .CalendarDay__selected_start,
|
|
10899
10449
|
.em-ds-date-range-selector-wrap-day-picker .em-ds-range-picker__non-selected .CalendarDay__selected_start,
|
|
10900
10450
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .em-ds-range-picker__non-selected .CalendarDay__selected_start {
|
|
10901
|
-
background-color: #
|
|
10451
|
+
background-color: #ffffff; }
|
|
10902
10452
|
|
|
10903
10453
|
.em-ds-datepicker-range .CalendarDay__selected_start.CalendarDay__selected_end,
|
|
10904
10454
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected_start.CalendarDay__selected_end,
|
|
10905
10455
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__selected_start.CalendarDay__selected_end {
|
|
10906
|
-
background-color: #
|
|
10456
|
+
background-color: #ffffff; }
|
|
10907
10457
|
|
|
10908
10458
|
.em-ds-datepicker-range .CalendarDay__selected_start:before,
|
|
10909
10459
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__selected_start:before,
|
|
@@ -10923,7 +10473,7 @@ body > .em-ds-tree-item {
|
|
|
10923
10473
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__hovered_span,
|
|
10924
10474
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__hovered_span:hover,
|
|
10925
10475
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__hovered_span {
|
|
10926
|
-
background: #
|
|
10476
|
+
background: #ebf6ff; }
|
|
10927
10477
|
.em-ds-datepicker-range .CalendarDay__hovered_span:hover:after,
|
|
10928
10478
|
.em-ds-datepicker-range .CalendarDay__hovered_span:after,
|
|
10929
10479
|
.em-ds-date-range-selector-wrap-day-picker .CalendarDay__hovered_span:hover:after,
|
|
@@ -10931,8 +10481,8 @@ body > .em-ds-tree-item {
|
|
|
10931
10481
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__hovered_span:hover:after,
|
|
10932
10482
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarDay__hovered_span:after {
|
|
10933
10483
|
content: "";
|
|
10934
|
-
border-top: calc(0.30769rem * 0.75) solid #
|
|
10935
|
-
border-bottom: calc(0.30769rem * 0.75) solid #
|
|
10484
|
+
border-top: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10485
|
+
border-bottom: calc(0.30769rem * 0.75) solid #ffffff;
|
|
10936
10486
|
position: absolute;
|
|
10937
10487
|
width: 100%;
|
|
10938
10488
|
z-index: 1;
|
|
@@ -10949,7 +10499,7 @@ body > .em-ds-tree-item {
|
|
|
10949
10499
|
top: 0;
|
|
10950
10500
|
bottom: 0;
|
|
10951
10501
|
left: 50%;
|
|
10952
|
-
background: #
|
|
10502
|
+
background: #ffffff;
|
|
10953
10503
|
z-index: 0; }
|
|
10954
10504
|
|
|
10955
10505
|
.em-ds-datepicker-range .DateRangePicker + .em-ds-datepicker__picker,
|
|
@@ -10960,7 +10510,7 @@ body > .em-ds-tree-item {
|
|
|
10960
10510
|
.em-ds-datepicker-range .CalendarMonth,
|
|
10961
10511
|
.em-ds-date-range-selector-wrap-day-picker .CalendarMonth,
|
|
10962
10512
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarMonth {
|
|
10963
|
-
background: #
|
|
10513
|
+
background: #f6f7f9;
|
|
10964
10514
|
text-align: center;
|
|
10965
10515
|
vertical-align: top;
|
|
10966
10516
|
-webkit-user-select: none;
|
|
@@ -10971,7 +10521,7 @@ body > .em-ds-tree-item {
|
|
|
10971
10521
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .CalendarMonth_table {
|
|
10972
10522
|
border-collapse: collapse;
|
|
10973
10523
|
border-spacing: 0;
|
|
10974
|
-
background-color: #
|
|
10524
|
+
background-color: #ffffff;
|
|
10975
10525
|
width: calc(2.46154rem * 9.93) !important;
|
|
10976
10526
|
margin-left: calc(0.30769rem * (-3)); }
|
|
10977
10527
|
|
|
@@ -10988,7 +10538,7 @@ body > .em-ds-tree-item {
|
|
|
10988
10538
|
.em-ds-datepicker-range .em-ds-range-picker__icon,
|
|
10989
10539
|
.em-ds-date-range-selector-wrap-day-picker .em-ds-range-picker__icon,
|
|
10990
10540
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .em-ds-range-picker__icon {
|
|
10991
|
-
border: solid 1px #
|
|
10541
|
+
border: solid 1px #cbcfd7;
|
|
10992
10542
|
border-radius: 0.30769rem;
|
|
10993
10543
|
display: inline-block;
|
|
10994
10544
|
padding: calc(1.23077rem * (0.625)); }
|
|
@@ -10999,21 +10549,21 @@ body > .em-ds-tree-item {
|
|
|
10999
10549
|
.em-ds-datepicker-range .em-ds-range-picker__icon.disabled,
|
|
11000
10550
|
.em-ds-date-range-selector-wrap-day-picker .em-ds-range-picker__icon.disabled,
|
|
11001
10551
|
.em-ds-datepicker-range-wrapper-day-picker-single-date-controller .em-ds-range-picker__icon.disabled {
|
|
11002
|
-
border: solid 1px #
|
|
10552
|
+
border: solid 1px #e0e3e8; }
|
|
11003
10553
|
|
|
11004
10554
|
.em-ds-datepicker-range.em-ds-datepicker--error .em-ds-form-item__feedback {
|
|
11005
10555
|
margin-right: -36px; }
|
|
11006
10556
|
|
|
11007
10557
|
.em-ds-datepicker-range.em-ds-datepicker--error .em-ds-datepicker__picker {
|
|
11008
|
-
border: solid 1px #
|
|
10558
|
+
border: solid 1px #c64252; }
|
|
11009
10559
|
|
|
11010
10560
|
.em-ds-datepicker__label-from,
|
|
11011
10561
|
.em-ds-datepicker__label-to {
|
|
11012
10562
|
position: absolute;
|
|
11013
10563
|
margin-top: 0;
|
|
11014
10564
|
z-index: 1;
|
|
11015
|
-
color: #
|
|
11016
|
-
background: #
|
|
10565
|
+
color: #cbcfd7;
|
|
10566
|
+
background: #ffffff;
|
|
11017
10567
|
padding: 0px calc(0.30769rem * 1.5);
|
|
11018
10568
|
max-height: 0.30769rem; }
|
|
11019
10569
|
.em-ds-datepicker__label-from span,
|
|
@@ -11034,7 +10584,7 @@ body > .em-ds-tree-item {
|
|
|
11034
10584
|
|
|
11035
10585
|
.em-ds-code-editor-file-name {
|
|
11036
10586
|
padding-bottom: 1.23077rem;
|
|
11037
|
-
border-bottom: 1px solid #
|
|
10587
|
+
border-bottom: 1px solid #f6f7f9; }
|
|
11038
10588
|
|
|
11039
10589
|
.em-ds-code-editor-find-replace-btn {
|
|
11040
10590
|
display: flex;
|
|
@@ -11085,7 +10635,7 @@ body > .em-ds-tree-item {
|
|
|
11085
10635
|
visibility: hidden;
|
|
11086
10636
|
min-width: 4.92308rem;
|
|
11087
10637
|
max-width: 9.84615rem;
|
|
11088
|
-
background-color: #
|
|
10638
|
+
background-color: #464f5c;
|
|
11089
10639
|
color: #fff;
|
|
11090
10640
|
text-align: center;
|
|
11091
10641
|
border-radius: 0.30769rem;
|
|
@@ -11105,7 +10655,7 @@ body > .em-ds-tree-item {
|
|
|
11105
10655
|
margin-left: -0.30769rem;
|
|
11106
10656
|
border-width: 0.30769rem;
|
|
11107
10657
|
border-style: solid;
|
|
11108
|
-
border-color: #
|
|
10658
|
+
border-color: #464f5c transparent transparent transparent; }
|
|
11109
10659
|
.ds-ql-custom-toolbar .tooltip button:hover + .tooltiptext, .ds-ql-custom-toolbar .tooltip span:hover + select + .tooltiptext {
|
|
11110
10660
|
visibility: visible;
|
|
11111
10661
|
opacity: 1; }
|
|
@@ -12172,10 +11722,10 @@ body > .em-ds-tree-item {
|
|
|
12172
11722
|
.insert-field-modal .wrapper .col-1 .insertfieldmodal-element .content .value {
|
|
12173
11723
|
font-weight: 600; }
|
|
12174
11724
|
.insert-field-modal .wrapper .col-1 .insertfieldmodal-element:hover {
|
|
12175
|
-
background-color: #
|
|
11725
|
+
background-color: #e0e3e8;
|
|
12176
11726
|
cursor: pointer; }
|
|
12177
11727
|
.insert-field-modal .wrapper .col-1 .insertfieldmodal-element:focus {
|
|
12178
|
-
background-color: #
|
|
11728
|
+
background-color: #ebf6ff; }
|
|
12179
11729
|
|
|
12180
11730
|
.em-ds-modal-image-library .em-ds-modal__body {
|
|
12181
11731
|
padding: 0px;
|
|
@@ -12205,10 +11755,10 @@ body > .em-ds-tree-item {
|
|
|
12205
11755
|
.em-ds-modal-image-library .wrapper .col-1 .imglibmodal-element .content {
|
|
12206
11756
|
padding: 0 1.23077rem; }
|
|
12207
11757
|
.em-ds-modal-image-library .wrapper .col-1 .imglibmodal-element:hover {
|
|
12208
|
-
background-color: #
|
|
11758
|
+
background-color: #e0e3e8;
|
|
12209
11759
|
cursor: pointer; }
|
|
12210
11760
|
.em-ds-modal-image-library .wrapper .col-1 .imglibmodal-element:focus {
|
|
12211
|
-
background-color: #
|
|
11761
|
+
background-color: #ebf6ff; }
|
|
12212
11762
|
.em-ds-modal-image-library .wrapper .col-2 {
|
|
12213
11763
|
flex: 5;
|
|
12214
11764
|
border-left: 1px solid #ebedf0;
|
|
@@ -12241,8 +11791,8 @@ body > .em-ds-tree-item {
|
|
|
12241
11791
|
|
|
12242
11792
|
.em-ds-divider {
|
|
12243
11793
|
margin: 0.15385rem 0.30769rem;
|
|
12244
|
-
border-right: 0.07692rem solid #
|
|
12245
|
-
border-bottom: 0.07692rem solid #
|
|
11794
|
+
border-right: 0.07692rem solid #e0e3e8;
|
|
11795
|
+
border-bottom: 0.07692rem solid #e0e3e8; }
|
|
12246
11796
|
|
|
12247
11797
|
.em-ds-uploader-wrapper {
|
|
12248
11798
|
display: inline-flex;
|
|
@@ -12250,7 +11800,7 @@ body > .em-ds-tree-item {
|
|
|
12250
11800
|
.em-ds-uploader-wrapper .em-ds-uploader {
|
|
12251
11801
|
position: relative;
|
|
12252
11802
|
display: inline-flex;
|
|
12253
|
-
border: 0.07692rem solid #
|
|
11803
|
+
border: 0.07692rem solid #cbcfd7;
|
|
12254
11804
|
padding: 0.46154rem 1.23077rem;
|
|
12255
11805
|
border-radius: 4px;
|
|
12256
11806
|
align-items: center;
|
|
@@ -12265,7 +11815,7 @@ body > .em-ds-tree-item {
|
|
|
12265
11815
|
font-size: 1rem;
|
|
12266
11816
|
line-height: normal;
|
|
12267
11817
|
font-weight: 400;
|
|
12268
|
-
color: #
|
|
11818
|
+
color: #353c46; }
|
|
12269
11819
|
.em-ds-uploader-wrapper .em-ds-uploader .em-ds-uploader-info__actions {
|
|
12270
11820
|
display: flex; }
|
|
12271
11821
|
.em-ds-uploader-wrapper .em-ds-uploader .em-ds-uploader-info__actions .em-ds-button {
|
|
@@ -12282,9 +11832,9 @@ body > .em-ds-tree-item {
|
|
|
12282
11832
|
left: 0;
|
|
12283
11833
|
width: 100%;
|
|
12284
11834
|
height: 100%;
|
|
12285
|
-
background-color: #
|
|
12286
|
-
color: #
|
|
12287
|
-
border: 0.07692rem solid #
|
|
11835
|
+
background-color: #1394e5;
|
|
11836
|
+
color: #ffffff;
|
|
11837
|
+
border: 0.07692rem solid #1394e5;
|
|
12288
11838
|
border-radius: 4px;
|
|
12289
11839
|
font-size: 1rem;
|
|
12290
11840
|
line-height: normal;
|
|
@@ -12293,7 +11843,7 @@ body > .em-ds-tree-item {
|
|
|
12293
11843
|
justify-content: center;
|
|
12294
11844
|
align-items: center; }
|
|
12295
11845
|
.em-ds-uploader-wrapper .em-ds-uploader .em-ds-uploader-drag-active .em-ds-icon {
|
|
12296
|
-
fill: #
|
|
11846
|
+
fill: #ffffff;
|
|
12297
11847
|
margin-right: 0.61538rem; }
|
|
12298
11848
|
.em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader--drag-active {
|
|
12299
11849
|
border: 0.07692rem solid transparent; }
|
|
@@ -12306,12 +11856,12 @@ body > .em-ds-tree-item {
|
|
|
12306
11856
|
box-shadow: inset 0 0 0 1px #8cc2ed;
|
|
12307
11857
|
border-radius: 2px; }
|
|
12308
11858
|
.em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:hover, .em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:focus {
|
|
12309
|
-
background-color: #
|
|
12310
|
-
border: 0.07692rem dashed #
|
|
11859
|
+
background-color: #f6fbff;
|
|
11860
|
+
border: 0.07692rem dashed #1394e5; }
|
|
12311
11861
|
.em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:hover .em-ds-divider, .em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:focus .em-ds-divider {
|
|
12312
|
-
border-color: #
|
|
11862
|
+
border-color: #a3d6ff; }
|
|
12313
11863
|
.em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:hover .em-ds-uploader-icon-wrapper, .em-ds-uploader-wrapper:not(.em-ds-uploader-wrapper--disabled) .em-ds-uploader:focus .em-ds-uploader-icon-wrapper {
|
|
12314
|
-
fill: #
|
|
11864
|
+
fill: #1394e5; }
|
|
12315
11865
|
.em-ds-uploader-wrapper__accepted-types {
|
|
12316
11866
|
margin-top: 0.15385rem;
|
|
12317
11867
|
font-size: 0.8461rem;
|
|
@@ -12349,7 +11899,7 @@ body > .em-ds-tree-item {
|
|
|
12349
11899
|
height: 2.46154rem;
|
|
12350
11900
|
border-radius: 50%;
|
|
12351
11901
|
font-size: 1.2307rem;
|
|
12352
|
-
border: 0.07692rem solid #
|
|
11902
|
+
border: 0.07692rem solid #cbcfd7;
|
|
12353
11903
|
color: #1e79c2;
|
|
12354
11904
|
position: relative;
|
|
12355
11905
|
transition: all 200ms cubic-bezier(0.36, 0, 1, 1);
|
|
@@ -12375,7 +11925,7 @@ body > .em-ds-tree-item {
|
|
|
12375
11925
|
content: '';
|
|
12376
11926
|
transition: all 300ms cubic-bezier(0.36, 0, 1, 1);
|
|
12377
11927
|
height: 1px;
|
|
12378
|
-
background-image: linear-gradient(to right, #
|
|
11928
|
+
background-image: linear-gradient(to right, #cbcfd7 40%, rgba(255, 255, 255, 0) 0%);
|
|
12379
11929
|
background-position: top;
|
|
12380
11930
|
background-size: 3px 1px;
|
|
12381
11931
|
background-repeat: repeat-x; }
|
|
@@ -12384,20 +11934,20 @@ body > .em-ds-tree-item {
|
|
|
12384
11934
|
border-color: #1e79c2; }
|
|
12385
11935
|
|
|
12386
11936
|
.em-ds-wizard-steps-indicator-step--completed .em-ds-wizard-steps-indicator-step__label {
|
|
12387
|
-
color: #
|
|
11937
|
+
color: #25292f; }
|
|
12388
11938
|
|
|
12389
11939
|
.em-ds-wizard-steps-indicator-step--active .em-ds-wizard-steps-indicator-step__bullet {
|
|
12390
|
-
border-color: #
|
|
12391
|
-
color: #
|
|
11940
|
+
border-color: #006aa9;
|
|
11941
|
+
color: #006aa9;
|
|
12392
11942
|
font-weight: bold;
|
|
12393
11943
|
border-width: 1.5px; }
|
|
12394
11944
|
|
|
12395
11945
|
.em-ds-wizard-steps-indicator-step--active .em-ds-wizard-steps-indicator-step__label {
|
|
12396
|
-
color: #
|
|
11946
|
+
color: #006aa9;
|
|
12397
11947
|
font-weight: bold; }
|
|
12398
11948
|
|
|
12399
11949
|
.em-ds-wizard-steps-indicator-step--completed:not(:last-child) .em-ds-wizard-steps-indicator-step__bullet-wrapper::after {
|
|
12400
|
-
background: #
|
|
11950
|
+
background: #006aa9;
|
|
12401
11951
|
background-size: initial; }
|
|
12402
11952
|
|
|
12403
11953
|
.em-ds-card-array__wrapper {
|
|
@@ -12439,7 +11989,7 @@ body > .em-ds-tree-item {
|
|
|
12439
11989
|
-ms-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
12440
11990
|
-o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
12441
11991
|
box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
12442
|
-
background: #
|
|
11992
|
+
background: #ffffff;
|
|
12443
11993
|
padding: 0.61538rem; }
|
|
12444
11994
|
|
|
12445
11995
|
.em-ds-comments__comments {
|
|
@@ -12463,7 +12013,7 @@ body > .em-ds-tree-item {
|
|
|
12463
12013
|
left: 1; }
|
|
12464
12014
|
|
|
12465
12015
|
.em-ds-comments__area {
|
|
12466
|
-
border-top: solid 1px #
|
|
12016
|
+
border-top: solid 1px #e0e3e8;
|
|
12467
12017
|
padding: 0.61538rem 1.84615rem;
|
|
12468
12018
|
height: 9.99385rem;
|
|
12469
12019
|
width: calc(3.69231rem * 7 - 2px); }
|
|
@@ -12502,8 +12052,8 @@ body > .em-ds-tree-item {
|
|
|
12502
12052
|
box-shadow: inset 0 0 0 1px #8cc2ed;
|
|
12503
12053
|
border-radius: 2px; }
|
|
12504
12054
|
.em-ds-comments__comment-card-wrapper--borderBottom {
|
|
12505
|
-
border-top: solid 0 #
|
|
12506
|
-
border-bottom: solid 1px #
|
|
12055
|
+
border-top: solid 0 #e0e3e8;
|
|
12056
|
+
border-bottom: solid 1px #e0e3e8;
|
|
12507
12057
|
margin-bottom: 1.23077rem; }
|
|
12508
12058
|
|
|
12509
12059
|
.em-ds-comments__comment-empty {
|
|
@@ -12513,18 +12063,18 @@ body > .em-ds-tree-item {
|
|
|
12513
12063
|
.em-ds-comments__comment-empty-icon {
|
|
12514
12064
|
padding: 1.23077rem 1.84615rem; }
|
|
12515
12065
|
.em-ds-comments__comment-empty-icon svg, .em-ds-comments__comment-empty-icon svg:not([fill]) {
|
|
12516
|
-
fill: #
|
|
12066
|
+
fill: #cbcfd7; }
|
|
12517
12067
|
|
|
12518
12068
|
.em-ds-comments__comment-empty-label {
|
|
12519
12069
|
padding: 0 1.84615rem 1.23077rem 1.84615rem;
|
|
12520
12070
|
color: #697489; }
|
|
12521
12071
|
|
|
12522
12072
|
.em-ds-comments__comment-card-header {
|
|
12523
|
-
border-top: solid 1px #
|
|
12073
|
+
border-top: solid 1px #e0e3e8;
|
|
12524
12074
|
display: flex;
|
|
12525
12075
|
padding: 0.30769rem 0.30769rem 0.30769rem 0.61538rem; }
|
|
12526
12076
|
.em-ds-comments__comment-card-header--borderBottom {
|
|
12527
|
-
border-top: solid 0 #
|
|
12077
|
+
border-top: solid 0 #e0e3e8; }
|
|
12528
12078
|
|
|
12529
12079
|
.em-ds-comments__comment-card-left {
|
|
12530
12080
|
flex: 1; }
|
|
@@ -12532,7 +12082,7 @@ body > .em-ds-tree-item {
|
|
|
12532
12082
|
.em-ds-comments__comment-card-name {
|
|
12533
12083
|
font-size: 1.0769rem;
|
|
12534
12084
|
font-weight: 600;
|
|
12535
|
-
color: #
|
|
12085
|
+
color: #353c46;
|
|
12536
12086
|
padding-bottom: 0.15385rem; }
|
|
12537
12087
|
|
|
12538
12088
|
.em-ds-comments__comment-card-data {
|