@wizishop/angular-components 0.0.211 → 0.0.213

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.
@@ -764,7 +764,6 @@ $wac-subtitle-color: #7A87A1!default;
764
764
  width: auto;
765
765
  min-width: unset;
766
766
  max-width: unset;
767
- padding: 10px 30px;
768
767
  .name {
769
768
  white-space: nowrap;
770
769
  }
@@ -2043,6 +2042,285 @@ $wac-subtitle-color: #7A87A1!default;
2043
2042
  }
2044
2043
  }
2045
2044
  }
2045
+ .wac-card-price {
2046
+ width: 100%;
2047
+ padding: 30px;
2048
+ border-radius: 3px;
2049
+ background-color: $wac-white;
2050
+ display: flex;
2051
+ flex-direction: column;
2052
+ border: 1px solid $wac-white;
2053
+
2054
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
2055
+
2056
+ &.selected {
2057
+ border: 1px solid $wac-tag-success;
2058
+ }
2059
+
2060
+ &:hover {
2061
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
2062
+ }
2063
+
2064
+ @include media('<desktop') {
2065
+ padding: 30px;
2066
+ }
2067
+
2068
+ @include media('<tablet') {
2069
+ padding: 20px;
2070
+ }
2071
+
2072
+ .cta {
2073
+ min-height: 40px;
2074
+ }
2075
+
2076
+ > strong {
2077
+ font-size: rem(40);
2078
+ line-height: rem(47);
2079
+ text-align: center;
2080
+ display: block;
2081
+ width: 100%;
2082
+ font-weight: 600;
2083
+ margin: 0 0 -5px;
2084
+ }
2085
+
2086
+ > p {
2087
+ font-size: rem(20);
2088
+ text-transform: uppercase;
2089
+ margin: 0 0 20px;
2090
+ text-align: center;
2091
+ display: block;
2092
+ width: 100%;
2093
+ font-weight: 600;
2094
+ }
2095
+
2096
+ .price {
2097
+ display: flex;
2098
+ align-items: flex-end;
2099
+ width: 100%;
2100
+ justify-content: center;
2101
+ position: relative;
2102
+ color: $wac-tag-success;
2103
+ margin: 0 0 5px;
2104
+
2105
+ .amount {
2106
+ font-size: rem(50);
2107
+ font-weight: 600;
2108
+ margin: 0 5px 0 0;
2109
+ position: relative;
2110
+ line-height: 1;
2111
+ span {
2112
+ position: absolute;
2113
+ top: 5px;
2114
+ left: 100%;
2115
+ margin: 0 0 0 3px;
2116
+ display: block;
2117
+ font-size: rem(20);
2118
+ }
2119
+ }
2120
+
2121
+ .month {
2122
+ font-size: rem(20);
2123
+ margin: 0;
2124
+ font-weight: 500;
2125
+ line-height: 1;
2126
+ transform: translateY(-5px);
2127
+ }
2128
+ }
2129
+
2130
+ .subtitle, .package-subtitle {
2131
+ font-size: rem(12);
2132
+ color: $wac-subtitle-color;
2133
+ margin: 0 0 30px;
2134
+ text-align: center;
2135
+ font-style: italic;
2136
+ }
2137
+
2138
+ .subtitle {
2139
+ &:last-child {
2140
+ margin: 0;
2141
+ }
2142
+ }
2143
+
2144
+ .package-subtitle {
2145
+ margin: 10px 0 30px;
2146
+ }
2147
+
2148
+ .link-bottom {
2149
+ margin: 0;
2150
+ display: flex;
2151
+ justify-content: center;
2152
+ width: 100%;
2153
+ }
2154
+ }
2155
+ .wac-field-checkbox {
2156
+ &.disable-wt {
2157
+ .wac-field-checkbox__row {
2158
+ display: flex;
2159
+ width: 100%;
2160
+ }
2161
+ .is-checkradio[type='checkbox'] {
2162
+ & + label {
2163
+ white-space: normal;
2164
+ line-height: 1.4;
2165
+ padding: 0;
2166
+ > span {
2167
+ margin: 0 0 0 30px;
2168
+ transform: translateY(-4px);
2169
+ }
2170
+ }
2171
+ }
2172
+ }
2173
+ &__row {
2174
+ position: relative;
2175
+ min-width: 100%;
2176
+ margin: 0;
2177
+ }
2178
+ &--nowrap {
2179
+ display: inline-block;
2180
+ width: auto;
2181
+ min-width: 0;
2182
+ margin: 0 10px 10px 0;
2183
+ .field {
2184
+ &__row {
2185
+ width: auto;
2186
+ display: inline-block;
2187
+ margin: 0;
2188
+ }
2189
+ }
2190
+ }
2191
+
2192
+ input[type='text'] {
2193
+ height: 40px;
2194
+ max-height: 40px;
2195
+ padding: 0 20px;
2196
+ line-height: 40px;
2197
+ border: 1px solid $wac-border-form;
2198
+ border-radius: 3px;
2199
+ margin: 15px 0 10px !important;
2200
+ font-size: rem(14) !important;
2201
+ color: $wac-main-text;
2202
+ &:focus {
2203
+ border-color: $wac-wizishop-blue !important;
2204
+ box-shadow: 0px 0px 4px $wac-checkbox-shadow !important;
2205
+ &::-webkit-input-placeholder {
2206
+ /* Chrome/Opera/Safari */
2207
+ opacity: 0;
2208
+ }
2209
+ &::-moz-placeholder {
2210
+ /* Firefox 19+ */
2211
+ opacity: 0;
2212
+ }
2213
+ &:-ms-input-placeholder {
2214
+ /* IE 10+ */
2215
+ opacity: 0;
2216
+ }
2217
+ &:-moz-placeholder {
2218
+ /* Firefox 18- */
2219
+ opacity: 0;
2220
+ }
2221
+ }
2222
+ }
2223
+ &.alone {
2224
+ .is-checkradio[type='checkbox'] {
2225
+ & + label {
2226
+ padding-left: 9px;
2227
+ margin-right: 0px;
2228
+
2229
+ &:before {
2230
+ border-width: 1px;
2231
+ width: 16px;
2232
+ height: 16px;
2233
+ border-radius: 2px;
2234
+ }
2235
+ }
2236
+ &:checked + label {
2237
+ &:after {
2238
+ top: 7px;
2239
+ transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
2240
+ }
2241
+ }
2242
+ }
2243
+ }
2244
+
2245
+ .is-checkradio[type='checkbox'] {
2246
+ outline: 0 !important;
2247
+ top: 0;
2248
+ & + label {
2249
+ font-size: rem(14);
2250
+ line-height: 0;
2251
+ color: $wac-input-radio-color-label;
2252
+ white-space: nowrap;
2253
+ padding: 0 8px;
2254
+ margin-right: 0;
2255
+ outline: 0 !important;
2256
+ &:before {
2257
+ width: 16px;
2258
+ height: 16px;
2259
+ border: 1px solid $wac-border-color;
2260
+ top: 0;
2261
+ transition: all 0.3s ease-in-out;
2262
+ }
2263
+ &:after {
2264
+ top: 2.3px !important;
2265
+ left: 3px !important;
2266
+ width: 10px;
2267
+ height: 12px;
2268
+ border: none !important;
2269
+ background: transparent
2270
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='check' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-5x'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E")
2271
+ center center / 8px 8px no-repeat;
2272
+ transform: scale(1) translateY(0px) translateX(0px) rotate(0deg) !important;
2273
+ transition: all 0.3s ease-in-out;
2274
+ }
2275
+ span {
2276
+ margin: 0 0 0 rem(16);
2277
+ display: inline-block;
2278
+ }
2279
+ &:hover,
2280
+ &:focus {
2281
+ &:before {
2282
+ border-color: $wac-input-active-color !important;
2283
+ }
2284
+ }
2285
+ &:before,
2286
+ &:after {
2287
+ outline: 0 !important;
2288
+ }
2289
+ }
2290
+ &:hover {
2291
+ & + label {
2292
+ color: $wac-input-radio-color-active-label;
2293
+ &:before {
2294
+ border-color: $wac-input-active-color !important;
2295
+ }
2296
+ &:after {
2297
+ border-color: $wac-white !important;
2298
+ }
2299
+ }
2300
+ &:not([disabled]) {
2301
+ & + label {
2302
+ &:before {
2303
+ border-color: $wac-input-active-color !important;
2304
+ }
2305
+ }
2306
+ }
2307
+ }
2308
+ &:checked + label {
2309
+ color: $wac-input-radio-color-active-label;
2310
+ &:before {
2311
+ border: 1px solid $wac-input-active-color;
2312
+ background-color: $wac-input-active-color;
2313
+ transition: all 0.3s ease-in-out;
2314
+ }
2315
+ &:after {
2316
+ left: 7px;
2317
+ top: 8px;
2318
+ transition: all 0.3s ease-in-out;
2319
+ }
2320
+ }
2321
+ }
2322
+
2323
+ }
2046
2324
  .wac-calendar {
2047
2325
  position: relative;
2048
2326
  margin: 0 0 20px;
@@ -2492,380 +2770,101 @@ $wac-subtitle-color: #7A87A1!default;
2492
2770
  &-wrapper {
2493
2771
  border: none !important;
2494
2772
  box-shadow: none;
2495
- background: $wac-white;
2496
- }
2497
- }
2498
-
2499
- .datepicker {
2500
- .datepicker {
2501
- &-nav {
2502
- background: $wac-white !important;
2503
- color: $wac-main-text !important;
2504
- padding: 15px !important;
2505
- }
2506
- }
2507
- }
2508
-
2509
- .datetimepicker .datepicker-nav .datepicker-nav-month,
2510
- .datetimepicker .datepicker-nav .datepicker-nav-year {
2511
- color: $wac-main-text !important;
2512
- font-weight: 500 !important;
2513
- &:hover,
2514
- &:focus {
2515
- color: $wac-wizishop-blue !important;
2516
- }
2517
- }
2518
-
2519
- .datepicker-nav-year {
2520
- font-weight: 500 !important;
2521
- }
2522
-
2523
- .datetimepicker .datepicker-nav .datepicker-nav-previous,
2524
- .datetimepicker .datepicker-nav .datepicker-nav-next {
2525
- border-radius: 3px;
2526
- color: $wac-main-text !important;
2527
- width: 25px !important;
2528
- height: 25px !important;
2529
- display: flex;
2530
- justify-content: center;
2531
- align-items: center;
2532
- align-content: center;
2533
- border: 1px solid $wac-border-light;
2534
- transition: 0.3s ease;
2535
- > svg {
2536
- display: none !important;
2537
- }
2538
- }
2539
-
2540
- .datetimepicker .datepicker-nav .datepicker-nav-previous {
2541
- background: $wac-white
2542
- url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-left' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-left fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z' class=''%3E%3C/path%3E%3C/svg%3E")
2543
- center center no-repeat !important;
2544
- background-size: 6px auto !important;
2545
- &:hover,
2546
- &:focus {
2547
- border-color: $wac-wizishop-blue !important;
2548
- }
2549
- }
2550
-
2551
- .datetimepicker .datepicker-nav .datepicker-nav-next {
2552
- background: $wac-white
2553
- url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z' class=''%3E%3C/path%3E%3C/svg%3E")
2554
- center center no-repeat !important;
2555
- background-size: 6px auto !important;
2556
- &:hover,
2557
- &:focus {
2558
- border-color: $wac-wizishop-blue !important;
2559
- }
2560
- }
2561
-
2562
- .wac-calendar__absolute {
2563
- .datetimepicker .datepicker-body .datepicker-weekdays {
2564
- padding: 0 15px;
2565
- }
2566
- .datepicker-weekdays {
2567
- height: 14px;
2568
- margin: 0 0 rem(12);
2569
- .datepicker-date {
2570
- font-size: rem(12);
2571
- white-space: nowrap;
2572
- line-height: 1;
2573
- padding: 0 !important;
2574
- color: $wac-secondary-color !important;
2575
- }
2576
- }
2577
- .datepicker-days {
2578
- padding: 0 15px !important;
2579
- }
2580
- .datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-active {
2581
- background-color: $wac-wizishop-blue;
2582
- }
2583
- .datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item:hover {
2584
- border-color: $wac-wizishop-blue;
2585
- }
2586
- }
2587
-
2588
- .datetimepicker .datetimepicker-footer {
2589
- display: none;
2590
- }
2591
- .wac-card-price {
2592
- width: 100%;
2593
- padding: 30px;
2594
- border-radius: 3px;
2595
- background-color: $wac-white;
2596
- display: flex;
2597
- flex-direction: column;
2598
- border: 1px solid $wac-white;
2599
-
2600
- box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
2601
-
2602
- &.selected {
2603
- border: 1px solid $wac-tag-success;
2604
- }
2605
-
2606
- &:hover {
2607
- box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
2608
- }
2609
-
2610
- @include media('<desktop') {
2611
- padding: 30px;
2612
- }
2613
-
2614
- @include media('<tablet') {
2615
- padding: 20px;
2616
- }
2617
-
2618
- .cta {
2619
- min-height: 40px;
2620
- }
2621
-
2622
- > strong {
2623
- font-size: rem(40);
2624
- line-height: rem(47);
2625
- text-align: center;
2626
- display: block;
2627
- width: 100%;
2628
- font-weight: 600;
2629
- margin: 0 0 -5px;
2630
- }
2631
-
2632
- > p {
2633
- font-size: rem(20);
2634
- text-transform: uppercase;
2635
- margin: 0 0 20px;
2636
- text-align: center;
2637
- display: block;
2638
- width: 100%;
2639
- font-weight: 600;
2640
- }
2641
-
2642
- .price {
2643
- display: flex;
2644
- align-items: flex-end;
2645
- width: 100%;
2646
- justify-content: center;
2647
- position: relative;
2648
- color: $wac-tag-success;
2649
- margin: 0 0 5px;
2650
-
2651
- .amount {
2652
- font-size: rem(50);
2653
- font-weight: 600;
2654
- margin: 0 5px 0 0;
2655
- position: relative;
2656
- line-height: 1;
2657
- span {
2658
- position: absolute;
2659
- top: 5px;
2660
- left: 100%;
2661
- margin: 0 0 0 3px;
2662
- display: block;
2663
- font-size: rem(20);
2664
- }
2665
- }
2666
-
2667
- .month {
2668
- font-size: rem(20);
2669
- margin: 0;
2670
- font-weight: 500;
2671
- line-height: 1;
2672
- transform: translateY(-5px);
2673
- }
2674
- }
2675
-
2676
- .subtitle, .package-subtitle {
2677
- font-size: rem(12);
2678
- color: $wac-subtitle-color;
2679
- margin: 0 0 30px;
2680
- text-align: center;
2681
- font-style: italic;
2773
+ background: $wac-white;
2682
2774
  }
2775
+ }
2683
2776
 
2684
- .subtitle {
2685
- &:last-child {
2686
- margin: 0;
2777
+ .datepicker {
2778
+ .datepicker {
2779
+ &-nav {
2780
+ background: $wac-white !important;
2781
+ color: $wac-main-text !important;
2782
+ padding: 15px !important;
2687
2783
  }
2688
2784
  }
2785
+ }
2689
2786
 
2690
- .package-subtitle {
2691
- margin: 10px 0 30px;
2787
+ .datetimepicker .datepicker-nav .datepicker-nav-month,
2788
+ .datetimepicker .datepicker-nav .datepicker-nav-year {
2789
+ color: $wac-main-text !important;
2790
+ font-weight: 500 !important;
2791
+ &:hover,
2792
+ &:focus {
2793
+ color: $wac-wizishop-blue !important;
2692
2794
  }
2795
+ }
2693
2796
 
2694
- .link-bottom {
2695
- margin: 0;
2696
- display: flex;
2697
- justify-content: center;
2698
- width: 100%;
2699
- }
2797
+ .datepicker-nav-year {
2798
+ font-weight: 500 !important;
2700
2799
  }
2701
- .wac-field-checkbox {
2702
- &.disable-wt {
2703
- .wac-field-checkbox__row {
2704
- display: flex;
2705
- width: 100%;
2706
- }
2707
- .is-checkradio[type='checkbox'] {
2708
- & + label {
2709
- white-space: normal;
2710
- line-height: 1.4;
2711
- padding: 0;
2712
- > span {
2713
- margin: 0 0 0 30px;
2714
- transform: translateY(-4px);
2715
- }
2716
- }
2717
- }
2718
- }
2719
- &__row {
2720
- position: relative;
2721
- min-width: 100%;
2722
- margin: 0;
2723
- }
2724
- &--nowrap {
2725
- display: inline-block;
2726
- width: auto;
2727
- min-width: 0;
2728
- margin: 0 10px 10px 0;
2729
- .field {
2730
- &__row {
2731
- width: auto;
2732
- display: inline-block;
2733
- margin: 0;
2734
- }
2735
- }
2800
+
2801
+ .datetimepicker .datepicker-nav .datepicker-nav-previous,
2802
+ .datetimepicker .datepicker-nav .datepicker-nav-next {
2803
+ border-radius: 3px;
2804
+ color: $wac-main-text !important;
2805
+ width: 25px !important;
2806
+ height: 25px !important;
2807
+ display: flex;
2808
+ justify-content: center;
2809
+ align-items: center;
2810
+ align-content: center;
2811
+ border: 1px solid $wac-border-light;
2812
+ transition: 0.3s ease;
2813
+ > svg {
2814
+ display: none !important;
2736
2815
  }
2816
+ }
2737
2817
 
2738
- input[type='text'] {
2739
- height: 40px;
2740
- max-height: 40px;
2741
- padding: 0 20px;
2742
- line-height: 40px;
2743
- border: 1px solid $wac-border-form;
2744
- border-radius: 3px;
2745
- margin: 15px 0 10px !important;
2746
- font-size: rem(14) !important;
2747
- color: $wac-main-text;
2748
- &:focus {
2749
- border-color: $wac-wizishop-blue !important;
2750
- box-shadow: 0px 0px 4px $wac-checkbox-shadow !important;
2751
- &::-webkit-input-placeholder {
2752
- /* Chrome/Opera/Safari */
2753
- opacity: 0;
2754
- }
2755
- &::-moz-placeholder {
2756
- /* Firefox 19+ */
2757
- opacity: 0;
2758
- }
2759
- &:-ms-input-placeholder {
2760
- /* IE 10+ */
2761
- opacity: 0;
2762
- }
2763
- &:-moz-placeholder {
2764
- /* Firefox 18- */
2765
- opacity: 0;
2766
- }
2767
- }
2818
+ .datetimepicker .datepicker-nav .datepicker-nav-previous {
2819
+ background: $wac-white
2820
+ url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-left' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-left fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z' class=''%3E%3C/path%3E%3C/svg%3E")
2821
+ center center no-repeat !important;
2822
+ background-size: 6px auto !important;
2823
+ &:hover,
2824
+ &:focus {
2825
+ border-color: $wac-wizishop-blue !important;
2768
2826
  }
2769
- &.alone {
2770
- .is-checkradio[type='checkbox'] {
2771
- & + label {
2772
- padding-left: 9px;
2773
- margin-right: 0px;
2827
+ }
2774
2828
 
2775
- &:before {
2776
- border-width: 1px;
2777
- width: 16px;
2778
- height: 16px;
2779
- border-radius: 2px;
2780
- }
2781
- }
2782
- &:checked + label {
2783
- &:after {
2784
- top: 7px;
2785
- transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
2786
- }
2787
- }
2788
- }
2829
+ .datetimepicker .datepicker-nav .datepicker-nav-next {
2830
+ background: $wac-white
2831
+ url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z' class=''%3E%3C/path%3E%3C/svg%3E")
2832
+ center center no-repeat !important;
2833
+ background-size: 6px auto !important;
2834
+ &:hover,
2835
+ &:focus {
2836
+ border-color: $wac-wizishop-blue !important;
2789
2837
  }
2838
+ }
2790
2839
 
2791
- .is-checkradio[type='checkbox'] {
2792
- outline: 0 !important;
2793
- top: 0;
2794
- & + label {
2795
- font-size: rem(14);
2796
- line-height: 0;
2797
- color: $wac-input-radio-color-label;
2840
+ .wac-calendar__absolute {
2841
+ .datetimepicker .datepicker-body .datepicker-weekdays {
2842
+ padding: 0 15px;
2843
+ }
2844
+ .datepicker-weekdays {
2845
+ height: 14px;
2846
+ margin: 0 0 rem(12);
2847
+ .datepicker-date {
2848
+ font-size: rem(12);
2798
2849
  white-space: nowrap;
2799
- padding: 0 8px;
2800
- margin-right: 0;
2801
- outline: 0 !important;
2802
- &:before {
2803
- width: 16px;
2804
- height: 16px;
2805
- border: 1px solid $wac-border-color;
2806
- top: 0;
2807
- transition: all 0.3s ease-in-out;
2808
- }
2809
- &:after {
2810
- top: 2.3px !important;
2811
- left: 3px !important;
2812
- width: 10px;
2813
- height: 12px;
2814
- border: none !important;
2815
- background: transparent
2816
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='check' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-5x'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E")
2817
- center center / 8px 8px no-repeat;
2818
- transform: scale(1) translateY(0px) translateX(0px) rotate(0deg) !important;
2819
- transition: all 0.3s ease-in-out;
2820
- }
2821
- span {
2822
- margin: 0 0 0 rem(16);
2823
- display: inline-block;
2824
- }
2825
- &:hover,
2826
- &:focus {
2827
- &:before {
2828
- border-color: $wac-input-active-color !important;
2829
- }
2830
- }
2831
- &:before,
2832
- &:after {
2833
- outline: 0 !important;
2834
- }
2835
- }
2836
- &:hover {
2837
- & + label {
2838
- color: $wac-input-radio-color-active-label;
2839
- &:before {
2840
- border-color: $wac-input-active-color !important;
2841
- }
2842
- &:after {
2843
- border-color: $wac-white !important;
2844
- }
2845
- }
2846
- &:not([disabled]) {
2847
- & + label {
2848
- &:before {
2849
- border-color: $wac-input-active-color !important;
2850
- }
2851
- }
2852
- }
2853
- }
2854
- &:checked + label {
2855
- color: $wac-input-radio-color-active-label;
2856
- &:before {
2857
- border: 1px solid $wac-input-active-color;
2858
- background-color: $wac-input-active-color;
2859
- transition: all 0.3s ease-in-out;
2860
- }
2861
- &:after {
2862
- left: 7px;
2863
- top: 8px;
2864
- transition: all 0.3s ease-in-out;
2865
- }
2850
+ line-height: 1;
2851
+ padding: 0 !important;
2852
+ color: $wac-secondary-color !important;
2866
2853
  }
2867
2854
  }
2855
+ .datepicker-days {
2856
+ padding: 0 15px !important;
2857
+ }
2858
+ .datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-active {
2859
+ background-color: $wac-wizishop-blue;
2860
+ }
2861
+ .datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item:hover {
2862
+ border-color: $wac-wizishop-blue;
2863
+ }
2864
+ }
2868
2865
 
2866
+ .datetimepicker .datetimepicker-footer {
2867
+ display: none;
2869
2868
  }
2870
2869
  .wac-confirm-delete {
2871
2870
  position: absolute;
@@ -6423,6 +6422,7 @@ span.wac-tooltip {
6423
6422
  .wac-wrapper-sidebar {
6424
6423
  width: 100%;
6425
6424
  display: flex;
6425
+ align-items: flex-start;
6426
6426
 
6427
6427
  @include media('<desktop') {
6428
6428
  flex-direction: column;
@@ -6451,13 +6451,14 @@ span.wac-tooltip {
6451
6451
  padding-right: 30px;
6452
6452
 
6453
6453
  @include media('<tablet') {
6454
- padding-right: 20px;
6454
+ padding: 0;
6455
6455
  }
6456
6456
 
6457
6457
  &:nth-child(1) {
6458
6458
  background-color: $wac-white;
6459
6459
 
6460
6460
  @include media('<desktop') {
6461
+ padding: 0;
6461
6462
  margin: 0 0 20px;
6462
6463
  }
6463
6464
 
@@ -6471,12 +6472,21 @@ span.wac-tooltip {
6471
6472
  background: $wac-grey center center no-repeat;
6472
6473
  background-size: auto;
6473
6474
 
6475
+ @include media('<tablet') {
6476
+ padding: 0 10px;
6477
+ }
6478
+
6474
6479
  @include media('>=desktop') {
6475
6480
  width: 67%;
6476
6481
  min-width: 67%;
6477
6482
  padding: 30px;
6478
6483
  }
6479
6484
  }
6485
+
6486
+ &.sticky {
6487
+ position: sticky;
6488
+ top: 0;
6489
+ }
6480
6490
  }
6481
6491
  }
6482
6492
  h1.wac-h1 {