ca-components 1.0.32 → 1.0.34
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/assets/scss/custompickers.scss +918 -0
- package/assets/scss/details_page_ske.scss +1951 -0
- package/assets/scss/font-family.scss +2 -0
- package/assets/scss/font-weight.scss +36 -0
- package/assets/scss/input-dropdown.scss +1882 -0
- package/assets/scss/popover.scss +158 -0
- package/assets/scss/special-svgs.scss +282 -0
- package/assets/scss/styles.scss +49 -0
- package/assets/scss/tooltip.scss +318 -0
- package/assets/theme/main.scss +193 -0
- package/assets/theme/variables.scss +411 -0
- package/package.json +1 -1
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
@import 'theme/variables.scss';
|
|
2
|
+
|
|
3
|
+
.pickup-delivery-popover {
|
|
4
|
+
top: -38px !important;
|
|
5
|
+
max-width: 340px !important;
|
|
6
|
+
|
|
7
|
+
&.bs-popover-top {
|
|
8
|
+
top: auto !important;
|
|
9
|
+
bottom: -38px !important;
|
|
10
|
+
|
|
11
|
+
.load-component {
|
|
12
|
+
.assigned-load-holder {
|
|
13
|
+
order: 3;
|
|
14
|
+
|
|
15
|
+
margin-top: 4px;
|
|
16
|
+
margin-bottom: 0 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.statusBar {
|
|
20
|
+
order: 2;
|
|
21
|
+
|
|
22
|
+
margin-top: 4px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.animation-three-tabs {
|
|
26
|
+
order: 1;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.gps_dropdown_popover {
|
|
33
|
+
top: -38px;
|
|
34
|
+
max-width: 494px;
|
|
35
|
+
|
|
36
|
+
.popover-body {
|
|
37
|
+
padding: 0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Table Miles and Days Progress Popover
|
|
42
|
+
.table-progress-popover {
|
|
43
|
+
background-color: unset !important;
|
|
44
|
+
margin-left: -10px;
|
|
45
|
+
|
|
46
|
+
.progress-dropdown {
|
|
47
|
+
margin-top: -6px;
|
|
48
|
+
width: 260px;
|
|
49
|
+
height: 200px;
|
|
50
|
+
background: $ta-black-2;
|
|
51
|
+
border-radius: 3px;
|
|
52
|
+
padding: 8px;
|
|
53
|
+
box-shadow: $box-shadow-3;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
-webkit-animation: progressAnimation 0.25s ease-in-out;
|
|
56
|
+
animation: progressAnimation 0.25s ease-in-out;
|
|
57
|
+
|
|
58
|
+
.progress-header {
|
|
59
|
+
.progress-title {
|
|
60
|
+
font-size: 18px;
|
|
61
|
+
font-weight: 600;
|
|
62
|
+
color: $white;
|
|
63
|
+
|
|
64
|
+
span {
|
|
65
|
+
font-weight: 400;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.progress-total {
|
|
70
|
+
font-size: 14px;
|
|
71
|
+
line-height: 17px;
|
|
72
|
+
color: $white;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.table-progress-bar-container {
|
|
77
|
+
width: 100%;
|
|
78
|
+
height: 8px;
|
|
79
|
+
margin-top: 6px;
|
|
80
|
+
border-radius: 2px;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
|
|
83
|
+
.table-progress-bar {
|
|
84
|
+
height: 100%;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.progress-dropdown-body {
|
|
89
|
+
.progress-dual-info-container {
|
|
90
|
+
.progress-info-container {
|
|
91
|
+
width: 50%;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.progress-info-container {
|
|
96
|
+
margin-top: 10px;
|
|
97
|
+
|
|
98
|
+
.progress-info-title {
|
|
99
|
+
margin-bottom: 2px;
|
|
100
|
+
font-size: 11px;
|
|
101
|
+
font-weight: 700;
|
|
102
|
+
line-height: 14px;
|
|
103
|
+
color: $white-4;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.progress-info-text {
|
|
107
|
+
font-size: 14px;
|
|
108
|
+
line-height: 18px;
|
|
109
|
+
color: $white;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.credit-dropdown {
|
|
115
|
+
height: 100px;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@-webkit-keyframes progressAnimation {
|
|
120
|
+
from {
|
|
121
|
+
height: 0px;
|
|
122
|
+
}
|
|
123
|
+
to {
|
|
124
|
+
height: 220px;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@keyframes progressAnimation {
|
|
129
|
+
from {
|
|
130
|
+
height: 0px;
|
|
131
|
+
}
|
|
132
|
+
to {
|
|
133
|
+
height: 220px;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// REMOVE POPOVER ARROW GLOBAL
|
|
139
|
+
ngb-popover-window {
|
|
140
|
+
.popover-arrow {
|
|
141
|
+
display: none !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
padding: unset !important;
|
|
145
|
+
border: unset !important;
|
|
146
|
+
|
|
147
|
+
.popover-body {
|
|
148
|
+
padding: unset !important;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.dispatch-note {
|
|
153
|
+
.popover-body {
|
|
154
|
+
position: relative;
|
|
155
|
+
top: -4px;
|
|
156
|
+
left: -4px;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
@import 'theme/variables.scss';
|
|
2
|
+
|
|
3
|
+
.trucks,
|
|
4
|
+
.trailers {
|
|
5
|
+
&.semitruck,
|
|
6
|
+
&.semisleeper,
|
|
7
|
+
&.flatbed,
|
|
8
|
+
&.stepdeck,
|
|
9
|
+
&.lowboyrgn,
|
|
10
|
+
&.chassis,
|
|
11
|
+
&.conestoga,
|
|
12
|
+
&.sidekit,
|
|
13
|
+
&.container {
|
|
14
|
+
svg {
|
|
15
|
+
path {
|
|
16
|
+
fill: $ta-blue-19;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.boxtruck,
|
|
22
|
+
&.reefertruck,
|
|
23
|
+
&.cargovan,
|
|
24
|
+
&.dryvan,
|
|
25
|
+
&.reefer {
|
|
26
|
+
svg {
|
|
27
|
+
path {
|
|
28
|
+
fill: $ta-yellow-4;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.dumptruck,
|
|
34
|
+
&.cementtruck,
|
|
35
|
+
&.garbagetruck,
|
|
36
|
+
&.enddump,
|
|
37
|
+
&.bottomdump,
|
|
38
|
+
&.hopper,
|
|
39
|
+
&.tanker,
|
|
40
|
+
&.pneumatictanker {
|
|
41
|
+
svg {
|
|
42
|
+
path {
|
|
43
|
+
fill: $ta-red-13;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.towtruck,
|
|
49
|
+
&.carhauler,
|
|
50
|
+
&.spotter,
|
|
51
|
+
&.carhauler,
|
|
52
|
+
&.carhaulerstigner {
|
|
53
|
+
svg {
|
|
54
|
+
path {
|
|
55
|
+
fill: $ta-green-4;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.svgtext-template-text {
|
|
61
|
+
color: $white-2;
|
|
62
|
+
transition: color 0.3s ease-in-out;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// --------------------- Colors ---------------------
|
|
67
|
+
.colors {
|
|
68
|
+
.black {
|
|
69
|
+
svg {
|
|
70
|
+
#droplet {
|
|
71
|
+
fill: $bw6-2;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
.brown {
|
|
76
|
+
svg {
|
|
77
|
+
#droplet {
|
|
78
|
+
fill: $bw-11;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
.darkgreen {
|
|
83
|
+
svg {
|
|
84
|
+
#droplet {
|
|
85
|
+
fill: $green-3;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
.lightgreen {
|
|
90
|
+
svg {
|
|
91
|
+
#droplet {
|
|
92
|
+
fill: $green-14;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
.darkblue {
|
|
97
|
+
svg {
|
|
98
|
+
#droplet {
|
|
99
|
+
fill: $blue-16;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
.lightblue {
|
|
104
|
+
svg {
|
|
105
|
+
#droplet {
|
|
106
|
+
fill: $blue-17;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
.gray {
|
|
111
|
+
svg {
|
|
112
|
+
#droplet {
|
|
113
|
+
fill: $grey-3;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
.purple {
|
|
118
|
+
svg {
|
|
119
|
+
#droplet {
|
|
120
|
+
fill: $purple-6;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
.gold {
|
|
125
|
+
svg {
|
|
126
|
+
#droplet {
|
|
127
|
+
fill: $yellow-8;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
.silver {
|
|
132
|
+
svg {
|
|
133
|
+
#droplet {
|
|
134
|
+
fill: $bw-9;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
.red {
|
|
139
|
+
svg {
|
|
140
|
+
#droplet {
|
|
141
|
+
fill: $red-12;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
.pink {
|
|
146
|
+
svg {
|
|
147
|
+
#droplet {
|
|
148
|
+
fill: $pink-2;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
.white {
|
|
153
|
+
svg {
|
|
154
|
+
#droplet {
|
|
155
|
+
fill: $ca-white;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
.orange {
|
|
160
|
+
svg {
|
|
161
|
+
#droplet {
|
|
162
|
+
fill: $orange;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
.yellow {
|
|
167
|
+
svg {
|
|
168
|
+
#droplet {
|
|
169
|
+
fill: $yellow-9;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
&:hover {
|
|
175
|
+
transition: all 0.3s ease-in-out;
|
|
176
|
+
.black {
|
|
177
|
+
svg {
|
|
178
|
+
#droplet {
|
|
179
|
+
fill: $ta-light-grey-3;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
.brown {
|
|
184
|
+
svg {
|
|
185
|
+
#droplet {
|
|
186
|
+
fill: $brown;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
.darkgreen {
|
|
191
|
+
svg {
|
|
192
|
+
#droplet {
|
|
193
|
+
fill: $ta-review-green-2;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
.lightgreen {
|
|
198
|
+
svg {
|
|
199
|
+
#droplet {
|
|
200
|
+
fill: $green-15;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
.darkblue {
|
|
205
|
+
svg {
|
|
206
|
+
#droplet {
|
|
207
|
+
fill: $blue-18;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
.lightblue {
|
|
212
|
+
svg {
|
|
213
|
+
#droplet {
|
|
214
|
+
fill: $blue-20;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
.gray {
|
|
219
|
+
svg {
|
|
220
|
+
#droplet {
|
|
221
|
+
fill: $muted;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
.purple {
|
|
226
|
+
svg {
|
|
227
|
+
#droplet {
|
|
228
|
+
fill: $special-filter-purple-2;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
.gold {
|
|
233
|
+
svg {
|
|
234
|
+
#droplet {
|
|
235
|
+
fill: $yellow-11;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
.silver {
|
|
240
|
+
svg {
|
|
241
|
+
#droplet {
|
|
242
|
+
fill: $bw4;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
.red {
|
|
247
|
+
svg {
|
|
248
|
+
#droplet {
|
|
249
|
+
fill: $red-4;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
.pink {
|
|
254
|
+
svg {
|
|
255
|
+
#droplet {
|
|
256
|
+
fill: $pink-3;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
.white {
|
|
261
|
+
svg {
|
|
262
|
+
#droplet {
|
|
263
|
+
fill: $white-2;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
.orange {
|
|
268
|
+
svg {
|
|
269
|
+
#droplet {
|
|
270
|
+
fill: $ta-orange-1;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
.yellow {
|
|
275
|
+
svg {
|
|
276
|
+
#droplet {
|
|
277
|
+
fill: $yellow-10;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
|
2
|
+
@import '../theme/variables.scss';
|
|
3
|
+
|
|
4
|
+
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css');
|
|
5
|
+
@import './font-family.scss';
|
|
6
|
+
@import './font-weight.scss';
|
|
7
|
+
@import './popover.scss';
|
|
8
|
+
@import './input-dropdown.scss';
|
|
9
|
+
@import './tooltip.scss';
|
|
10
|
+
@import './custompickers.scss';
|
|
11
|
+
@import './special-svgs.scss';
|
|
12
|
+
|
|
13
|
+
/* You can add global styles to this file, and also import other style files */
|
|
14
|
+
|
|
15
|
+
* {
|
|
16
|
+
margin: 0;
|
|
17
|
+
font-family: Montserrat, sans-serif;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
html {
|
|
21
|
+
scroll-behavior: auto !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.gm-style-iw-chr,
|
|
25
|
+
.gm-style-iw-tc {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.gm-style .gm-style-iw-c {
|
|
30
|
+
border-radius: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.gm-style-iw {
|
|
34
|
+
overflow-y: auto !important;
|
|
35
|
+
overflow-x: hidden !important;
|
|
36
|
+
}
|
|
37
|
+
.gm-style-iw > div {
|
|
38
|
+
overflow: visible !important;
|
|
39
|
+
}
|
|
40
|
+
.infoWindow {
|
|
41
|
+
overflow: hidden !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.gm-style-iw-d {
|
|
45
|
+
max-height: 350px !important;
|
|
46
|
+
}
|
|
47
|
+
.gm-style-iw.gm-style-iw-c {
|
|
48
|
+
max-height: 350px !important;
|
|
49
|
+
}
|