@oxyshop/admin 1.3.51 → 1.3.52
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/lib/style.css +373 -373
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -1,3 +1,265 @@
|
|
|
1
|
+
.sylius-filters {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
margin-left: -10px;
|
|
5
|
+
margin-right: -10px;
|
|
6
|
+
}
|
|
7
|
+
.sylius-filters__field {
|
|
8
|
+
flex-grow: 1;
|
|
9
|
+
min-width: 360px;
|
|
10
|
+
margin-left: 10px;
|
|
11
|
+
margin-right: 10px;
|
|
12
|
+
}
|
|
13
|
+
.sylius-filters .sylius-filters__group {
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-wrap: wrap;
|
|
16
|
+
align-items: flex-start;
|
|
17
|
+
}
|
|
18
|
+
.sylius-filters .sylius-filters__group > .field {
|
|
19
|
+
flex-grow: 1;
|
|
20
|
+
}
|
|
21
|
+
.sylius-filters .sylius-filters__group > input {
|
|
22
|
+
flex-grow: 1;
|
|
23
|
+
width: auto !important;
|
|
24
|
+
}
|
|
25
|
+
.sylius-filters .sylius-filters__group > .disabled.field {
|
|
26
|
+
flex-grow: 0;
|
|
27
|
+
}
|
|
28
|
+
.sylius-filters .sylius-filters__group > .disabled.field input {
|
|
29
|
+
width: 40px !important;
|
|
30
|
+
background: #eeeeee;
|
|
31
|
+
text-align: center;
|
|
32
|
+
}
|
|
33
|
+
.sylius-filters .field {
|
|
34
|
+
margin-bottom: 22px !important;
|
|
35
|
+
}
|
|
36
|
+
.sylius-filters .field label {
|
|
37
|
+
font-weight: 700 !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.sylius-filters select {
|
|
41
|
+
-webkit-appearance: none;
|
|
42
|
+
-moz-appearance: none;
|
|
43
|
+
appearance: none;
|
|
44
|
+
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23444444'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat !important;
|
|
45
|
+
background-size: 8px 12px !important;
|
|
46
|
+
background-position: calc(100% - 10px) calc(50% + 3px) !important;
|
|
47
|
+
}
|
|
48
|
+
.sylius-filters .sylius-filters__group input, .sylius-filters .sylius-filters__group select {
|
|
49
|
+
border-radius: 0 !important;
|
|
50
|
+
border-right-width: 0 !important;
|
|
51
|
+
}
|
|
52
|
+
.sylius-filters .sylius-filters__group .field:last-child input:last-child,
|
|
53
|
+
.sylius-filters .sylius-filters__group .field:last-child select:last-child {
|
|
54
|
+
border-right-width: 1px !important;
|
|
55
|
+
border-radius: 0 0.28571429rem 0.28571429rem 0 !important;
|
|
56
|
+
}
|
|
57
|
+
.sylius-filters .sylius-filters__group .field:first-child input:first-of-type,
|
|
58
|
+
.sylius-filters .sylius-filters__group .field:first-child select:first-of-type {
|
|
59
|
+
border-radius: 0.28571429rem 0 0 0.28571429rem !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.overflow-x-auto {
|
|
63
|
+
overflow-x: auto;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#wrapper {
|
|
67
|
+
padding: 54px 0 0 0;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
#content {
|
|
71
|
+
padding: 1em;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
#sidebar {
|
|
75
|
+
font-size: 1.1em;
|
|
76
|
+
padding-bottom: 30px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
#logo {
|
|
80
|
+
margin-bottom: 1em;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
body.pushable .pusher {
|
|
84
|
+
background-color: #f9fAfb;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ui.visible.left.sidebar ~ .fixed.menu,
|
|
88
|
+
.ui.visible.left.sidebar ~ .pusher {
|
|
89
|
+
padding-right: 260px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
body.centered {
|
|
93
|
+
background-color: #f9fAfb;
|
|
94
|
+
}
|
|
95
|
+
body.centered .grid {
|
|
96
|
+
height: 100%;
|
|
97
|
+
}
|
|
98
|
+
body.centered .column {
|
|
99
|
+
padding: 1em;
|
|
100
|
+
max-width: 450px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
select.ui.dropdown[multiple=multiple] {
|
|
104
|
+
height: 100px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.ui.segments {
|
|
108
|
+
border: 0;
|
|
109
|
+
}
|
|
110
|
+
.ui.segments .ui.segment {
|
|
111
|
+
border: 1px solid rgba(34, 36, 38, 0.15) !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ui.breadcrumb {
|
|
115
|
+
margin-top: 1em;
|
|
116
|
+
margin-left: 1em;
|
|
117
|
+
margin-bottom: 1em;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
th a {
|
|
121
|
+
color: rgba(0, 0, 0, 0.87);
|
|
122
|
+
}
|
|
123
|
+
th a:hover {
|
|
124
|
+
color: rgba(0, 0, 0, 0.87);
|
|
125
|
+
}
|
|
126
|
+
th a:visited {
|
|
127
|
+
color: rgba(0, 0, 0, 0.87);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.ui.compact.segment .inline.fields {
|
|
131
|
+
margin: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ui.hidden.element {
|
|
135
|
+
display: none;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ui.monster.header {
|
|
139
|
+
font-size: 3em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.ui.styled.header {
|
|
143
|
+
text-transform: uppercase;
|
|
144
|
+
letter-spacing: 1px;
|
|
145
|
+
background-color: #f9fAfb;
|
|
146
|
+
font-size: 0.9em;
|
|
147
|
+
padding-bottom: 7px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.ui.input input[readonly] {
|
|
151
|
+
color: #aaa;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.field.loading.transition {
|
|
155
|
+
top: auto;
|
|
156
|
+
left: auto;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.ui.floated.dividing.empty {
|
|
160
|
+
top: 100%;
|
|
161
|
+
bottom: auto;
|
|
162
|
+
padding: 0;
|
|
163
|
+
margin: 0;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.ui.left.floated.dividing.empty ~ .ui.dropdown > .menu {
|
|
167
|
+
right: auto;
|
|
168
|
+
left: 0;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.ui.right.floated.dividing.empty ~ .ui.dropdown > .menu {
|
|
172
|
+
right: 0;
|
|
173
|
+
left: auto;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk,
|
|
177
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__pagination,
|
|
178
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__perpage {
|
|
179
|
+
padding-bottom: 1rem;
|
|
180
|
+
}
|
|
181
|
+
.sylius-grid-wrapper .sylius-grid-nav__bulk .ui.red.labeled.icon.button:disabled {
|
|
182
|
+
background: #b9babb !important;
|
|
183
|
+
}
|
|
184
|
+
.sylius-grid-wrapper .sylius-grid-table-wrapper {
|
|
185
|
+
overflow-x: auto;
|
|
186
|
+
margin-bottom: 1rem;
|
|
187
|
+
}
|
|
188
|
+
.sylius-grid-wrapper .sylius-grid-table-wrapper .ui.buttons, .sylius-grid-wrapper .sylius-grid-table-wrapper .ui.label {
|
|
189
|
+
white-space: nowrap;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@media only screen and (min-width: 768px) {
|
|
193
|
+
.sylius-grid-wrapper .sylius-grid-nav {
|
|
194
|
+
display: flex;
|
|
195
|
+
flex-wrap: wrap;
|
|
196
|
+
margin-left: -1rem;
|
|
197
|
+
margin-right: -1rem;
|
|
198
|
+
}
|
|
199
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk,
|
|
200
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__pagination,
|
|
201
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__perpage {
|
|
202
|
+
padding-left: 1rem;
|
|
203
|
+
padding-right: 1rem;
|
|
204
|
+
}
|
|
205
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk {
|
|
206
|
+
display: flex;
|
|
207
|
+
}
|
|
208
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk .button {
|
|
209
|
+
padding-top: 0.99em !important;
|
|
210
|
+
padding-bottom: 0.99em !important;
|
|
211
|
+
}
|
|
212
|
+
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__pagination {
|
|
213
|
+
flex-grow: 1;
|
|
214
|
+
}
|
|
215
|
+
.sylius-grid-wrapper .pagination {
|
|
216
|
+
flex-wrap: wrap;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
#wrapper.full.height {
|
|
220
|
+
position: relative;
|
|
221
|
+
padding-bottom: 80px !important;
|
|
222
|
+
min-height: 100vh;
|
|
223
|
+
}
|
|
224
|
+
#wrapper.full.height::after {
|
|
225
|
+
content: "";
|
|
226
|
+
display: block;
|
|
227
|
+
position: absolute;
|
|
228
|
+
bottom: 60px;
|
|
229
|
+
right: 30px;
|
|
230
|
+
width: calc(100% - 60px);
|
|
231
|
+
height: 1px;
|
|
232
|
+
background: #ebebeb;
|
|
233
|
+
}
|
|
234
|
+
#wrapper.full.height .sylius-footer {
|
|
235
|
+
position: absolute;
|
|
236
|
+
bottom: 20px;
|
|
237
|
+
right: 40px;
|
|
238
|
+
font-size: 13px;
|
|
239
|
+
color: #9a9a9a;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
input[type=color] {
|
|
243
|
+
-webkit-appearance: none;
|
|
244
|
+
border: 1px solid rgba(34, 36, 38, 0.15);
|
|
245
|
+
width: 38px;
|
|
246
|
+
height: 38px;
|
|
247
|
+
padding: 3px;
|
|
248
|
+
border-radius: 99px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
input[type=color]::-webkit-color-swatch,
|
|
252
|
+
input[type=color]::-webkit-color-swatch-wrapper {
|
|
253
|
+
border-radius: 99px;
|
|
254
|
+
border: 0;
|
|
255
|
+
padding: 3px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
input[type=color]::-moz-color-swatch {
|
|
259
|
+
border-radius: 99px;
|
|
260
|
+
border: 0;
|
|
261
|
+
}
|
|
262
|
+
|
|
1
263
|
.attributes-group {
|
|
2
264
|
border: 1px solid rgba(34, 36, 38, 0.1);
|
|
3
265
|
}
|
|
@@ -448,423 +710,161 @@ a:hover {
|
|
|
448
710
|
border-top: 1px solid #eaeaea;
|
|
449
711
|
}
|
|
450
712
|
|
|
451
|
-
.ui.menu {
|
|
452
|
-
box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.03);
|
|
453
|
-
border: 1px solid rgba(34, 36, 38, 0.1);
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.sylius-grid-table-wrapper .ui.sortable.table thead th {
|
|
457
|
-
padding-top: 20px;
|
|
458
|
-
padding-bottom: 20px;
|
|
459
|
-
}
|
|
460
|
-
.sylius-grid-table-wrapper .ui.sortable.table thead th.sorted {
|
|
461
|
-
background: inherit;
|
|
462
|
-
color: #1abb9c;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.sylius-grid-image {
|
|
466
|
-
max-height: 50px;
|
|
467
|
-
max-width: 50px;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.ui.toggle.checkbox input:checked ~ .box:before, .ui.toggle.checkbox input:checked ~ label:before,
|
|
471
|
-
.ui.toggle.checkbox input:focus:checked ~ .box:before, .ui.toggle.checkbox input:focus:checked ~ label:before {
|
|
472
|
-
background-color: #1abb9c !important;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
.ui.top.attached.tabular.menu {
|
|
476
|
-
flex-wrap: wrap;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.stats .stats-grid {
|
|
480
|
-
display: flex;
|
|
481
|
-
flex-wrap: nowrap;
|
|
482
|
-
}
|
|
483
|
-
@media (max-width: 1000px) {
|
|
484
|
-
.stats .stats-grid {
|
|
485
|
-
flex-wrap: wrap;
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
.stats .stats-column {
|
|
489
|
-
flex-grow: 1;
|
|
490
|
-
flex-shrink: 0;
|
|
491
|
-
width: 25%;
|
|
492
|
-
padding: 20px;
|
|
493
|
-
text-align: center;
|
|
494
|
-
box-shadow: 0 -1px 0 0 #ebebeb, 1px 0 0 0 #ebebeb;
|
|
495
|
-
}
|
|
496
|
-
@media (max-width: 1000px) {
|
|
497
|
-
.stats .stats-column {
|
|
498
|
-
width: 50%;
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
@media (max-width: 600px) {
|
|
502
|
-
.stats .stats-column {
|
|
503
|
-
width: 100%;
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
.stats .stats-graph {
|
|
507
|
-
height: 400px;
|
|
508
|
-
}
|
|
509
|
-
.stats .stats-loader {
|
|
510
|
-
background: rgba(249, 249, 249, 0.7) !important;
|
|
511
|
-
}
|
|
512
|
-
.stats .ui.basic.active.button {
|
|
513
|
-
color: #1abb9c !important;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
div[id^=sylius_catalog_promotion_actions] {
|
|
517
|
-
margin-bottom: 10px;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.navigation {
|
|
521
|
-
position: absolute;
|
|
522
|
-
top: 5px;
|
|
523
|
-
bottom: 5px;
|
|
524
|
-
margin: 5px;
|
|
525
|
-
width: 40px;
|
|
526
|
-
border: none;
|
|
527
|
-
display: flex;
|
|
528
|
-
justify-content: center;
|
|
529
|
-
flex-direction: column;
|
|
530
|
-
font-size: 40px;
|
|
531
|
-
color: grey;
|
|
532
|
-
background-color: transparent;
|
|
533
|
-
text-align: center;
|
|
534
|
-
align-items: center;
|
|
535
|
-
cursor: pointer;
|
|
536
|
-
}
|
|
537
|
-
.navigation:hover {
|
|
538
|
-
color: black;
|
|
539
|
-
}
|
|
540
|
-
.navigation i {
|
|
541
|
-
pointer-events: none;
|
|
542
|
-
}
|
|
543
|
-
.navigation:focus {
|
|
544
|
-
outline: 0;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
.navigation-prev {
|
|
548
|
-
left: 0;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
.navigation-next {
|
|
552
|
-
right: 0;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
@media (min-width: 1000px) {
|
|
556
|
-
.sticky-container {
|
|
557
|
-
align-items: flex-start !important;
|
|
558
|
-
}
|
|
559
|
-
.sticky-column {
|
|
560
|
-
position: sticky !important;
|
|
561
|
-
top: 60px;
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
.tax-disabled {
|
|
565
|
-
color: #a0a0a0;
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.order-summary-table .sylius-table-column-tax,
|
|
569
|
-
.order-summary-table .sylius-table-column-total {
|
|
570
|
-
width: 90px;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.text.gray {
|
|
574
|
-
color: #999;
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.ui.buttons form .button {
|
|
578
|
-
border-radius: 0 !important;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.ui.buttons form:first-child .button {
|
|
582
|
-
border-top-left-radius: 0.28571429rem !important;
|
|
583
|
-
border-bottom-left-radius: 0.28571429rem !important;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.ui.buttons form:last-child .button {
|
|
587
|
-
border-top-right-radius: 0.28571429rem !important;
|
|
588
|
-
border-bottom-right-radius: 0.28571429rem !important;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.channel {
|
|
592
|
-
display: inline-flex;
|
|
593
|
-
align-items: baseline;
|
|
594
|
-
flex-wrap: nowrap;
|
|
595
|
-
}
|
|
596
|
-
.channel .channel__item {
|
|
597
|
-
white-space: nowrap;
|
|
598
|
-
}
|
|
599
|
-
.channel .channel__item.label {
|
|
600
|
-
transform: translateY(1px);
|
|
601
|
-
}
|
|
602
|
-
.channel .channel__item:not(:last-child) {
|
|
603
|
-
margin-right: 8px;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.promotion-disabled {
|
|
607
|
-
color: #a0a0a0;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.sylius-filters {
|
|
611
|
-
display: flex;
|
|
612
|
-
flex-wrap: wrap;
|
|
613
|
-
margin-left: -10px;
|
|
614
|
-
margin-right: -10px;
|
|
615
|
-
}
|
|
616
|
-
.sylius-filters__field {
|
|
617
|
-
flex-grow: 1;
|
|
618
|
-
min-width: 360px;
|
|
619
|
-
margin-left: 10px;
|
|
620
|
-
margin-right: 10px;
|
|
621
|
-
}
|
|
622
|
-
.sylius-filters .sylius-filters__group {
|
|
623
|
-
display: flex;
|
|
624
|
-
flex-wrap: wrap;
|
|
625
|
-
align-items: flex-start;
|
|
626
|
-
}
|
|
627
|
-
.sylius-filters .sylius-filters__group > .field {
|
|
628
|
-
flex-grow: 1;
|
|
629
|
-
}
|
|
630
|
-
.sylius-filters .sylius-filters__group > input {
|
|
631
|
-
flex-grow: 1;
|
|
632
|
-
width: auto !important;
|
|
633
|
-
}
|
|
634
|
-
.sylius-filters .sylius-filters__group > .disabled.field {
|
|
635
|
-
flex-grow: 0;
|
|
636
|
-
}
|
|
637
|
-
.sylius-filters .sylius-filters__group > .disabled.field input {
|
|
638
|
-
width: 40px !important;
|
|
639
|
-
background: #eeeeee;
|
|
640
|
-
text-align: center;
|
|
641
|
-
}
|
|
642
|
-
.sylius-filters .field {
|
|
643
|
-
margin-bottom: 22px !important;
|
|
644
|
-
}
|
|
645
|
-
.sylius-filters .field label {
|
|
646
|
-
font-weight: 700 !important;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.sylius-filters select {
|
|
650
|
-
-webkit-appearance: none;
|
|
651
|
-
-moz-appearance: none;
|
|
652
|
-
appearance: none;
|
|
653
|
-
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23444444'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat !important;
|
|
654
|
-
background-size: 8px 12px !important;
|
|
655
|
-
background-position: calc(100% - 10px) calc(50% + 3px) !important;
|
|
656
|
-
}
|
|
657
|
-
.sylius-filters .sylius-filters__group input, .sylius-filters .sylius-filters__group select {
|
|
658
|
-
border-radius: 0 !important;
|
|
659
|
-
border-right-width: 0 !important;
|
|
660
|
-
}
|
|
661
|
-
.sylius-filters .sylius-filters__group .field:last-child input:last-child,
|
|
662
|
-
.sylius-filters .sylius-filters__group .field:last-child select:last-child {
|
|
663
|
-
border-right-width: 1px !important;
|
|
664
|
-
border-radius: 0 0.28571429rem 0.28571429rem 0 !important;
|
|
665
|
-
}
|
|
666
|
-
.sylius-filters .sylius-filters__group .field:first-child input:first-of-type,
|
|
667
|
-
.sylius-filters .sylius-filters__group .field:first-child select:first-of-type {
|
|
668
|
-
border-radius: 0.28571429rem 0 0 0.28571429rem !important;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
.overflow-x-auto {
|
|
672
|
-
overflow-x: auto;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
#wrapper {
|
|
676
|
-
padding: 54px 0 0 0;
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
#content {
|
|
680
|
-
padding: 1em;
|
|
713
|
+
.ui.menu {
|
|
714
|
+
box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.03);
|
|
715
|
+
border: 1px solid rgba(34, 36, 38, 0.1);
|
|
681
716
|
}
|
|
682
717
|
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
padding-bottom:
|
|
718
|
+
.sylius-grid-table-wrapper .ui.sortable.table thead th {
|
|
719
|
+
padding-top: 20px;
|
|
720
|
+
padding-bottom: 20px;
|
|
721
|
+
}
|
|
722
|
+
.sylius-grid-table-wrapper .ui.sortable.table thead th.sorted {
|
|
723
|
+
background: inherit;
|
|
724
|
+
color: #1abb9c;
|
|
686
725
|
}
|
|
687
726
|
|
|
688
|
-
|
|
689
|
-
|
|
727
|
+
.sylius-grid-image {
|
|
728
|
+
max-height: 50px;
|
|
729
|
+
max-width: 50px;
|
|
690
730
|
}
|
|
691
731
|
|
|
692
|
-
|
|
693
|
-
|
|
732
|
+
.ui.toggle.checkbox input:checked ~ .box:before, .ui.toggle.checkbox input:checked ~ label:before,
|
|
733
|
+
.ui.toggle.checkbox input:focus:checked ~ .box:before, .ui.toggle.checkbox input:focus:checked ~ label:before {
|
|
734
|
+
background-color: #1abb9c !important;
|
|
694
735
|
}
|
|
695
736
|
|
|
696
|
-
.ui.
|
|
697
|
-
|
|
698
|
-
padding-right: 260px;
|
|
737
|
+
.ui.top.attached.tabular.menu {
|
|
738
|
+
flex-wrap: wrap;
|
|
699
739
|
}
|
|
700
740
|
|
|
701
|
-
|
|
702
|
-
|
|
741
|
+
.stats .stats-grid {
|
|
742
|
+
display: flex;
|
|
743
|
+
flex-wrap: nowrap;
|
|
703
744
|
}
|
|
704
|
-
|
|
705
|
-
|
|
745
|
+
@media (max-width: 1000px) {
|
|
746
|
+
.stats .stats-grid {
|
|
747
|
+
flex-wrap: wrap;
|
|
748
|
+
}
|
|
706
749
|
}
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
750
|
+
.stats .stats-column {
|
|
751
|
+
flex-grow: 1;
|
|
752
|
+
flex-shrink: 0;
|
|
753
|
+
width: 25%;
|
|
754
|
+
padding: 20px;
|
|
755
|
+
text-align: center;
|
|
756
|
+
box-shadow: 0 -1px 0 0 #ebebeb, 1px 0 0 0 #ebebeb;
|
|
710
757
|
}
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
758
|
+
@media (max-width: 1000px) {
|
|
759
|
+
.stats .stats-column {
|
|
760
|
+
width: 50%;
|
|
761
|
+
}
|
|
714
762
|
}
|
|
715
|
-
|
|
716
|
-
.
|
|
717
|
-
|
|
763
|
+
@media (max-width: 600px) {
|
|
764
|
+
.stats .stats-column {
|
|
765
|
+
width: 100%;
|
|
766
|
+
}
|
|
718
767
|
}
|
|
719
|
-
.
|
|
720
|
-
|
|
768
|
+
.stats .stats-graph {
|
|
769
|
+
height: 400px;
|
|
770
|
+
}
|
|
771
|
+
.stats .stats-loader {
|
|
772
|
+
background: rgba(249, 249, 249, 0.7) !important;
|
|
773
|
+
}
|
|
774
|
+
.stats .ui.basic.active.button {
|
|
775
|
+
color: #1abb9c !important;
|
|
721
776
|
}
|
|
722
777
|
|
|
723
|
-
|
|
724
|
-
margin-
|
|
725
|
-
margin-left: 1em;
|
|
726
|
-
margin-bottom: 1em;
|
|
778
|
+
div[id^=sylius_catalog_promotion_actions] {
|
|
779
|
+
margin-bottom: 10px;
|
|
727
780
|
}
|
|
728
781
|
|
|
729
|
-
|
|
730
|
-
|
|
782
|
+
.navigation {
|
|
783
|
+
position: absolute;
|
|
784
|
+
top: 5px;
|
|
785
|
+
bottom: 5px;
|
|
786
|
+
margin: 5px;
|
|
787
|
+
width: 40px;
|
|
788
|
+
border: none;
|
|
789
|
+
display: flex;
|
|
790
|
+
justify-content: center;
|
|
791
|
+
flex-direction: column;
|
|
792
|
+
font-size: 40px;
|
|
793
|
+
color: grey;
|
|
794
|
+
background-color: transparent;
|
|
795
|
+
text-align: center;
|
|
796
|
+
align-items: center;
|
|
797
|
+
cursor: pointer;
|
|
731
798
|
}
|
|
732
|
-
|
|
733
|
-
color:
|
|
799
|
+
.navigation:hover {
|
|
800
|
+
color: black;
|
|
734
801
|
}
|
|
735
|
-
|
|
736
|
-
|
|
802
|
+
.navigation i {
|
|
803
|
+
pointer-events: none;
|
|
737
804
|
}
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
margin: 0;
|
|
805
|
+
.navigation:focus {
|
|
806
|
+
outline: 0;
|
|
741
807
|
}
|
|
742
808
|
|
|
743
|
-
.
|
|
744
|
-
|
|
809
|
+
.navigation-prev {
|
|
810
|
+
left: 0;
|
|
745
811
|
}
|
|
746
812
|
|
|
747
|
-
.
|
|
748
|
-
|
|
813
|
+
.navigation-next {
|
|
814
|
+
right: 0;
|
|
749
815
|
}
|
|
750
816
|
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
817
|
+
@media (min-width: 1000px) {
|
|
818
|
+
.sticky-container {
|
|
819
|
+
align-items: flex-start !important;
|
|
820
|
+
}
|
|
821
|
+
.sticky-column {
|
|
822
|
+
position: sticky !important;
|
|
823
|
+
top: 60px;
|
|
824
|
+
}
|
|
757
825
|
}
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
color: #aaa;
|
|
826
|
+
.tax-disabled {
|
|
827
|
+
color: #a0a0a0;
|
|
761
828
|
}
|
|
762
829
|
|
|
763
|
-
.
|
|
764
|
-
|
|
765
|
-
|
|
830
|
+
.order-summary-table .sylius-table-column-tax,
|
|
831
|
+
.order-summary-table .sylius-table-column-total {
|
|
832
|
+
width: 90px;
|
|
766
833
|
}
|
|
767
834
|
|
|
768
|
-
.
|
|
769
|
-
|
|
770
|
-
bottom: auto;
|
|
771
|
-
padding: 0;
|
|
772
|
-
margin: 0;
|
|
835
|
+
.text.gray {
|
|
836
|
+
color: #999;
|
|
773
837
|
}
|
|
774
838
|
|
|
775
|
-
.ui.
|
|
776
|
-
|
|
777
|
-
left: 0;
|
|
839
|
+
.ui.buttons form .button {
|
|
840
|
+
border-radius: 0 !important;
|
|
778
841
|
}
|
|
779
842
|
|
|
780
|
-
.ui.
|
|
781
|
-
|
|
782
|
-
left:
|
|
843
|
+
.ui.buttons form:first-child .button {
|
|
844
|
+
border-top-left-radius: 0.28571429rem !important;
|
|
845
|
+
border-bottom-left-radius: 0.28571429rem !important;
|
|
783
846
|
}
|
|
784
847
|
|
|
785
|
-
.
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
padding-bottom: 1rem;
|
|
789
|
-
}
|
|
790
|
-
.sylius-grid-wrapper .sylius-grid-nav__bulk .ui.red.labeled.icon.button:disabled {
|
|
791
|
-
background: #b9babb !important;
|
|
792
|
-
}
|
|
793
|
-
.sylius-grid-wrapper .sylius-grid-table-wrapper {
|
|
794
|
-
overflow-x: auto;
|
|
795
|
-
margin-bottom: 1rem;
|
|
796
|
-
}
|
|
797
|
-
.sylius-grid-wrapper .sylius-grid-table-wrapper .ui.buttons, .sylius-grid-wrapper .sylius-grid-table-wrapper .ui.label {
|
|
798
|
-
white-space: nowrap;
|
|
848
|
+
.ui.buttons form:last-child .button {
|
|
849
|
+
border-top-right-radius: 0.28571429rem !important;
|
|
850
|
+
border-bottom-right-radius: 0.28571429rem !important;
|
|
799
851
|
}
|
|
800
852
|
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
margin-left: -1rem;
|
|
806
|
-
margin-right: -1rem;
|
|
807
|
-
}
|
|
808
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk,
|
|
809
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__pagination,
|
|
810
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__perpage {
|
|
811
|
-
padding-left: 1rem;
|
|
812
|
-
padding-right: 1rem;
|
|
813
|
-
}
|
|
814
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk {
|
|
815
|
-
display: flex;
|
|
816
|
-
}
|
|
817
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__bulk .button {
|
|
818
|
-
padding-top: 0.99em !important;
|
|
819
|
-
padding-bottom: 0.99em !important;
|
|
820
|
-
}
|
|
821
|
-
.sylius-grid-wrapper .sylius-grid-nav .sylius-grid-nav__pagination {
|
|
822
|
-
flex-grow: 1;
|
|
823
|
-
}
|
|
824
|
-
.sylius-grid-wrapper .pagination {
|
|
825
|
-
flex-wrap: wrap;
|
|
826
|
-
}
|
|
827
|
-
}
|
|
828
|
-
#wrapper.full.height {
|
|
829
|
-
position: relative;
|
|
830
|
-
padding-bottom: 80px !important;
|
|
831
|
-
min-height: 100vh;
|
|
832
|
-
}
|
|
833
|
-
#wrapper.full.height::after {
|
|
834
|
-
content: "";
|
|
835
|
-
display: block;
|
|
836
|
-
position: absolute;
|
|
837
|
-
bottom: 60px;
|
|
838
|
-
right: 30px;
|
|
839
|
-
width: calc(100% - 60px);
|
|
840
|
-
height: 1px;
|
|
841
|
-
background: #ebebeb;
|
|
853
|
+
.channel {
|
|
854
|
+
display: inline-flex;
|
|
855
|
+
align-items: baseline;
|
|
856
|
+
flex-wrap: nowrap;
|
|
842
857
|
}
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
bottom: 20px;
|
|
846
|
-
right: 40px;
|
|
847
|
-
font-size: 13px;
|
|
848
|
-
color: #9a9a9a;
|
|
858
|
+
.channel .channel__item {
|
|
859
|
+
white-space: nowrap;
|
|
849
860
|
}
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
-webkit-appearance: none;
|
|
853
|
-
border: 1px solid rgba(34, 36, 38, 0.15);
|
|
854
|
-
width: 38px;
|
|
855
|
-
height: 38px;
|
|
856
|
-
padding: 3px;
|
|
857
|
-
border-radius: 99px;
|
|
861
|
+
.channel .channel__item.label {
|
|
862
|
+
transform: translateY(1px);
|
|
858
863
|
}
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
input[type=color]::-webkit-color-swatch-wrapper {
|
|
862
|
-
border-radius: 99px;
|
|
863
|
-
border: 0;
|
|
864
|
-
padding: 3px;
|
|
864
|
+
.channel .channel__item:not(:last-child) {
|
|
865
|
+
margin-right: 8px;
|
|
865
866
|
}
|
|
866
867
|
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
border: 0;
|
|
868
|
+
.promotion-disabled {
|
|
869
|
+
color: #a0a0a0;
|
|
870
870
|
}
|