@colijnit/transaction 261.20.27 → 261.20.29
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/colijnit-transaction-261.20.28.tgz +0 -0
- package/colijnit-transaction-261.20.29.tgz +0 -0
- package/fesm2022/colijnit-transaction.mjs +40740 -39884
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +6580 -6464
- package/lib/component/checkout/style/_layout.scss +4 -3
- package/lib/component/checkout/style/_material-definition.scss +8 -4
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_layout.scss +53 -0
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_material-definition.scss +1 -0
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_theme.scss +4 -0
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/material.scss +4 -0
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/style/_layout.scss +7 -1
- package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/style/_layout.scss +54 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss +48 -1
- package/lib/component/relation/relation-type/style/_layout.scss +17 -1
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +77 -0
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_material-definition.scss +1 -0
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/return-lines-wizard/style/material.scss +3 -0
- package/lib/component/returns/return-wizard/style/_layout.scss +21 -3
- package/lib/component/returns/return-wizard/wizard-return-line-display/style/_layout.scss +7 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display/style/_material-definition.scss +1 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display/style/material.scss +3 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss +57 -11
- package/lib/component/simple-vertical-stepper/style/_material-definition.scss +1 -1
- package/lib/component/stepper/style/_layout.scss +38 -4
- package/lib/component/stepper/style/_material-definition.scss +3 -3
- package/lib/component/stepper-step/style/_material-definition.scss +1 -1
- package/lib/component/transaction-header-fields/transaction-header-delivery-method-button/style/_layout.scss +2 -2
- package/lib/component/transaction-line/transaction-line-label/style/_layout.scss +3 -2
- package/lib/component/transaction-line/transaction-overview-line/style/_layout.scss +3 -0
- package/lib/component/transaction-line/transaction-overview-line/style/_material-definition.scss +1 -0
- package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
- package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
- package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
- package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
- package/lib/style/transaction-globals.scss +3 -2
- package/package.json +3 -3
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
@include export-module('co-checkout-layout') {
|
|
2
2
|
.co-checkout {
|
|
3
|
-
max-width: $tp-checkout-wrapper-max-width;
|
|
4
|
-
margin: 0 auto;
|
|
5
3
|
display: block;
|
|
6
4
|
width: 100%;
|
|
7
5
|
.co-stepper-content-wrapper {
|
|
@@ -10,6 +8,8 @@
|
|
|
10
8
|
flex-wrap: nowrap;
|
|
11
9
|
column-gap: $tp-checkout-column-gap;
|
|
12
10
|
padding: $tp-checkout-padding;
|
|
11
|
+
max-width: $tp-checkout-wrapper-max-width;
|
|
12
|
+
margin: 0 auto;
|
|
13
13
|
}
|
|
14
14
|
.co-stepper-step {
|
|
15
15
|
flex-basis: $tp-checkout-default-width;
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
.label-description {
|
|
84
84
|
font-size: $tp-checkout-label-description-fontsize;
|
|
85
85
|
font-weight: $tp-checkout-label-description-fontweight;
|
|
86
|
+
text-transform: uppercase;
|
|
86
87
|
}
|
|
87
88
|
}
|
|
88
89
|
.checkout-data-column {
|
|
@@ -92,7 +93,7 @@
|
|
|
92
93
|
width: 100%;
|
|
93
94
|
overflow: hidden;
|
|
94
95
|
background: $tp-checkout-checkout-data-column-background;
|
|
95
|
-
padding:
|
|
96
|
+
padding: $tp-checkout-padding;
|
|
96
97
|
}
|
|
97
98
|
.checkout-data-row {
|
|
98
99
|
display: flex;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
$tp-checkout-font-family: $tp-font-family !default;
|
|
2
|
-
$tp-checkout-padding: 30px !default;
|
|
2
|
+
$tp-checkout-padding: 30px 0 !default;
|
|
3
3
|
$tp-checkout-column-gap: 30px !default;
|
|
4
4
|
$tp-checkout-row-gap: 10px !default;
|
|
5
5
|
$tp-checkout-default-width: 55% !default;
|
|
6
6
|
$tp-checkout-max-width: calc(100% - 450px) !default;
|
|
7
7
|
$tp-checkout-right-panel-max-width: 450px !default;
|
|
8
|
-
$tp-checkout-wrapper-max-width:
|
|
8
|
+
$tp-checkout-wrapper-max-width: 1240px !default;
|
|
9
9
|
$tp-checkout-right-panel-row-gap: 15px !default;
|
|
10
10
|
$tp-checkout-right-panel-width: 400px !default;
|
|
11
11
|
$tp-checkout-right-panel-width: 50% !default;
|
|
12
12
|
$tp-checkout-label-column-font-family: $tp-font-family;
|
|
13
13
|
$tp-checkout-label-fontsize: 12px !default;
|
|
14
|
-
$tp-checkout-label-description-fontsize:
|
|
15
|
-
$tp-checkout-label-description-fontweight:
|
|
14
|
+
$tp-checkout-label-description-fontsize: 14px !default;
|
|
15
|
+
$tp-checkout-label-description-fontweight: 600 !default;
|
|
16
|
+
$tp-checkout-wrapper-header-margin: 10px !default;
|
|
17
|
+
$tp-checkout-wrapper-header-box-shadow: 4px 1px 4px 0px rgba(0, 0, 0, 0.1) !default;
|
|
18
|
+
$tp-checkout-wrapper-header-top: 51px !default;
|
|
19
|
+
$tp-checkout-wrapper-header-height: 60px !default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@include export-module('cc-delivery-planning-overview-tile-dropdown-layout') {
|
|
2
|
+
.co-delivery-planning-overview-tile-dropdown {
|
|
3
|
+
|
|
4
|
+
display: block;
|
|
5
|
+
background: white;
|
|
6
|
+
z-index: 100;
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
.dropdown-panel {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
gap: 0.5rem;
|
|
13
|
+
padding: 0.75rem;
|
|
14
|
+
border: 1px solid #d9dee7;
|
|
15
|
+
border-radius: 0.5rem;
|
|
16
|
+
background: white;
|
|
17
|
+
box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.12);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.dropdown-action {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
width: 100%;
|
|
24
|
+
padding: 0.875rem 1rem;
|
|
25
|
+
border: 1px solid transparent;
|
|
26
|
+
border-radius: 0.625rem;
|
|
27
|
+
background: #f8fafc;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
|
|
30
|
+
font: inherit;
|
|
31
|
+
text-align: left;
|
|
32
|
+
color: #1e293b;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.dropdown-action:hover,
|
|
36
|
+
.dropdown-action:focus-visible {
|
|
37
|
+
background: #eef4ff;
|
|
38
|
+
border-color: #bfd2ff;
|
|
39
|
+
outline: none;
|
|
40
|
+
transform: translateY(-1px);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.dropdown-action:active {
|
|
44
|
+
transform: translateY(0);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.dropdown-action span {
|
|
48
|
+
font-size: 0.95rem;
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
line-height: 1.2rem;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -28,6 +28,20 @@
|
|
|
28
28
|
display: flex;
|
|
29
29
|
flex-direction: column;
|
|
30
30
|
}
|
|
31
|
+
.with-discount-button {
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
|
|
35
|
+
> * {
|
|
36
|
+
flex: 1;
|
|
37
|
+
min-width: 0;
|
|
38
|
+
margin-right: 10px;
|
|
39
|
+
|
|
40
|
+
&:last-child {
|
|
41
|
+
margin-right: 0;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
31
45
|
.divide-discount-button {
|
|
32
46
|
border: none;
|
|
33
47
|
background: transparent;
|
|
@@ -105,5 +119,45 @@
|
|
|
105
119
|
font-weight: $tp-dialog-transaction-discount-total-font-weight;
|
|
106
120
|
}
|
|
107
121
|
}
|
|
122
|
+
.discount-button {
|
|
123
|
+
width: 36px !important;
|
|
124
|
+
height: 36px !important;
|
|
125
|
+
max-width: 36px;
|
|
126
|
+
&.updated {
|
|
127
|
+
background-color: #37c949;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
.discount-codes-modal {
|
|
131
|
+
.co-dialog-wrapper {
|
|
132
|
+
width: 350px !important;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.dialog-header-caption {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
gap: 0.5em;
|
|
139
|
+
|
|
140
|
+
co-icon {
|
|
141
|
+
height: 20px;
|
|
142
|
+
width: 20px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.co-dialog-header-title {
|
|
146
|
+
margin: 0;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.dialog-content {
|
|
151
|
+
margin-top: 20px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.dialog-footer {
|
|
155
|
+
border: none;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
co-input-textarea {
|
|
159
|
+
margin-top: 15px;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
108
162
|
}
|
|
109
163
|
}
|
package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss
CHANGED
|
@@ -14,12 +14,59 @@
|
|
|
14
14
|
flex-direction: row;
|
|
15
15
|
column-gap: 10px;
|
|
16
16
|
> * {
|
|
17
|
-
width: 50
|
|
17
|
+
width: calc(50% - 5px);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
.two-column-grid-item {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
|
|
24
|
+
div {
|
|
25
|
+
flex: 1;
|
|
26
|
+
min-width: 0;
|
|
18
27
|
}
|
|
19
28
|
}
|
|
20
29
|
.transaction-line-button {
|
|
21
30
|
margin: 10px 0;
|
|
22
31
|
}
|
|
32
|
+
.discount-button {
|
|
33
|
+
margin-left: 10px;
|
|
34
|
+
&.updated {
|
|
35
|
+
background-color: #37c949;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.discount-codes-modal {
|
|
39
|
+
.co-dialog-wrapper {
|
|
40
|
+
width: 350px !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.dialog-header-caption {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
gap: 0.5em;
|
|
47
|
+
|
|
48
|
+
co-icon {
|
|
49
|
+
height: 20px;
|
|
50
|
+
width: 20px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.co-dialog-header-title {
|
|
54
|
+
margin: 0;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.dialog-content {
|
|
59
|
+
margin-top: 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.dialog-footer {
|
|
63
|
+
border: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
co-input-textarea {
|
|
67
|
+
margin-top: 15px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
23
70
|
.transaction-line-discount-overview {
|
|
24
71
|
margin: $tp-dialog-transaction-line-discount-overview-margin;
|
|
25
72
|
border: $tp-dialog-transaction-line-discount-overview-border;
|
|
@@ -2,9 +2,25 @@
|
|
|
2
2
|
.co-relation-type {
|
|
3
3
|
.default-data-row {
|
|
4
4
|
display: flex;
|
|
5
|
-
|
|
5
|
+
border: 1px solid #e2e2e2;
|
|
6
|
+
border-radius: 10px;
|
|
7
|
+
padding: 3px;
|
|
8
|
+
width: auto;
|
|
9
|
+
float: left;
|
|
6
10
|
.default-width {
|
|
7
11
|
width: $tp-radio-button-width;
|
|
12
|
+
min-width: 90px;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
.co-radio-button {
|
|
17
|
+
&.selected {
|
|
18
|
+
background: #FFF;
|
|
19
|
+
border-radius: 10px;
|
|
20
|
+
}
|
|
21
|
+
.outer-circle {
|
|
22
|
+
display: none;
|
|
23
|
+
}
|
|
8
24
|
}
|
|
9
25
|
}
|
|
10
26
|
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
@include export-module('co-return-lines-wizard-layout') {
|
|
2
|
+
.co-return-lines-wizard {
|
|
3
|
+
.return-line-wizard-contents {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
row-gap: 10px;
|
|
7
|
+
|
|
8
|
+
.lines-wizard-sub-title {
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.files-upload {
|
|
13
|
+
display: flex;
|
|
14
|
+
|
|
15
|
+
.co-files-upload {
|
|
16
|
+
width: 100%;
|
|
17
|
+
min-height: 150px;
|
|
18
|
+
overflow-x: auto;
|
|
19
|
+
|
|
20
|
+
.co-drag-drop-container {
|
|
21
|
+
padding-top: 30px;
|
|
22
|
+
position: relative;
|
|
23
|
+
margin-top: 0;
|
|
24
|
+
gap: 5px;
|
|
25
|
+
align-items: flex-start;
|
|
26
|
+
|
|
27
|
+
.add-file {
|
|
28
|
+
position: absolute;
|
|
29
|
+
top: 0;
|
|
30
|
+
|
|
31
|
+
.co-tile-render {
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
flex-direction: row-reverse;
|
|
35
|
+
|
|
36
|
+
.add-button {
|
|
37
|
+
position: unset;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.description {
|
|
42
|
+
font-weight: bold;
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.tile {
|
|
48
|
+
padding: 10px;
|
|
49
|
+
border-radius: 5px;
|
|
50
|
+
border: 1px solid #CCCCCC;
|
|
51
|
+
height: 100%;
|
|
52
|
+
|
|
53
|
+
.info {
|
|
54
|
+
max-width: 100px;
|
|
55
|
+
|
|
56
|
+
.description {
|
|
57
|
+
font-size: 10px;
|
|
58
|
+
display: -webkit-box;
|
|
59
|
+
-webkit-line-clamp: 2;
|
|
60
|
+
-webkit-box-orient: vertical;
|
|
61
|
+
overflow: hidden;
|
|
62
|
+
text-overflow: ellipsis;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.trash {
|
|
67
|
+
width: 20px;
|
|
68
|
+
height: 20px;
|
|
69
|
+
padding: 2px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
package/lib/component/returns/return-wizard/return-lines-wizard/style/_material-definition.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,9 +1,27 @@
|
|
|
1
1
|
@include export-module('co-return-wizard-layout') {
|
|
2
2
|
.co-return-wizard {
|
|
3
|
-
|
|
3
|
+
font-family: $tp-co-transaction-search-font-family;
|
|
4
|
+
font-size: $tp-co-transaction-search-font-size;
|
|
5
|
+
.return-wizard-content {
|
|
6
|
+
width: 1000px;
|
|
7
|
+
padding: 20px;
|
|
8
|
+
|
|
4
9
|
display: flex;
|
|
5
|
-
flex-direction:
|
|
6
|
-
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
row-gap: 10px;
|
|
12
|
+
.wizard-title {
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
padding-bottom: 30px;
|
|
16
|
+
}
|
|
17
|
+
.wizard-sub-title {
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
}
|
|
20
|
+
.line-selection-navigation-buttons {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: row;
|
|
23
|
+
justify-content: space-between;
|
|
24
|
+
}
|
|
7
25
|
}
|
|
8
26
|
}
|
|
9
27
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss
CHANGED
|
@@ -3,23 +3,69 @@
|
|
|
3
3
|
.return-line-tile-contents {
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: row;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
padding: 10px 15px;
|
|
8
|
+
border-color: rgba(0, 0, 0, 0.2);
|
|
9
|
+
border-style: solid;
|
|
10
|
+
border-width: 1px 1px 1px 1px;
|
|
11
|
+
margin-bottom: -1px;
|
|
12
|
+
|
|
13
|
+
.return-line-tile-left-contents {
|
|
8
14
|
display: flex;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
column-gap: 30px;
|
|
17
|
+
align-items: flex-start;
|
|
18
|
+
|
|
19
|
+
.wizard-line-checkbox {
|
|
20
|
+
padding-top: 15px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.return-line-image-display {
|
|
24
|
+
display: flex;
|
|
25
|
+
height: 100px;
|
|
26
|
+
width: 100px;
|
|
27
|
+
justify-content: flex-start;
|
|
28
|
+
align-items: flex-start;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.return-line-texts {
|
|
32
|
+
font-size: 12px;
|
|
33
|
+
left: 200px;
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
row-gap: 10px;
|
|
37
|
+
|
|
38
|
+
.return-line-description {
|
|
39
|
+
font-weight: 600;
|
|
40
|
+
display: -webkit-box;
|
|
41
|
+
-webkit-line-clamp: 1;
|
|
42
|
+
-webkit-box-orient: vertical;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
text-overflow: ellipsis;
|
|
45
|
+
white-space: nowrap;
|
|
46
|
+
max-width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.return-line-extra-texts {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
row-gap: 5px;
|
|
53
|
+
padding-top: 5px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
18
56
|
}
|
|
57
|
+
|
|
19
58
|
.return-line-picker-button {
|
|
20
59
|
display: flex;
|
|
21
60
|
flex-direction: row;
|
|
22
61
|
column-gap: 10px;
|
|
62
|
+
height: 100%;
|
|
63
|
+
align-items: center;
|
|
64
|
+
|
|
65
|
+
.return-amount-picker {
|
|
66
|
+
width: 100px;
|
|
67
|
+
height: 30px;
|
|
68
|
+
}
|
|
23
69
|
}
|
|
24
70
|
}
|
|
25
71
|
}
|
|
@@ -26,7 +26,7 @@ $tp-co-stepper-step-title-icon-size: 17px !default;
|
|
|
26
26
|
|
|
27
27
|
$tp-co-stepper-step-button-color: $tp-color-action !default;
|
|
28
28
|
$tp-co-stepper-step-button-background-color: $tp-default-background-accent !default;
|
|
29
|
-
$tp-co-stepper-step-button-icon-size:
|
|
29
|
+
$tp-co-stepper-step-button-icon-size: 13px !default;
|
|
30
30
|
$tp-co-stepper-step-button-icon-color: $tp-color-action !default;
|
|
31
31
|
|
|
32
32
|
$tp-co-stepper-step-save-button-size: auto !default;
|
|
@@ -10,10 +10,27 @@ $index-origin: calc((#{$tp-co-stepper-step-index-size} / 2) + (#{$tp-co-stepper-
|
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
width: 100%;
|
|
12
12
|
box-sizing: initial;
|
|
13
|
+
.stepper-header-wrapper {
|
|
14
|
+
background-color: #FFF;
|
|
15
|
+
display: flex;
|
|
16
|
+
position: sticky;
|
|
17
|
+
top: $tp-checkout-wrapper-header-top;
|
|
18
|
+
z-index: 2;
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
margin-bottom: $tp-checkout-wrapper-header-margin;
|
|
21
|
+
box-shadow: $tp-checkout-wrapper-header-box-shadow;
|
|
22
|
+
height: $tp-checkout-wrapper-header-height;
|
|
23
|
+
}
|
|
13
24
|
.co-stepper-content {
|
|
14
25
|
display: flex;
|
|
15
26
|
flex-direction: row;
|
|
16
|
-
|
|
27
|
+
max-width: $tp-checkout-wrapper-max-width;
|
|
28
|
+
margin: 0 auto;
|
|
29
|
+
position: absolute;
|
|
30
|
+
width: 100%;
|
|
31
|
+
left: 50%;
|
|
32
|
+
transform: translateX(-50%);
|
|
33
|
+
top: 15px;
|
|
17
34
|
}
|
|
18
35
|
.stepper-step {
|
|
19
36
|
position: relative;
|
|
@@ -56,7 +73,7 @@ $index-origin: calc((#{$tp-co-stepper-step-index-size} / 2) + (#{$tp-co-stepper-
|
|
|
56
73
|
box-sizing: initial;
|
|
57
74
|
}
|
|
58
75
|
.description {
|
|
59
|
-
margin-bottom:
|
|
76
|
+
margin-bottom: 5px;
|
|
60
77
|
font-weight: $tp-co-stepper-step-incomplete-description-font-weight;
|
|
61
78
|
}
|
|
62
79
|
&.active {
|
|
@@ -120,11 +137,28 @@ $index-origin: calc((#{$tp-co-stepper-step-index-size} / 2) + (#{$tp-co-stepper-
|
|
|
120
137
|
display: flex;
|
|
121
138
|
column-gap: 5px;
|
|
122
139
|
justify-content: flex-end;
|
|
123
|
-
|
|
124
|
-
|
|
140
|
+
position: sticky;
|
|
141
|
+
bottom: 0;
|
|
142
|
+
background: #FFF;
|
|
143
|
+
padding: 15px 25px;
|
|
144
|
+
z-index: 2;
|
|
145
|
+
box-shadow: 0px 2px 0px 0px rgba(234, 234, 234, 0.7);
|
|
146
|
+
border-top: 10px solid #f8f8fa;
|
|
147
|
+
co-button.co-button {
|
|
148
|
+
background: #212437;
|
|
149
|
+
color: #FFF;
|
|
150
|
+
border: 1px solid #1A73E8;
|
|
151
|
+
height: 32px;
|
|
152
|
+
|
|
125
153
|
.co-icon {
|
|
126
154
|
width: $tp-co-stepper-step-button-icon-size;
|
|
127
155
|
height: $tp-co-stepper-step-button-icon-size;
|
|
156
|
+
svg {
|
|
157
|
+
fill: #FFF;
|
|
158
|
+
}
|
|
159
|
+
svg [fill] {
|
|
160
|
+
fill: #FFF;
|
|
161
|
+
}
|
|
128
162
|
}
|
|
129
163
|
}
|
|
130
164
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$tp-co-stepper-font-family: $tp-font-family !default;
|
|
2
2
|
$tp-co-stepper-font-size: $tp-font-size !default;
|
|
3
|
-
$tp-co-stepper-step-index-size:
|
|
3
|
+
$tp-co-stepper-step-index-size: 8px !default;
|
|
4
4
|
$tp-co-stepper-step-index-border-width: 3px !default;
|
|
5
5
|
$tp-co-stepper-step-index-font-size: $tp-font-size-big !default;
|
|
6
6
|
$tp-co-stepper-step-padding: 30px !default;
|
|
@@ -17,7 +17,7 @@ $tp-co-stepper-step-description-font-weight: bold !default;
|
|
|
17
17
|
$tp-co-stepper-step-incomplete-description-color: rgba(0, 0, 0, 0.3) !default;
|
|
18
18
|
$tp-co-stepper-step-incomplete-description-font-weight: normal !default;
|
|
19
19
|
|
|
20
|
-
$tp-co-stepper-step-title-padding:
|
|
20
|
+
$tp-co-stepper-step-title-padding: 0 25px !default;
|
|
21
21
|
$tp-co-stepper-step-title-column-gap: 10px !default;
|
|
22
22
|
$tp-co-stepper-step-title-font-family: $tp-font-family !default;
|
|
23
23
|
$tp-co-stepper-step-title-font-size: 20px !default;
|
|
@@ -26,5 +26,5 @@ $tp-co-stepper-step-title-icon-size: 17px !default;
|
|
|
26
26
|
|
|
27
27
|
$tp-co-stepper-step-button-color: $tp-color-action !default;
|
|
28
28
|
$tp-co-stepper-step-button-background-color: $tp-default-background-accent !default;
|
|
29
|
-
$tp-co-stepper-step-button-icon-size:
|
|
29
|
+
$tp-co-stepper-step-button-icon-size: 13px !default;
|
|
30
30
|
$tp-co-stepper-step-button-icon-color: $tp-color-action !default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$tp-co-stepper-font-family: $tp-font-family !default;
|
|
2
2
|
$tp-co-stepper-font-size: $tp-font-size !default;
|
|
3
|
-
$tp-co-stepper-step-index-size:
|
|
3
|
+
$tp-co-stepper-step-index-size: 8px !default;
|
|
4
4
|
$tp-co-stepper-step-index-border-width: 3px !default;
|
|
5
5
|
$tp-co-stepper-step-index-font-size: $tp-font-size-big !default;
|
|
6
6
|
$tp-co-stepper-step-padding: 30px !default;
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
.transaction-inside-label {
|
|
4
4
|
position: absolute;
|
|
5
5
|
transform: translateX(-50%);
|
|
6
|
-
top: -
|
|
6
|
+
top: -3px;
|
|
7
7
|
left: 50%;
|
|
8
|
-
font-size:
|
|
8
|
+
font-size: 6.5px;
|
|
9
9
|
color: #171721;
|
|
10
10
|
max-width: 100%;
|
|
11
11
|
text-overflow: ellipsis;
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
width: auto;
|
|
18
18
|
text-align: center;
|
|
19
19
|
font-weight: normal;
|
|
20
|
+
text-transform: uppercase;
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
23
|
|