@wizishop/angular-components 0.0.63 → 0.0.67
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/angular-components.scss +306 -293
- package/bundles/wizishop-angular-components.umd.js +16 -12
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/search/search.component.js +3 -3
- package/esm2015/lib/components/search/shared/search-option.model.js +1 -1
- package/esm2015/lib/components/selected-list/selected-list.component.js +15 -11
- package/esm2015/lib/components/selected-list/shared/selected-list-option.model.js +1 -1
- package/fesm2015/wizishop-angular-components.js +16 -12
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/search/search.component.d.ts +1 -1
- package/lib/components/search/shared/search-option.model.d.ts +2 -2
- package/lib/components/selected-list/selected-list.component.d.ts +3 -1
- package/lib/components/selected-list/shared/selected-list-option.model.d.ts +2 -2
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.67.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.63.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -118,6 +118,14 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
118
118
|
width: rem(36);
|
|
119
119
|
height: rem(36);
|
|
120
120
|
}
|
|
121
|
+
|
|
122
|
+
.wac-table__head__cell--checkbox .wac-field-checkbox.alone .is-checkradio[type=checkbox]:not(:checked) + label:before {
|
|
123
|
+
background-color: $wac-white;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.wac-table__head__cell--checkbox .wac-field-checkbox__row {
|
|
127
|
+
transform: translateX(5px);
|
|
128
|
+
}
|
|
121
129
|
.wac-radio {
|
|
122
130
|
.is-checkradio[type='radio'] {
|
|
123
131
|
outline: 0 !important;
|
|
@@ -1753,88 +1761,174 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
1753
1761
|
}
|
|
1754
1762
|
}
|
|
1755
1763
|
}
|
|
1756
|
-
.wac-
|
|
1764
|
+
.wac-edit-in-place.nwb-wrapper {
|
|
1765
|
+
display: inline-block;
|
|
1766
|
+
position: relative;
|
|
1767
|
+
width: auto;
|
|
1768
|
+
min-width: 12px;
|
|
1769
|
+
min-height: 1.4em;
|
|
1770
|
+
|
|
1771
|
+
input {
|
|
1772
|
+
font-size: inherit;
|
|
1773
|
+
transition: width 50ms;
|
|
1774
|
+
position: absolute;
|
|
1775
|
+
top: 0;
|
|
1776
|
+
left: -5px;
|
|
1777
|
+
width: calc(100% + 16px) !important;
|
|
1778
|
+
height: calc(100% + 14px) !important;
|
|
1779
|
+
padding: 5px;
|
|
1780
|
+
z-index: 1;
|
|
1781
|
+
margin: 0;
|
|
1782
|
+
outline: none !important;
|
|
1783
|
+
border: 1px solid $wac-edit-in-place-border;
|
|
1784
|
+
background: inherit;
|
|
1785
|
+
transform: translateY(-17%);
|
|
1786
|
+
background-color: $wac-edit-in-place-background;
|
|
1787
|
+
|
|
1788
|
+
&.nwb-editable {
|
|
1789
|
+
text-decoration: none;
|
|
1790
|
+
color: inherit;
|
|
1791
|
+
border: none;
|
|
1792
|
+
cursor: pointer;
|
|
1793
|
+
height: 26px;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
&.nwb-editing {
|
|
1797
|
+
color: $wac-edit-in-place-border;
|
|
1798
|
+
}
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
div.select {
|
|
1802
|
+
position: absolute;
|
|
1803
|
+
left: 0;
|
|
1804
|
+
|
|
1805
|
+
&:before,
|
|
1806
|
+
&:after {
|
|
1807
|
+
display: block;
|
|
1808
|
+
position: absolute;
|
|
1809
|
+
height: 10px;
|
|
1810
|
+
width: 10px;
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
span.nwb-loader {
|
|
1815
|
+
&.nwb-is-loading {
|
|
1816
|
+
z-index: 2;
|
|
1817
|
+
opacity: 1;
|
|
1818
|
+
position: absolute;
|
|
1819
|
+
top: -7px;
|
|
1820
|
+
left: -7px;
|
|
1821
|
+
width: calc(100% + 16px) !important;
|
|
1822
|
+
height: calc(100% + 14px) !important;
|
|
1823
|
+
min-width: 12px;
|
|
1824
|
+
min-height: 1em;
|
|
1825
|
+
margin: 0;
|
|
1826
|
+
background-size: auto 70%;
|
|
1827
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='lds-ellipsis' style='background: none;'%3E%3C!--circle(cx='16',cy='50',r='10')--%3E%3Ccircle cx='84' cy='50' r='0' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='10;0;0;0;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='84;84;84;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='28.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='3.71582' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/circle%3E%3Ccircle cx='84' cy='50' r='6.28418' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='62.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;0;10;10;10' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;16;50;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3C/svg%3E");
|
|
1828
|
+
background-repeat: no-repeat;
|
|
1829
|
+
background-position: center center;
|
|
1830
|
+
}
|
|
1831
|
+
}
|
|
1832
|
+
span {
|
|
1833
|
+
color: inherit;
|
|
1834
|
+
font-weight: 500;
|
|
1835
|
+
&:not(.nwb-loader) {
|
|
1836
|
+
display: inline-block;
|
|
1837
|
+
min-width: 12px;
|
|
1838
|
+
}
|
|
1839
|
+
&.nwb-editing {
|
|
1840
|
+
visibility: hidden;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
&.nwb-is-loading {
|
|
1844
|
+
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
1845
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1846
|
+
opacity: 0.25;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
&.nwbSelect {
|
|
1850
|
+
cursor: pointer;
|
|
1851
|
+
}
|
|
1852
|
+
}
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
1856
|
+
position: absolute;
|
|
1857
|
+
content: '';
|
|
1858
|
+
border-bottom: dashed 1px $wac-primary;
|
|
1757
1859
|
width: 100%;
|
|
1758
|
-
|
|
1759
|
-
|
|
1860
|
+
bottom: 0;
|
|
1861
|
+
left: 0;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.wac-edit-in-place.nwbSelect {
|
|
1865
|
+
&__container {
|
|
1760
1866
|
display: flex;
|
|
1761
|
-
flex-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
border:
|
|
1775
|
-
border-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
transition: 0.3s ease;
|
|
1780
|
-
cursor: pointer;
|
|
1781
|
-
padding: 12px 20px;
|
|
1782
|
-
.event {
|
|
1783
|
-
position: absolute;
|
|
1784
|
-
top: 0;
|
|
1785
|
-
left: 0;
|
|
1786
|
-
width: 100%;
|
|
1787
|
-
height: 100%;
|
|
1788
|
-
z-index: 2;
|
|
1789
|
-
display: inline-block;
|
|
1790
|
-
}
|
|
1791
|
-
i {
|
|
1792
|
-
color: $wac-main-text;
|
|
1793
|
-
font-size: rem(14);
|
|
1794
|
-
margin: 0 rem(10) 0 0;
|
|
1795
|
-
}
|
|
1796
|
-
&:hover,
|
|
1797
|
-
&:focus,
|
|
1798
|
-
&.active {
|
|
1799
|
-
border-color: $wac-wizishop-blue;
|
|
1800
|
-
color: $wac-main-text;
|
|
1801
|
-
}
|
|
1802
|
-
&:not(:last-child) {
|
|
1803
|
-
margin: 0 rem(10) rem(10) 0;
|
|
1804
|
-
}
|
|
1867
|
+
flex-direction: column;
|
|
1868
|
+
position: absolute;
|
|
1869
|
+
white-space: nowrap;
|
|
1870
|
+
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
1871
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1872
|
+
border-radius: 3px;
|
|
1873
|
+
top: calc(100% + 7px);
|
|
1874
|
+
|
|
1875
|
+
&::before {
|
|
1876
|
+
position: absolute;
|
|
1877
|
+
top: -7px;
|
|
1878
|
+
left: 9px;
|
|
1879
|
+
content: '';
|
|
1880
|
+
border-left: 7px solid transparent;
|
|
1881
|
+
border-right: 7px solid transparent;
|
|
1882
|
+
border-bottom: 7px solid $wac-edit-in-place-before-border-bottom;
|
|
1883
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
1884
|
+
display: inline-block;
|
|
1805
1885
|
}
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1886
|
+
|
|
1887
|
+
&::after {
|
|
1888
|
+
position: absolute;
|
|
1889
|
+
top: -6px;
|
|
1890
|
+
left: 10px;
|
|
1891
|
+
content: '';
|
|
1892
|
+
border-left: 6px solid transparent;
|
|
1893
|
+
border-right: 6px solid transparent;
|
|
1894
|
+
border-bottom: 6px solid $wac-white;
|
|
1809
1895
|
display: inline-block;
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
&__item {
|
|
1899
|
+
border: none;
|
|
1900
|
+
padding: 8px 10px;
|
|
1901
|
+
background-color: $wac-white;
|
|
1814
1902
|
cursor: pointer;
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
left: 0;
|
|
1826
|
-
bottom: -2px;
|
|
1827
|
-
transition: 0.3s ease;
|
|
1903
|
+
transition: all 0.3s ease-in-out;
|
|
1904
|
+
z-index: 3;
|
|
1905
|
+
font-size: rem(12);
|
|
1906
|
+
text-align: left;
|
|
1907
|
+
border-radius: 0;
|
|
1908
|
+
|
|
1909
|
+
&:hover {
|
|
1910
|
+
background-color: darken($wac-white, 10%);
|
|
1911
|
+
color: $wac-main-text;
|
|
1912
|
+
transition: all 0.3s ease-in-out;
|
|
1828
1913
|
}
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1914
|
+
|
|
1915
|
+
&--selected,
|
|
1916
|
+
&--selected:hover {
|
|
1917
|
+
background-color: $wac-wizishop-blue;
|
|
1918
|
+
color: $wac-white;
|
|
1919
|
+
transition: all 0.3s ease-in-out;
|
|
1835
1920
|
}
|
|
1836
1921
|
}
|
|
1837
1922
|
}
|
|
1923
|
+
|
|
1924
|
+
&__background {
|
|
1925
|
+
position: fixed;
|
|
1926
|
+
top: 0;
|
|
1927
|
+
left: 0;
|
|
1928
|
+
width: 100vw;
|
|
1929
|
+
height: 100vh;
|
|
1930
|
+
z-index: 2;
|
|
1931
|
+
}
|
|
1838
1932
|
}
|
|
1839
1933
|
|
|
1840
1934
|
.wac-switch {
|
|
@@ -2210,9 +2304,10 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2210
2304
|
}
|
|
2211
2305
|
}
|
|
2212
2306
|
}
|
|
2213
|
-
.wac-
|
|
2214
|
-
|
|
2215
|
-
|
|
2307
|
+
.wac-info {
|
|
2308
|
+
display: inline-block;
|
|
2309
|
+
width: 40px;
|
|
2310
|
+
height: 40px;
|
|
2216
2311
|
|
|
2217
2312
|
&__wrapper {
|
|
2218
2313
|
@include flexbox();
|
|
@@ -2220,20 +2315,48 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2220
2315
|
@include align-items(center);
|
|
2221
2316
|
width: 100%;
|
|
2222
2317
|
height: 100%;
|
|
2223
|
-
|
|
2224
|
-
border: 1px solid $wac-border-light;
|
|
2225
|
-
background-position: center;
|
|
2226
|
-
background-size: contain;
|
|
2227
|
-
background-repeat: no-repeat;
|
|
2228
|
-
|
|
2229
|
-
&.empty {
|
|
2230
|
-
background-color: $wac-gray-background;
|
|
2231
|
-
}
|
|
2318
|
+
position: relative;
|
|
2232
2319
|
|
|
2233
2320
|
i {
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2321
|
+
font-size: 14px;
|
|
2322
|
+
line-height: 25px;
|
|
2323
|
+
color: $wac-second-color;
|
|
2324
|
+
transition: color 0.3s ease-in-out;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
&__sublevel {
|
|
2328
|
+
position: absolute;
|
|
2329
|
+
width: 350px;
|
|
2330
|
+
top: 13px;
|
|
2331
|
+
left: 100%;
|
|
2332
|
+
z-index: -1;
|
|
2333
|
+
opacity: 0;
|
|
2334
|
+
background-color: $wac-white;
|
|
2335
|
+
border-radius: rem(3);
|
|
2336
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
2337
|
+
visibility: hidden;
|
|
2338
|
+
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
2339
|
+
|
|
2340
|
+
&__container {
|
|
2341
|
+
padding: 15px 20px;
|
|
2342
|
+
font-size: rem(14);
|
|
2343
|
+
line-height: rem(25);
|
|
2344
|
+
color: $wac-second-color;
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
&:hover {
|
|
2349
|
+
i {
|
|
2350
|
+
color: $wac-input-active-color;
|
|
2351
|
+
transition: color 0.3s ease-in-out;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.wac-info__wrapper__sublevel {
|
|
2355
|
+
visibility: visible;
|
|
2356
|
+
opacity: 1;
|
|
2357
|
+
z-index: 2;
|
|
2358
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
2359
|
+
}
|
|
2237
2360
|
}
|
|
2238
2361
|
}
|
|
2239
2362
|
}
|
|
@@ -2346,6 +2469,10 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2346
2469
|
width: 100%;
|
|
2347
2470
|
border-bottom: 1px solid $wac-textarea-border-color;
|
|
2348
2471
|
|
|
2472
|
+
&:first-child:last-child {
|
|
2473
|
+
border-bottom: none;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2349
2476
|
&__cell {
|
|
2350
2477
|
@include flexbox();
|
|
2351
2478
|
@include flex(1);
|
|
@@ -2420,8 +2547,8 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2420
2547
|
font-size: rem(14);
|
|
2421
2548
|
line-height: rem(16);
|
|
2422
2549
|
border-radius: rem(3);
|
|
2423
|
-
padding: rem(
|
|
2424
|
-
font-weight:
|
|
2550
|
+
padding: rem(9);
|
|
2551
|
+
font-weight: 600;
|
|
2425
2552
|
transition: 0.3s ease;
|
|
2426
2553
|
|
|
2427
2554
|
&.big {
|
|
@@ -3453,174 +3580,88 @@ span.wac-tooltip {
|
|
|
3453
3580
|
}
|
|
3454
3581
|
}
|
|
3455
3582
|
}
|
|
3456
|
-
.wac-
|
|
3457
|
-
display: inline-block;
|
|
3458
|
-
position: relative;
|
|
3459
|
-
width: auto;
|
|
3460
|
-
min-width: 12px;
|
|
3461
|
-
min-height: 1.4em;
|
|
3462
|
-
|
|
3463
|
-
input {
|
|
3464
|
-
font-size: inherit;
|
|
3465
|
-
transition: width 50ms;
|
|
3466
|
-
position: absolute;
|
|
3467
|
-
top: 0;
|
|
3468
|
-
left: -5px;
|
|
3469
|
-
width: calc(100% + 16px) !important;
|
|
3470
|
-
height: calc(100% + 14px) !important;
|
|
3471
|
-
padding: 5px;
|
|
3472
|
-
z-index: 1;
|
|
3473
|
-
margin: 0;
|
|
3474
|
-
outline: none !important;
|
|
3475
|
-
border: 1px solid $wac-edit-in-place-border;
|
|
3476
|
-
background: inherit;
|
|
3477
|
-
transform: translateY(-17%);
|
|
3478
|
-
background-color: $wac-edit-in-place-background;
|
|
3479
|
-
|
|
3480
|
-
&.nwb-editable {
|
|
3481
|
-
text-decoration: none;
|
|
3482
|
-
color: inherit;
|
|
3483
|
-
border: none;
|
|
3484
|
-
cursor: pointer;
|
|
3485
|
-
height: 26px;
|
|
3486
|
-
}
|
|
3487
|
-
|
|
3488
|
-
&.nwb-editing {
|
|
3489
|
-
color: $wac-edit-in-place-border;
|
|
3490
|
-
}
|
|
3491
|
-
}
|
|
3492
|
-
|
|
3493
|
-
div.select {
|
|
3494
|
-
position: absolute;
|
|
3495
|
-
left: 0;
|
|
3496
|
-
|
|
3497
|
-
&:before,
|
|
3498
|
-
&:after {
|
|
3499
|
-
display: block;
|
|
3500
|
-
position: absolute;
|
|
3501
|
-
height: 10px;
|
|
3502
|
-
width: 10px;
|
|
3503
|
-
}
|
|
3504
|
-
}
|
|
3505
|
-
|
|
3506
|
-
span.nwb-loader {
|
|
3507
|
-
&.nwb-is-loading {
|
|
3508
|
-
z-index: 2;
|
|
3509
|
-
opacity: 1;
|
|
3510
|
-
position: absolute;
|
|
3511
|
-
top: -7px;
|
|
3512
|
-
left: -7px;
|
|
3513
|
-
width: calc(100% + 16px) !important;
|
|
3514
|
-
height: calc(100% + 14px) !important;
|
|
3515
|
-
min-width: 12px;
|
|
3516
|
-
min-height: 1em;
|
|
3517
|
-
margin: 0;
|
|
3518
|
-
background-size: auto 70%;
|
|
3519
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='lds-ellipsis' style='background: none;'%3E%3C!--circle(cx='16',cy='50',r='10')--%3E%3Ccircle cx='84' cy='50' r='0' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='10;0;0;0;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='84;84;84;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='28.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='3.71582' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/circle%3E%3Ccircle cx='84' cy='50' r='6.28418' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='62.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;0;10;10;10' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;16;50;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3C/svg%3E");
|
|
3520
|
-
background-repeat: no-repeat;
|
|
3521
|
-
background-position: center center;
|
|
3522
|
-
}
|
|
3523
|
-
}
|
|
3524
|
-
span {
|
|
3525
|
-
color: inherit;
|
|
3526
|
-
font-weight: 500;
|
|
3527
|
-
&:not(.nwb-loader) {
|
|
3528
|
-
display: inline-block;
|
|
3529
|
-
min-width: 12px;
|
|
3530
|
-
}
|
|
3531
|
-
&.nwb-editing {
|
|
3532
|
-
visibility: hidden;
|
|
3533
|
-
}
|
|
3534
|
-
|
|
3535
|
-
&.nwb-is-loading {
|
|
3536
|
-
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
3537
|
-
color: rgba(0, 0, 0, 0.4);
|
|
3538
|
-
opacity: 0.25;
|
|
3539
|
-
}
|
|
3540
|
-
|
|
3541
|
-
&.nwbSelect {
|
|
3542
|
-
cursor: pointer;
|
|
3543
|
-
}
|
|
3544
|
-
}
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
3548
|
-
position: absolute;
|
|
3549
|
-
content: '';
|
|
3550
|
-
border-bottom: dashed 1px $wac-primary;
|
|
3583
|
+
.wac-filters {
|
|
3551
3584
|
width: 100%;
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
.wac-edit-in-place.nwbSelect {
|
|
3557
|
-
&__container {
|
|
3585
|
+
&__wrapper {
|
|
3586
|
+
width: 100%;
|
|
3558
3587
|
display: flex;
|
|
3559
|
-
flex-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
border
|
|
3573
|
-
border-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3588
|
+
flex-wrap: wrap;
|
|
3589
|
+
justify-content: flex-start;
|
|
3590
|
+
align-items: center;
|
|
3591
|
+
align-content: center;
|
|
3592
|
+
button {
|
|
3593
|
+
position: relative;
|
|
3594
|
+
width: auto;
|
|
3595
|
+
display: flex;
|
|
3596
|
+
align-items: center;
|
|
3597
|
+
font-size: rem(14);
|
|
3598
|
+
line-height: rem(16);
|
|
3599
|
+
font-weight: 400;
|
|
3600
|
+
color: $wac-second-color;
|
|
3601
|
+
border: 1px solid $wac-border-light;
|
|
3602
|
+
border-radius: 3px;
|
|
3603
|
+
background: transparent;
|
|
3604
|
+
box-shadow: none;
|
|
3605
|
+
margin-bottom: rem(10);
|
|
3606
|
+
transition: 0.3s ease;
|
|
3607
|
+
cursor: pointer;
|
|
3608
|
+
padding: 12px 20px;
|
|
3609
|
+
.event {
|
|
3610
|
+
position: absolute;
|
|
3611
|
+
top: 0;
|
|
3612
|
+
left: 0;
|
|
3613
|
+
width: 100%;
|
|
3614
|
+
height: 100%;
|
|
3615
|
+
z-index: 2;
|
|
3616
|
+
display: inline-block;
|
|
3617
|
+
}
|
|
3618
|
+
i {
|
|
3619
|
+
color: $wac-main-text;
|
|
3620
|
+
font-size: rem(14);
|
|
3621
|
+
margin: 0 rem(10) 0 0;
|
|
3622
|
+
}
|
|
3623
|
+
&:hover,
|
|
3624
|
+
&:focus,
|
|
3625
|
+
&.active {
|
|
3626
|
+
border-color: $wac-wizishop-blue;
|
|
3627
|
+
color: $wac-main-text;
|
|
3628
|
+
}
|
|
3629
|
+
&:not(:last-child) {
|
|
3630
|
+
margin: 0 rem(10) rem(10) 0;
|
|
3631
|
+
}
|
|
3577
3632
|
}
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
top: -6px;
|
|
3582
|
-
left: 10px;
|
|
3583
|
-
content: '';
|
|
3584
|
-
border-left: 6px solid transparent;
|
|
3585
|
-
border-right: 6px solid transparent;
|
|
3586
|
-
border-bottom: 6px solid $wac-white;
|
|
3633
|
+
> span {
|
|
3634
|
+
position: relative;
|
|
3635
|
+
color: $wac-link-color;
|
|
3587
3636
|
display: inline-block;
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
padding: 8px 10px;
|
|
3593
|
-
background-color: $wac-white;
|
|
3637
|
+
transition: 0.3s ease;
|
|
3638
|
+
font-size: rem(14);
|
|
3639
|
+
line-height: rem(16);
|
|
3640
|
+
margin: 0 0 0 rem(30);
|
|
3594
3641
|
cursor: pointer;
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3642
|
+
z-index: 1;
|
|
3643
|
+
&:before {
|
|
3644
|
+
content: '';
|
|
3645
|
+
display: block;
|
|
3646
|
+
position: absolute;
|
|
3647
|
+
width: 100%;
|
|
3648
|
+
max-width: 0;
|
|
3649
|
+
height: 1px;
|
|
3650
|
+
border-radius: 3px;
|
|
3651
|
+
background-color: darken($wac-link-color, 15%);
|
|
3652
|
+
left: 0;
|
|
3653
|
+
bottom: -2px;
|
|
3654
|
+
transition: 0.3s ease;
|
|
3605
3655
|
}
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3656
|
+
&:hover,
|
|
3657
|
+
&:focus {
|
|
3658
|
+
color: darken($wac-link-color, 15%);
|
|
3659
|
+
&:before {
|
|
3660
|
+
max-width: 100%;
|
|
3661
|
+
}
|
|
3612
3662
|
}
|
|
3613
3663
|
}
|
|
3614
3664
|
}
|
|
3615
|
-
|
|
3616
|
-
&__background {
|
|
3617
|
-
position: fixed;
|
|
3618
|
-
top: 0;
|
|
3619
|
-
left: 0;
|
|
3620
|
-
width: 100vw;
|
|
3621
|
-
height: 100vh;
|
|
3622
|
-
z-index: 2;
|
|
3623
|
-
}
|
|
3624
3665
|
}
|
|
3625
3666
|
h1.wac-h1 {
|
|
3626
3667
|
font-size: rem(30);
|
|
@@ -3628,10 +3669,9 @@ h1.wac-h1 {
|
|
|
3628
3669
|
font-weight: 600;
|
|
3629
3670
|
color: $wac-main-text;
|
|
3630
3671
|
}
|
|
3631
|
-
.wac-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
height: 40px;
|
|
3672
|
+
.wac-image {
|
|
3673
|
+
width: 60px;
|
|
3674
|
+
height: 60px;
|
|
3635
3675
|
|
|
3636
3676
|
&__wrapper {
|
|
3637
3677
|
@include flexbox();
|
|
@@ -3639,48 +3679,20 @@ h1.wac-h1 {
|
|
|
3639
3679
|
@include align-items(center);
|
|
3640
3680
|
width: 100%;
|
|
3641
3681
|
height: 100%;
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
color: $wac-second-color;
|
|
3648
|
-
transition: color 0.3s ease-in-out;
|
|
3649
|
-
}
|
|
3650
|
-
|
|
3651
|
-
&__sublevel {
|
|
3652
|
-
position: absolute;
|
|
3653
|
-
width: 350px;
|
|
3654
|
-
top: 13px;
|
|
3655
|
-
left: 100%;
|
|
3656
|
-
z-index: -1;
|
|
3657
|
-
opacity: 0;
|
|
3658
|
-
background-color: $wac-white;
|
|
3659
|
-
border-radius: rem(3);
|
|
3660
|
-
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
3661
|
-
visibility: hidden;
|
|
3662
|
-
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
3682
|
+
border-radius: 3px;
|
|
3683
|
+
border: 1px solid $wac-border-light;
|
|
3684
|
+
background-position: center;
|
|
3685
|
+
background-size: contain;
|
|
3686
|
+
background-repeat: no-repeat;
|
|
3663
3687
|
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
font-size: rem(14);
|
|
3667
|
-
line-height: rem(25);
|
|
3668
|
-
color: $wac-second-color;
|
|
3669
|
-
}
|
|
3688
|
+
&.empty {
|
|
3689
|
+
background-color: $wac-gray-background;
|
|
3670
3690
|
}
|
|
3671
3691
|
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
}
|
|
3677
|
-
|
|
3678
|
-
.wac-info__wrapper__sublevel {
|
|
3679
|
-
visibility: visible;
|
|
3680
|
-
opacity: 1;
|
|
3681
|
-
z-index: 2;
|
|
3682
|
-
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
3683
|
-
}
|
|
3692
|
+
i {
|
|
3693
|
+
color: $wac-border-form;
|
|
3694
|
+
font-size: 25px;
|
|
3695
|
+
line-height: 23px;
|
|
3684
3696
|
}
|
|
3685
3697
|
}
|
|
3686
3698
|
}
|
|
@@ -5587,7 +5599,7 @@ a.wac-link {
|
|
|
5587
5599
|
|
|
5588
5600
|
&__sublevel {
|
|
5589
5601
|
position: absolute;
|
|
5590
|
-
width: 160px;
|
|
5602
|
+
min-width: 160px;
|
|
5591
5603
|
top: 100%;
|
|
5592
5604
|
right: 0;
|
|
5593
5605
|
z-index: -1;
|
|
@@ -5601,6 +5613,7 @@ a.wac-link {
|
|
|
5601
5613
|
&__container {
|
|
5602
5614
|
padding: 10px 10px;
|
|
5603
5615
|
border: 1px solid $wac-border-color;
|
|
5616
|
+
border-radius: 3px;
|
|
5604
5617
|
|
|
5605
5618
|
&__item {
|
|
5606
5619
|
padding: 5.7px 10px;
|