ca-components 1.1.99996 → 1.1.99998

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.
@@ -1,103 +1,126 @@
1
- @import "theme/variables.scss";
1
+ @import 'theme/variables.scss';
2
2
 
3
3
  .ca-input-dropdown {
4
- .arrow {
5
- display: none !important;
6
- }
7
-
8
- .popover-body {
9
- margin-top: -2px !important;
10
-
11
- .dropdown-options-divider {
12
- content: "";
13
- height: 1px;
14
- border-radius: 1px;
15
- background-color: #424242;
16
- position: absolute;
17
- z-index: 99999;
18
- top: 0px;
19
- left: 0px;
20
-
21
- @for $i from 1 through 800 {
22
- &.w-col-#{$i} {
23
- width: unquote($i - 8 + "px");
4
+ .arrow {
5
+ display: none !important;
6
+ }
7
+
8
+ .popover-body {
9
+ margin-top: -2px !important;
10
+
11
+ .dropdown-options-divider {
12
+ content: '';
13
+ height: 1px;
14
+ border-radius: 1px;
15
+ background-color: #424242;
16
+ position: absolute;
17
+ z-index: 99999;
18
+ top: 0px;
19
+ left: 0px;
20
+
21
+ @for $i from 1 through 800 {
22
+ &.w-col-#{$i} {
23
+ width: unquote($i - 8 + 'px');
24
+ }
25
+ }
26
+
27
+ &.dispatch_dropdown {
28
+ top: -4px;
29
+ }
24
30
  }
25
- }
31
+ }
32
+ }
26
33
 
27
- &.dispatch_dropdown {
28
- top: -4px;
29
- }
34
+ // ---------------------------------------- DROPDOWN ----------------------------------------
35
+ .dropdown-options {
36
+ position: relative;
37
+ top: 0px;
38
+ left: 0px;
39
+ z-index: 1000;
40
+ max-height: 190px;
41
+ width: 100%;
42
+ background-color: #2f2f2f;
43
+ border-radius: 3px;
44
+ padding: 4px;
45
+ overflow: hidden;
46
+
47
+ &.dropdown_value {
48
+ background-color: transparent !important;
49
+ top: 10px;
50
+ left: 10px;
51
+ }
52
+
53
+ //------------------------ Custom width dependent on 'col' bootstrap ------------------------
54
+
55
+ @for $i from 1 through 800 {
56
+ &.w-col-#{$i} {
57
+ width: unquote($i + 'px') !important;
58
+ }
30
59
  }
31
- // ---------------------------------------- DROPDOWN ----------------------------------------
32
- .dropdown-options {
33
- position: relative;
34
- top: 0px;
35
- left: 0px;
36
- z-index: 1000;
37
- max-height: 190px;
38
- width: 100%;
39
- background-color: #2f2f2f;
40
- border-radius: 3px;
41
- padding: 4px;
42
- overflow: hidden;
43
-
44
- &.scroll {
60
+
61
+ &.scroll {
45
62
  transition: all 0.3s ease-in-out;
46
63
  overflow-y: scroll !important;
47
64
  padding-right: 0px;
48
65
 
49
66
  &::-webkit-scrollbar {
50
- width: 3px;
67
+ width: 3px;
51
68
  }
52
69
  &::-webkit-scrollbar-thumb {
53
- background-color: transparent;
54
- border: 6px solid #aaaaaa;
55
- border-radius: 1px;
70
+ background-color: transparent;
71
+ border: 6px solid #aaaaaa;
72
+ border-radius: 1px;
56
73
  }
57
74
  &::-webkit-scrollbar-track {
58
- padding: 0;
59
- position: relative;
60
- right: 0;
61
- top: 0;
62
- background: transparent;
75
+ padding: 0;
76
+ position: relative;
77
+ right: 0;
78
+ top: 0;
79
+ background: transparent;
63
80
  }
64
- }
81
+ }
65
82
 
66
- &-fuel-franchise {
83
+ &-fuel-franchise {
67
84
  padding: 4px;
68
85
  max-height: 300px;
69
- }
86
+ }
70
87
 
71
- &.no-result-container {
88
+ &.no-result-container {
72
89
  padding: 6px 10px !important;
73
- }
90
+ }
74
91
 
75
- //------------------------ Svg-Template-Logo Template ------------------------
76
- .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) {
92
+ //------------------------ Svg-Template-Logo Template ------------------------
93
+ .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) {
77
94
  .svg-template-logo {
78
- height: 18px;
95
+ height: 18px;
79
96
 
80
- svg:not(:hover) {
81
- path {
82
- fill: #aaaaaa;
97
+ svg:not(:hover) {
98
+ path {
99
+ fill: #aaaaaa;
100
+ }
83
101
  }
84
- }
85
102
  }
86
103
 
87
104
  .load-dispatches-container {
88
- svg:not(:hover):not(.load-dipstaches-owner-flag) {
89
- #Ellipse_9856,
90
- #Ellipse_9857,
91
- #Ellipse_9858,
92
- path {
93
- fill: #aaaaaa;
105
+ svg:not(:hover):not(.load-dipstaches-owner-flag) {
106
+ #Ellipse_9856,
107
+ #Ellipse_9857,
108
+ #Ellipse_9858,
109
+ path {
110
+ fill: #aaaaaa;
111
+ }
94
112
  }
95
- }
96
113
  }
97
- }
114
+ }
115
+
116
+ &:not(.dropdown_value) {
117
+ .dropdown-option {
118
+ color: $white-2;
119
+ }
120
+ }
98
121
 
99
- //------------------------ Default Template ------------------------
100
- .dropdown-option {
122
+ //------------------------ Default Template ------------------------
123
+ .dropdown-option {
101
124
  padding: 3px 4px;
102
125
  height: 26px;
103
126
  font-size: 14px;
@@ -106,426 +129,463 @@
106
129
  white-space: nowrap;
107
130
  overflow: hidden;
108
131
  text-overflow: ellipsis;
109
- color: $white-2;
110
132
 
111
133
  // Text and Additional Text
112
134
  &.dropdown-double-text-option {
113
- display: flex;
114
- align-items: center;
115
- justify-content: space-between;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: space-between;
116
138
 
117
- .additional-text {
118
- font-size: 11px;
119
- font-weight: 400;
120
- color: $bw5;
121
- line-height: 14px;
139
+ .additional-text {
140
+ font-size: 11px;
141
+ font-weight: 400;
142
+ color: $bw5;
143
+ line-height: 14px;
122
144
 
123
- &.active {
124
- color: #6f9ee0;
125
- font-weight: 700;
145
+ &.active {
146
+ color: #6f9ee0;
147
+ font-weight: 700;
148
+ }
126
149
  }
127
- }
128
150
 
129
- &:hover {
130
- .additional-text {
131
- &.active {
132
- color: $ta-blue-17;
133
- }
151
+ &:hover {
152
+ .additional-text {
153
+ &.active {
154
+ color: $ta-blue-17;
155
+ }
156
+ }
134
157
  }
135
- }
136
158
  }
137
159
 
138
160
  // Double Column
139
161
  &.dropdown-double-column-option {
140
- display: grid;
141
- grid-template-columns: 118px 470px;
142
- grid-gap: 4px;
162
+ display: grid;
163
+ grid-template-columns: 118px 470px;
164
+ grid-gap: 4px;
143
165
 
144
- &-add-new {
145
- display: flex;
146
- align-items: center;
147
- justify-content: flex-end;
148
- padding-left: 0 !important;
149
- }
166
+ &-add-new {
167
+ display: flex;
168
+ align-items: center;
169
+ justify-content: flex-end;
170
+ padding-left: 0 !important;
171
+ }
150
172
 
151
- &-text {
152
- color: $white-2;
153
- font-size: 14px;
154
- line-height: 18px;
155
- }
173
+ &-text {
174
+ color: $white-2;
175
+ font-size: 14px;
176
+ line-height: 18px;
177
+ }
156
178
  }
157
179
 
158
180
  // Triple Column
159
181
  &.dropdown-triple-column-option {
160
- display: grid;
161
- grid-template-columns: 216px 138px 206px;
162
- grid-gap: 4px;
182
+ display: grid;
183
+ grid-template-columns: 216px 138px 206px;
184
+ grid-gap: 4px;
163
185
 
164
- &-add-new {
165
- display: flex;
166
- align-items: center;
167
- justify-content: flex-end;
168
- padding-left: 0 !important;
169
- }
186
+ &-add-new {
187
+ display: flex;
188
+ align-items: center;
189
+ justify-content: flex-end;
190
+ padding-left: 0 !important;
191
+ }
170
192
 
171
- &-text {
172
- color: $white-2;
173
- font-size: 14px;
174
- line-height: 18px;
175
- }
193
+ &-text {
194
+ color: $white-2;
195
+ font-size: 14px;
196
+ line-height: 18px;
197
+ }
176
198
  }
177
199
 
178
200
  // This class is for moving with keyboard
179
201
  &.dropdown-option-hovered {
180
- background: $ta-black;
181
- color: $white-2;
182
- border-radius: 2px;
183
- cursor: pointer;
202
+ background: $ta-black;
203
+ color: $white-2;
204
+ border-radius: 2px;
205
+ cursor: pointer;
184
206
 
185
- .svgtext-template-logo {
186
- &.truck-trailer-logo {
187
- display: inline-block !important;
207
+ .svgtext-template-logo {
208
+ &.truck-trailer-logo {
209
+ display: inline-block !important;
210
+ }
188
211
  }
189
- }
190
212
  }
191
213
 
192
214
  &:hover {
193
- background: $ta-black;
194
- color: $white-2;
195
- border-radius: 2px;
196
- cursor: pointer;
215
+ background: $ta-black;
216
+ color: $white-2;
217
+ border-radius: 2px;
218
+ cursor: pointer;
197
219
 
198
- .svgtext-template-logo {
199
- &.truck-trailer-logo {
200
- display: inline-block !important;
220
+ .svgtext-template-logo {
221
+ &.truck-trailer-logo {
222
+ display: inline-block !important;
223
+ }
201
224
  }
202
- }
203
225
  }
204
226
 
205
227
  &.disabled {
206
- color: #6c6c6c;
207
- pointer-events: none;
208
- -webkit-user-select: none;
209
- -moz-user-select: none;
210
- -ms-user-select: none;
211
- user-select: none;
228
+ color: #6c6c6c;
229
+ pointer-events: none;
230
+ -webkit-user-select: none;
231
+ -moz-user-select: none;
232
+ -ms-user-select: none;
233
+ user-select: none;
212
234
  }
213
235
 
214
236
  &.no-result {
215
- line-height: 14px;
216
- font-size: 11px;
217
- font-weight: 700;
218
- color: $bw5;
219
- height: auto !important;
220
- -webkit-user-select: none;
221
- -moz-user-select: none;
222
- -ms-user-select: none;
223
- user-select: none;
224
- pointer-events: none;
225
-
226
- &:hover {
227
- background-color: transparent !important;
228
- }
229
- div {
230
- padding-top: 1px;
231
- }
237
+ line-height: 14px;
238
+ font-size: 11px;
239
+ font-weight: 700;
240
+ color: $bw5;
241
+ height: auto !important;
242
+ -webkit-user-select: none;
243
+ -moz-user-select: none;
244
+ -ms-user-select: none;
245
+ user-select: none;
246
+ pointer-events: none;
247
+
248
+ &:hover {
249
+ background-color: transparent !important;
250
+ }
251
+ div {
252
+ padding-top: 1px;
253
+ }
232
254
  }
233
255
 
234
256
  &.add-new {
235
- padding: 4.5px 6px 4.5px 4px;
236
- font-size: 11px;
237
- font-weight: 700;
238
- color: $ta-blue-19;
239
- position: relative;
240
- transition:
241
- background 0.2s ease-in-out,
242
- color 0.2s ease-in-out;
243
-
244
- &:hover {
245
- color: $white-2;
246
- background: $ta-blue-21;
247
- }
257
+ padding: 4.5px 6px 4.5px 4px;
258
+ font-size: 11px;
259
+ font-weight: 700;
260
+ color: $ta-blue-19;
261
+ position: relative;
262
+ transition:
263
+ background 0.2s ease-in-out,
264
+ color 0.2s ease-in-out;
248
265
 
249
- .labels-template-text {
250
- color: $ta-blue-7;
251
- font-weight: 600 !important;
252
- transition: all 0.3s ease-in-out;
253
- }
266
+ &:hover {
267
+ color: $white-2;
268
+ background: $ta-blue-21;
269
+ }
254
270
 
255
- .plus-icon {
256
- margin-left: auto !important;
257
- position: relative;
258
- bottom: 1px;
271
+ .labels-template-text {
272
+ color: $ta-blue-7;
273
+ font-weight: 600 !important;
274
+ transition: all 0.3s ease-in-out;
275
+ }
259
276
 
260
- svg {
261
- path {
262
- fill: $ta-blue-19;
263
- }
277
+ .plus-icon {
278
+ margin-left: auto !important;
279
+ position: relative;
280
+ bottom: 1px;
281
+
282
+ svg {
283
+ path {
284
+ fill: $ta-blue-19;
285
+ }
286
+ }
264
287
  }
265
- }
266
288
  }
267
289
 
268
290
  &.all-assigned {
269
- .details-template-text,
270
- .svgtext-template-text {
271
- color: $bw5;
272
- font-size: 11px;
273
- font-weight: 700;
274
- line-height: 14px;
275
- pointer-events: none;
276
- -webkit-user-select: none;
277
- -moz-user-select: none;
278
- -ms-user-select: none;
279
- user-select: none;
280
- }
291
+ .details-template-text,
292
+ .svgtext-template-text {
293
+ color: $bw5;
294
+ font-size: 11px;
295
+ font-weight: 700;
296
+ line-height: 14px;
297
+ pointer-events: none;
298
+ -webkit-user-select: none;
299
+ -moz-user-select: none;
300
+ -ms-user-select: none;
301
+ user-select: none;
302
+ }
281
303
  }
282
304
 
283
305
  &.active-repair-truck-trailer {
284
- color: #6f9ee0;
285
- position: relative;
286
-
287
- &:hover {
288
- color: $ta-blue-17;
289
- transition: all 0.3s ease-in-out;
290
- }
306
+ color: #6f9ee0;
307
+ position: relative;
291
308
 
292
- // Higlight text
293
- .highlight-text-45632 {
294
- background-color: $ta-blue-20;
295
- color: $ta-blue-19;
296
- transition: all 0.3s ease-in-out;
297
309
  &:hover {
298
- color: $ta-blue-17 !important;
310
+ color: $ta-blue-17;
311
+ transition: all 0.3s ease-in-out;
312
+ }
313
+
314
+ // Higlight text
315
+ .highlight-text-45632 {
316
+ background-color: $ta-blue-20;
317
+ color: $ta-blue-19;
318
+ transition: all 0.3s ease-in-out;
319
+ &:hover {
320
+ color: $ta-blue-17 !important;
321
+ }
299
322
  }
300
- }
301
323
 
302
- &::after {
303
- display: none;
304
- }
324
+ &::after {
325
+ display: none;
326
+ }
305
327
  }
306
328
  &.active-label,
307
329
  &.active-dark {
308
- .labels-template-counter {
309
- background-color: #3b73ed !important;
310
- color: #ffffff !important;
311
- }
330
+ .labels-template-counter {
331
+ background-color: #3b73ed !important;
332
+ color: #ffffff !important;
333
+ }
312
334
  }
313
335
  &.active,
314
336
  &.active-label {
315
- color: #ffffff;
316
- font-size: 14px;
317
- font-weight: 700;
318
- position: relative;
337
+ color: #ffffff;
338
+ font-size: 14px;
339
+ font-weight: 700;
340
+ position: relative;
319
341
 
320
- // Higlight text
321
- .highlight-text-45632 {
322
- background-color: $ta-blue-20;
323
- color: $ta-blue-19;
324
- transition: all 0.3s ease-in-out;
325
- &:hover {
326
- color: #ffffff !important;
342
+ // Higlight text
343
+ .highlight-text-45632 {
344
+ background-color: $ta-blue-20;
345
+ color: $ta-blue-19;
346
+ transition: all 0.3s ease-in-out;
347
+ &:hover {
348
+ color: #ffffff !important;
349
+ }
350
+ }
351
+ &:not(.payroll-trucks)::after {
352
+ display: inline-block;
353
+ position: absolute;
354
+ right: 6px;
355
+ top: 28%;
356
+ transform: translateY(-50%);
357
+ content: url('/assets/ca-components/svg/input/ic_confirm.svg');
358
+ width: 14px;
359
+ height: 10px;
327
360
  }
328
- }
329
- &:not(.payroll-trucks)::after {
330
- display: inline-block;
331
- position: absolute;
332
- right: 6px;
333
- top: 28%;
334
- transform: translateY(-50%);
335
- content: url("/assets/ca-components/svg/input/ic_confirm.svg");
336
- width: 14px;
337
- height: 10px;
338
- }
339
361
  }
340
362
 
341
363
  &.active-label {
342
- &::after {
343
- right: 35px;
344
- }
364
+ &::after {
365
+ right: 35px;
366
+ }
345
367
  }
346
368
 
347
369
  &.last-active {
348
- position: relative;
349
- &::before {
350
- content: "";
351
- position: absolute;
352
- bottom: -1px;
353
- left: 0px;
354
- height: 2px;
355
- width: 100%;
356
- background-color: rgb(170, 170, 170, 0.2);
357
- border-radius: 1px;
358
- }
370
+ position: relative;
371
+ &::before {
372
+ content: '';
373
+ position: absolute;
374
+ bottom: -1px;
375
+ left: 0px;
376
+ height: 2px;
377
+ width: 100%;
378
+ background-color: rgb(170, 170, 170, 0.2);
379
+ border-radius: 1px;
380
+ }
359
381
  }
360
382
 
361
383
  // Higlight text
362
384
  .highlight-text-45632 {
363
- background-color: $ta-blue-20;
364
- color: $ta-blue-19;
365
- transition: all 0.3s ease-in-out;
385
+ background-color: $ta-blue-20;
386
+ color: $ta-blue-19;
387
+ transition: all 0.3s ease-in-out;
366
388
  }
367
389
 
368
390
  //------------------------ Trucks, Trailers, Colors Template ------------------------
369
391
  &.svg-text-template {
370
- display: flex;
371
- align-items: center;
372
-
373
- &.hazardous {
374
392
  display: flex;
375
- flex-direction: row-reverse;
376
- justify-content: flex-end;
393
+ align-items: center;
377
394
 
378
- svg {
379
- margin-right: 5px;
380
- }
381
- }
382
- .svgtext-template-logo {
383
- display: flex;
384
- margin-right: 6px;
385
- &.no-svg {
386
- margin-right: 0px !important;
387
- }
395
+ &.hazardous {
396
+ display: flex;
397
+ flex-direction: row-reverse;
398
+ justify-content: flex-end;
388
399
 
389
- &.hazardous-svg {
390
- line-height: 14px;
391
- }
392
- &.state-logo {
393
- svg {
394
- path {
395
- fill: #cccc;
396
- }
397
- }
398
- }
399
-
400
- &.truck-trailer-logo {
401
- position: absolute;
402
- right: 25px;
403
- text-align: right;
404
- display: none;
405
- margin-right: 0px;
406
-
407
- &.container {
408
- right: 13px;
409
- }
410
- }
411
-
412
- &.radiator,
413
- &.turbo,
414
- &.alignment,
415
- &.accompressor,
416
- &.aircompressor,
417
- &.fuelpump,
418
- &.waterpump,
419
- &.oilpump,
420
- &.brakechamber,
421
- &.battery,
422
- &.enginetuneup {
423
- svg {
424
- path {
425
- fill: $bw5;
400
+ svg {
401
+ margin-right: 5px;
426
402
  }
427
- }
428
403
  }
429
- }
404
+ .svgtext-template-logo {
405
+ display: flex;
406
+ margin-right: 6px;
407
+ &.no-svg {
408
+ margin-right: 0px !important;
409
+ }
430
410
 
431
- .svgtext-template-text {
432
- position: relative;
411
+ &.hazardous-svg {
412
+ line-height: 14px;
413
+ }
414
+ &.state-logo {
415
+ svg {
416
+ path {
417
+ fill: #cccc;
418
+ }
419
+ }
420
+ }
433
421
 
434
- &.truck-text {
435
- top: 1px;
436
- }
422
+ &.truck-trailer-logo {
423
+ position: absolute;
424
+ right: 25px;
425
+ text-align: right;
426
+ display: none;
427
+ margin-right: 0px;
437
428
 
438
- &.flex-1 {
439
- flex: 1;
440
- }
429
+ &.container {
430
+ right: 13px;
431
+ }
432
+ }
441
433
 
442
- &.additional-text {
443
- font-size: 11px;
444
- font-weight: 400;
445
- line-height: 14px;
446
- color: $bw5;
447
- text-align: right;
434
+ &.radiator,
435
+ &.turbo,
436
+ &.alignment,
437
+ &.accompressor,
438
+ &.aircompressor,
439
+ &.fuelpump,
440
+ &.waterpump,
441
+ &.oilpump,
442
+ &.brakechamber,
443
+ &.battery,
444
+ &.enginetuneup {
445
+ svg {
446
+ path {
447
+ fill: $bw5;
448
+ }
449
+ }
450
+ }
448
451
  }
449
- }
450
452
 
451
- .colors {
452
- height: 18px;
453
- width: 18px;
454
- }
453
+ .svgtext-template-text {
454
+ position: relative;
455
455
 
456
- &.hazardous-dropdown {
457
- .svgtext-template-logo {
458
- order: 2;
459
- margin-right: 0px;
460
- position: relative;
461
- bottom: 1px;
456
+ &.truck-text {
457
+ top: 1px;
458
+ }
459
+
460
+ &.flex-1 {
461
+ flex: 1;
462
+ }
463
+
464
+ &.additional-text {
465
+ font-size: 11px;
466
+ font-weight: 400;
467
+ line-height: 14px;
468
+ color: $bw5;
469
+ text-align: right;
470
+ }
462
471
  }
463
472
 
464
- .svgtext-template-text {
465
- order: 1;
466
- margin-right: 6px;
473
+ .colors {
474
+ height: 18px;
475
+ width: 18px;
476
+ }
477
+
478
+ &.hazardous-dropdown {
479
+ .svgtext-template-logo {
480
+ order: 2;
481
+ margin-right: 0px;
482
+ position: relative;
483
+ bottom: 1px;
484
+ }
485
+
486
+ .svgtext-template-text {
487
+ order: 1;
488
+ margin-right: 6px;
489
+ }
467
490
  }
468
- }
469
491
  }
470
492
 
471
493
  //------------------------ Labels Template ------------------------
472
494
  &.labels-template {
473
- display: flex;
474
- align-items: center;
475
-
476
- .labels-template-left-side {
477
495
  display: flex;
478
496
  align-items: center;
479
497
 
480
- .labels-template-logo {
481
- svg {
482
- width: 18px;
483
- height: 18px;
484
- }
485
- }
498
+ .labels-template-left-side {
499
+ display: flex;
500
+ align-items: center;
486
501
 
487
- .labels-template-vertical-divider {
488
- width: 1px;
489
- height: 15px;
490
- background-color: rgb(170, 170, 170, 0.2);
491
- content: "";
492
- margin: 0 6px;
502
+ .labels-template-logo {
503
+ svg {
504
+ width: 18px;
505
+ height: 18px;
506
+ }
507
+ }
508
+
509
+ .labels-template-vertical-divider {
510
+ width: 1px;
511
+ height: 15px;
512
+ background-color: rgb(170, 170, 170, 0.2);
513
+ content: '';
514
+ margin: 0 6px;
515
+ }
493
516
  }
494
- }
495
517
 
496
- .labels-template-right-side {
497
- flex: 1;
498
- display: flex;
499
- align-items: center;
500
- justify-content: space-between;
518
+ .labels-template-right-side {
519
+ flex: 1;
520
+ display: flex;
521
+ align-items: center;
522
+ justify-content: space-between;
523
+
524
+ .labels-template-text {
525
+ margin-right: 28px;
526
+ font-size: 14px;
527
+ font-weight: 400;
528
+ line-height: 18px;
529
+ color: #ffffff;
530
+ &.lable-text-wrap {
531
+ text-overflow: ellipsis;
532
+ overflow: hidden;
533
+ width: 80px;
534
+ white-space: nowrap;
535
+ }
536
+ &.add-new {
537
+ font-size: 11px;
538
+ font-weight: 700;
539
+ color: #6f9ee0;
540
+ transition: all 0.3s ease-in-out;
541
+ position: relative;
542
+ }
501
543
 
502
- .labels-template-text {
503
- margin-right: 28px;
504
- font-size: 14px;
505
- font-weight: 400;
506
- line-height: 18px;
507
- color: #ffffff;
508
- &.lable-text-wrap {
509
- text-overflow: ellipsis;
510
- overflow: hidden;
511
- width: 80px;
512
- white-space: nowrap;
513
- }
514
- &.add-new {
515
- font-size: 11px;
516
- font-weight: 700;
517
- color: #6f9ee0;
518
- transition: all 0.3s ease-in-out;
519
- position: relative;
520
- }
544
+ &.no-result {
545
+ line-height: 14px;
546
+ font-size: 11px;
547
+ font-weight: 700;
548
+ padding: 0px !important;
549
+ color: $bw5;
550
+ height: 12px;
551
+ -webkit-user-select: none;
552
+ -moz-user-select: none;
553
+ -ms-user-select: none;
554
+ user-select: none;
555
+ pointer-events: none;
556
+
557
+ &:hover {
558
+ background-color: transparent !important;
559
+ }
560
+
561
+ div {
562
+ padding-top: 1px;
563
+ }
564
+ }
565
+ }
521
566
 
522
- &.no-result {
523
- line-height: 14px;
567
+ .labels-template-counter {
568
+ width: 22px;
569
+ height: 16px;
570
+ border-radius: 20px;
571
+ background-color: rgb(204, 204, 204, 0.2);
572
+ color: #aaaaaa;
573
+ text-align: center;
574
+ font-size: 11px;
575
+ font-weight: 500;
576
+ padding: 0 4.5px;
577
+ &.dont-show-counter {
578
+ display: none;
579
+ }
580
+ }
581
+ }
582
+
583
+ &.no-result {
584
+ height: 14px;
524
585
  font-size: 11px;
525
586
  font-weight: 700;
526
587
  padding: 0px !important;
527
588
  color: $bw5;
528
- height: 12px;
529
589
  -webkit-user-select: none;
530
590
  -moz-user-select: none;
531
591
  -ms-user-select: none;
@@ -533,197 +593,107 @@
533
593
  pointer-events: none;
534
594
 
535
595
  &:hover {
536
- background-color: transparent !important;
596
+ background-color: transparent !important;
537
597
  }
538
598
 
539
599
  div {
540
- padding-top: 1px;
600
+ padding-top: 1px;
541
601
  }
542
- }
543
- }
544
-
545
- .labels-template-counter {
546
- width: 22px;
547
- height: 16px;
548
- border-radius: 20px;
549
- background-color: rgb(204, 204, 204, 0.2);
550
- color: #aaaaaa;
551
- text-align: center;
552
- font-size: 11px;
553
- font-weight: 500;
554
- padding: 0 4.5px;
555
- &.dont-show-counter {
556
- display: none;
557
- }
558
602
  }
559
- }
560
-
561
- &.no-result {
562
- height: 14px;
563
- font-size: 11px;
564
- font-weight: 700;
565
- padding: 0px !important;
566
- color: $bw5;
567
- -webkit-user-select: none;
568
- -moz-user-select: none;
569
- -ms-user-select: none;
570
- user-select: none;
571
- pointer-events: none;
572
603
 
573
604
  &:hover {
574
- background-color: transparent !important;
575
- }
576
-
577
- div {
578
- padding-top: 1px;
579
- }
580
- }
581
-
582
- &:hover {
583
- .labels-template-text {
584
- color: #ffffff;
605
+ .labels-template-text {
606
+ color: #ffffff;
585
607
 
586
- &.add-new {
587
- color: $ta-blue-17;
588
- }
589
- }
608
+ &.add-new {
609
+ color: $ta-blue-17;
610
+ }
611
+ }
590
612
 
591
- .labels-template-counter {
592
- background-color: rgb(204, 204, 204, 0.2);
593
- color: #dadada;
613
+ .labels-template-counter {
614
+ background-color: rgb(204, 204, 204, 0.2);
615
+ color: #dadada;
616
+ }
594
617
  }
595
- }
596
618
  }
597
619
 
598
620
  //------------------------ Details Template ------------------------
599
621
  &.details-template {
600
- display: grid;
601
- grid-template-columns: auto 14px 1fr;
602
- align-items: center;
603
- justify-content: space-between;
604
-
605
- &.load-details-template {
606
- grid-template-columns: 30px 130px 1fr;
607
- grid-gap: 4px;
608
- }
609
-
610
- &.add-new {
611
- grid-template-columns: 1fr 1fr;
612
- margin-right: 6px;
613
- }
614
-
615
- &.dropdown-option {
616
- position: relative;
617
- }
618
-
619
- .details-template-text {
620
- &.active {
621
- color: #6f9ee0;
622
+ display: grid;
623
+ grid-template-columns: auto 14px 1fr;
624
+ align-items: center;
625
+ justify-content: space-between;
622
626
 
623
- &:hover {
624
- color: $ta-blue-17;
625
- transition: all 0.3s ease-in-out;
626
- }
627
+ &.load-details-template {
628
+ grid-template-columns: 30px 130px 1fr;
629
+ grid-gap: 4px;
627
630
  }
628
- }
629
631
 
630
- .details-template-logo {
631
- margin-left: 6px;
632
- line-height: 15px;
633
- }
632
+ &.add-new {
633
+ grid-template-columns: 1fr 1fr;
634
+ margin-right: 6px;
635
+ }
634
636
 
635
- .driver-details-template-container {
636
- position: absolute;
637
- right: 6px;
637
+ &.dropdown-option {
638
+ position: relative;
639
+ }
638
640
 
639
- p {
640
- font-size: 11px;
641
- line-height: 18px;
642
- color: $bw5;
641
+ .details-template-text {
642
+ &.active {
643
+ color: #6f9ee0;
643
644
 
644
- user-select: none;
645
- -webkit-user-select: none;
646
- -moz-user-select: none;
647
- -ms-user-select: none;
645
+ &:hover {
646
+ color: $ta-blue-17;
647
+ transition: all 0.3s ease-in-out;
648
+ }
649
+ }
648
650
  }
649
651
 
650
- .right-box {
651
- margin-left: 4px;
652
- padding: 0 6px;
653
-
654
- p {
655
- color: $ta-light-grey-2;
656
- }
652
+ .details-template-logo {
653
+ margin-left: 6px;
654
+ line-height: 15px;
657
655
  }
658
- }
659
656
 
660
- .additional-text {
661
- font-size: 11px;
662
- color: $bw5;
663
- line-height: 12px;
664
- }
665
- }
657
+ .driver-details-template-container {
658
+ position: absolute;
659
+ right: 6px;
666
660
 
667
- //------------------------ Text Counter Template ------------------------
661
+ p {
662
+ font-size: 11px;
663
+ line-height: 18px;
664
+ color: $bw5;
668
665
 
669
- &-text-counter {
670
- display: flex;
671
- align-items: center;
672
- justify-content: space-between;
673
-
674
- .option-counter {
675
- min-width: 22px;
676
- height: 16px;
677
- border-radius: 20px;
678
- background-color: rgb(204, 204, 204, 0.2);
679
- color: #aaaaaa;
680
- font-size: 11px;
681
- font-weight: 500;
682
- text-align: center;
683
- padding: 0 4.5px;
684
- }
666
+ user-select: none;
667
+ -webkit-user-select: none;
668
+ -moz-user-select: none;
669
+ -ms-user-select: none;
670
+ }
685
671
 
686
- &.active {
687
- &::after {
688
- right: 35px;
689
- top: 3.5px;
672
+ .right-box {
673
+ margin-left: 4px;
674
+ padding: 0 6px;
675
+
676
+ p {
677
+ color: $ta-light-grey-2;
678
+ }
679
+ }
690
680
  }
691
- }
692
681
 
693
- &:hover {
694
- .option-counter {
695
- background-color: rgb(204, 204, 204, 0.2);
682
+ .additional-text {
683
+ font-size: 11px;
684
+ color: $bw5;
685
+ line-height: 12px;
696
686
  }
697
- }
698
687
  }
699
688
 
700
- //------------------------ Fuel Franchise Template ------------------------
689
+ //------------------------ Text Counter Template ------------------------
701
690
 
702
- &-fuel-franchise {
703
- display: flex;
704
- flex-direction: column;
705
- justify-content: center;
706
- height: auto;
707
- min-height: 26px;
708
- border-radius: 2px;
709
-
710
- // Franchise Header
711
- .fuel-franchise-header {
691
+ &-text-counter {
712
692
  display: flex;
713
693
  align-items: center;
714
694
  justify-content: space-between;
715
- padding: 0 2px;
716
- -webkit-user-select: none;
717
- -moz-user-select: none;
718
- -ms-user-select: none;
719
- user-select: none;
720
695
 
721
- .fuel-franchise-header-right-side {
722
- display: flex;
723
- align-items: center;
724
- gap: 6px;
725
-
726
- .option-counter {
696
+ .option-counter {
727
697
  min-width: 22px;
728
698
  height: 16px;
729
699
  border-radius: 20px;
@@ -733,1253 +703,1293 @@
733
703
  font-weight: 500;
734
704
  text-align: center;
735
705
  padding: 0 4.5px;
736
- -webkit-user-select: none;
737
- -moz-user-select: none;
738
- -ms-user-select: none;
739
- user-select: none;
740
- }
741
-
742
- .header-arrow {
743
- width: 18px;
744
- height: 18px;
745
- line-height: 15px;
746
- transition: all 0.3s ease-in-out;
747
-
748
- svg {
749
- transform: rotate(0deg);
750
- transition: all 0.3s ease-in-out;
751
- path {
752
- fill: #aaaaaa;
753
- }
754
- }
706
+ }
755
707
 
756
- &.rotate {
757
- svg {
758
- transform: rotate(180deg);
759
- transition: all 0.3s ease-in-out;
760
- }
708
+ &.active {
709
+ &::after {
710
+ right: 35px;
711
+ top: 3.5px;
761
712
  }
713
+ }
762
714
 
763
- &:hover {
764
- svg {
765
- path {
766
- fill: #dadada;
767
- }
768
- }
715
+ &:hover {
716
+ .option-counter {
717
+ background-color: rgb(204, 204, 204, 0.2);
769
718
  }
770
- }
771
719
  }
772
- }
720
+ }
721
+
722
+ //------------------------ Fuel Franchise Template ------------------------
773
723
 
774
- // Franchise Stores
775
- .fuel-franchise-stores {
724
+ &-fuel-franchise {
776
725
  display: flex;
777
726
  flex-direction: column;
778
727
  justify-content: center;
779
- gap: 4px;
780
- max-height: 237px;
781
-
782
- .fuel-franchise-single-store {
783
- height: 26px;
784
- border-radius: 2px;
785
- display: flex;
786
- align-items: center;
787
- justify-content: space-between;
788
- padding-left: 3px;
789
- padding-right: 24px;
790
- padding: 3px 26px 4px 4px;
791
-
792
- .fuel-franchise-store-name {
793
- font-size: 14px;
794
- font-weight: 400;
795
- height: 19px;
796
- -webkit-user-select: none;
797
- -moz-user-select: none;
798
- -ms-user-select: none;
799
- user-select: none;
800
- color: #ffffff;
801
- }
728
+ height: auto;
729
+ min-height: 26px;
730
+ border-radius: 2px;
802
731
 
803
- .fuel-franchise-store-address {
804
- font-size: 11px;
805
- font-weight: 500;
806
- line-height: 14px;
732
+ // Franchise Header
733
+ .fuel-franchise-header {
734
+ display: flex;
735
+ align-items: center;
736
+ justify-content: space-between;
737
+ padding: 0 2px;
807
738
  -webkit-user-select: none;
808
739
  -moz-user-select: none;
809
740
  -ms-user-select: none;
810
741
  user-select: none;
811
- color: $ta-light-grey-6;
812
- }
813
742
 
814
- &.active {
815
- .fuel-franchise-store-name,
816
- .fuel-franchise-store-address {
817
- color: #ffffff !important;
818
- }
743
+ .fuel-franchise-header-right-side {
744
+ display: flex;
745
+ align-items: center;
746
+ gap: 6px;
747
+
748
+ .option-counter {
749
+ min-width: 22px;
750
+ height: 16px;
751
+ border-radius: 20px;
752
+ background-color: rgb(204, 204, 204, 0.2);
753
+ color: #aaaaaa;
754
+ font-size: 11px;
755
+ font-weight: 500;
756
+ text-align: center;
757
+ padding: 0 4.5px;
758
+ -webkit-user-select: none;
759
+ -moz-user-select: none;
760
+ -ms-user-select: none;
761
+ user-select: none;
762
+ }
819
763
 
820
- .highlight-text-45632 {
821
- background-color: $ta-blue-20;
822
- color: $ta-blue-19;
823
- transition: all 0.3s ease-in-out;
764
+ .header-arrow {
765
+ width: 18px;
766
+ height: 18px;
767
+ line-height: 15px;
768
+ transition: all 0.3s ease-in-out;
769
+
770
+ svg {
771
+ transform: rotate(0deg);
772
+ transition: all 0.3s ease-in-out;
773
+ path {
774
+ fill: #aaaaaa;
775
+ }
776
+ }
777
+
778
+ &.rotate {
779
+ svg {
780
+ transform: rotate(180deg);
781
+ transition: all 0.3s ease-in-out;
782
+ }
783
+ }
784
+
785
+ &:hover {
786
+ svg {
787
+ path {
788
+ fill: #dadada;
789
+ }
790
+ }
791
+ }
792
+ }
824
793
  }
825
- }
794
+ }
826
795
 
827
- &:hover {
828
- color: #ffffff;
829
- background-color: #1d1d1d;
796
+ // Franchise Stores
797
+ .fuel-franchise-stores {
798
+ display: flex;
799
+ flex-direction: column;
800
+ justify-content: center;
801
+ gap: 4px;
802
+ max-height: 237px;
803
+
804
+ .fuel-franchise-single-store {
805
+ height: 26px;
806
+ border-radius: 2px;
807
+ display: flex;
808
+ align-items: center;
809
+ justify-content: space-between;
810
+ padding-left: 3px;
811
+ padding-right: 24px;
812
+ padding: 3px 26px 4px 4px;
813
+
814
+ .fuel-franchise-store-name {
815
+ font-size: 14px;
816
+ font-weight: 400;
817
+ height: 19px;
818
+ -webkit-user-select: none;
819
+ -moz-user-select: none;
820
+ -ms-user-select: none;
821
+ user-select: none;
822
+ color: #ffffff;
823
+ }
830
824
 
831
- // Higlight text
832
- &.active {
833
- .fuel-franchise-store-name,
834
- .fuel-franchise-store-address {
835
- color: #ffffff !important;
836
- font-weight: 700;
837
- }
825
+ .fuel-franchise-store-address {
826
+ font-size: 11px;
827
+ font-weight: 500;
828
+ line-height: 14px;
829
+ -webkit-user-select: none;
830
+ -moz-user-select: none;
831
+ -ms-user-select: none;
832
+ user-select: none;
833
+ color: $ta-light-grey-6;
834
+ }
835
+
836
+ &.active {
837
+ .fuel-franchise-store-name,
838
+ .fuel-franchise-store-address {
839
+ color: #ffffff !important;
840
+ }
841
+
842
+ .highlight-text-45632 {
843
+ background-color: $ta-blue-20;
844
+ color: $ta-blue-19;
845
+ transition: all 0.3s ease-in-out;
846
+ }
847
+ }
848
+
849
+ &:hover {
850
+ color: #ffffff;
851
+ background-color: #1d1d1d;
852
+
853
+ // Higlight text
854
+ &.active {
855
+ .fuel-franchise-store-name,
856
+ .fuel-franchise-store-address {
857
+ color: #ffffff !important;
858
+ font-weight: 700;
859
+ }
860
+ }
861
+ }
838
862
  }
839
- }
840
- }
841
863
 
842
- &.scroll {
843
- transition: all 0.3s ease-in-out;
844
- overflow-y: scroll !important;
845
-
846
- &::-webkit-scrollbar {
847
- width: 3px;
848
- }
849
- &::-webkit-scrollbar-thumb {
850
- background-color: transparent;
851
- border: 6px solid #aaaaaa;
852
- border-radius: 1px;
853
- }
854
- &::-webkit-scrollbar-track {
855
- padding: 0;
856
- position: relative;
857
- right: 0;
858
- top: 0;
859
- background: transparent;
860
- }
864
+ &.scroll {
865
+ transition: all 0.3s ease-in-out;
866
+ overflow-y: scroll !important;
867
+
868
+ &::-webkit-scrollbar {
869
+ width: 3px;
870
+ }
871
+ &::-webkit-scrollbar-thumb {
872
+ background-color: transparent;
873
+ border: 6px solid #aaaaaa;
874
+ border-radius: 1px;
875
+ }
876
+ &::-webkit-scrollbar-track {
877
+ padding: 0;
878
+ position: relative;
879
+ right: 0;
880
+ top: 0;
881
+ background: transparent;
882
+ }
861
883
 
862
- .fuel-franchise-single-store {
863
- padding: 3px 22px 4px 4px;
864
- }
884
+ .fuel-franchise-single-store {
885
+ padding: 3px 22px 4px 4px;
886
+ }
887
+ }
865
888
  }
866
- }
867
889
 
868
- &.active-stores {
869
- background-color: rgb(170, 170, 170, 0.1);
890
+ &.active-stores {
891
+ background-color: rgb(170, 170, 170, 0.1);
870
892
 
871
- .fuel-franchise-main-header {
872
- color: #ffffff;
873
- font-weight: 700;
874
- }
893
+ .fuel-franchise-main-header {
894
+ color: #ffffff;
895
+ font-weight: 700;
896
+ }
875
897
 
876
- &:hover {
877
- background-color: rgb(170, 170, 170, 0.1);
878
- color: #dadada;
898
+ &:hover {
899
+ background-color: rgb(170, 170, 170, 0.1);
900
+ color: #dadada;
901
+ }
879
902
  }
880
- }
881
-
882
- &.active-stores-header-hover {
883
- &:hover {
884
- background-color: #2f2f2f;
885
- position: relative;
886
903
 
887
- .fuel-franchise-header {
888
- color: #ffffff;
889
- background-color: #1d1d1d;
890
- font-weight: 700;
891
- position: relative;
892
- }
904
+ &.active-stores-header-hover {
905
+ &:hover {
906
+ background-color: #2f2f2f;
907
+ position: relative;
908
+
909
+ .fuel-franchise-header {
910
+ color: #ffffff;
911
+ background-color: #1d1d1d;
912
+ font-weight: 700;
913
+ position: relative;
914
+ }
893
915
 
894
- .helper-hover-container {
895
- content: "";
896
- width: 105%;
897
- height: 26px;
898
- background-color: #1d1d1d;
899
- position: absolute;
900
- top: 0px;
901
- left: 0px;
902
- border-radius: 2px;
903
- }
916
+ .helper-hover-container {
917
+ content: '';
918
+ width: 105%;
919
+ height: 26px;
920
+ background-color: #1d1d1d;
921
+ position: absolute;
922
+ top: 0px;
923
+ left: 0px;
924
+ border-radius: 2px;
925
+ }
904
926
 
905
- .fuel-franchise-header {
906
- .fuel-franchise-header-right-side {
907
- .header-arrow {
908
- svg {
909
- path {
910
- fill: #dadada;
911
- }
927
+ .fuel-franchise-header {
928
+ .fuel-franchise-header-right-side {
929
+ .header-arrow {
930
+ svg {
931
+ path {
932
+ fill: #dadada;
933
+ }
934
+ }
935
+ }
936
+ }
912
937
  }
913
- }
914
938
  }
915
- }
916
939
  }
917
- }
918
940
  }
919
941
 
920
942
  //------------------------ SVG Template ------------------------
921
943
  .svg-template-logo {
922
- height: 18px;
923
- aspect-ratio: 1;
944
+ height: 18px;
945
+ aspect-ratio: 1;
924
946
  }
925
947
 
926
948
  //------------------------ Routing Dropdown ------------------------
927
949
 
928
950
  &.routing_dropdown {
929
- font-size: 11px;
930
- height: 22px;
951
+ font-size: 11px;
952
+ height: 22px;
931
953
  }
932
- }
954
+ }
933
955
 
934
- &.dropdown-status {
956
+ &.dropdown-status {
935
957
  .dropdown-option {
936
- font-weight: bold;
937
- text-transform: uppercase;
958
+ font-weight: bold;
959
+ text-transform: uppercase;
938
960
  }
939
- }
961
+ }
940
962
 
941
- //------------------------ Load Dispatches TTD Template ------------------------
942
- .load-dispatches-ttd-template {
963
+ //------------------------ Load Dispatches TTD Template ------------------------
964
+ .load-dispatches-ttd-template {
943
965
  display: grid;
944
966
  grid-template-columns: repeat(3, 155px) 97px;
945
967
  align-items: center;
946
968
 
947
969
  .load-dispatches-container {
948
- display: flex;
949
- align-items: center;
950
- gap: 6px;
951
- position: relative;
970
+ display: flex;
971
+ align-items: center;
972
+ gap: 6px;
973
+ position: relative;
952
974
 
953
- .owner-avatar {
954
- position: absolute;
955
- left: 13px;
956
- bottom: -3px;
957
- width: 10px;
958
- height: 10px;
959
- }
975
+ .owner-avatar {
976
+ position: absolute;
977
+ left: 13px;
978
+ bottom: -3px;
979
+ width: 10px;
980
+ height: 10px;
981
+ }
960
982
 
961
- .load-dispatch-driver,
962
- .load-dispatch-truck,
963
- .load-dispatch-trailer {
964
- overflow: hidden;
965
- text-overflow: ellipsis;
966
- white-space: nowrap;
967
- width: 116px;
968
- max-width: -webkit-fit-content;
969
- max-width: -moz-fit-content;
970
- max-width: fit-content;
971
- line-height: 18px;
972
- font-size: 14px;
973
- font-weight: 400;
974
- }
983
+ .load-dispatch-driver,
984
+ .load-dispatch-truck,
985
+ .load-dispatch-trailer {
986
+ overflow: hidden;
987
+ text-overflow: ellipsis;
988
+ white-space: nowrap;
989
+ width: 116px;
990
+ max-width: -webkit-fit-content;
991
+ max-width: -moz-fit-content;
992
+ max-width: fit-content;
993
+ line-height: 18px;
994
+ font-size: 14px;
995
+ font-weight: 400;
996
+ }
975
997
 
976
- .load-dispatches-svg {
977
- line-height: 16px;
978
- svg {
979
- width: 46px;
980
- height: 16px;
998
+ .load-dispatches-svg {
999
+ line-height: 16px;
1000
+ svg {
1001
+ width: 46px;
1002
+ height: 16px;
1003
+ }
981
1004
  }
982
- }
983
1005
 
984
- .load-dipstaches-owner-flag {
985
- position: absolute;
986
- top: 44%;
987
- right: 0;
988
- transform: translateY(-50%);
989
- svg {
990
- path {
991
- fill: #6f9ee0 !important;
992
- }
1006
+ .load-dipstaches-owner-flag {
1007
+ position: absolute;
1008
+ top: 44%;
1009
+ right: 0;
1010
+ transform: translateY(-50%);
1011
+ svg {
1012
+ path {
1013
+ fill: #6f9ee0 !important;
1014
+ }
1015
+ }
993
1016
  }
994
- }
995
1017
 
996
- &.trailerContainer {
997
- width: -webkit-max-content !important;
998
- width: -moz-max-content !important;
999
- width: max-content !important;
1000
- padding: 0px !important;
1001
- margin: 0px !important;
1002
- }
1018
+ &.trailerContainer {
1019
+ width: -webkit-max-content !important;
1020
+ width: -moz-max-content !important;
1021
+ width: max-content !important;
1022
+ padding: 0px !important;
1023
+ margin: 0px !important;
1024
+ }
1003
1025
  }
1004
1026
 
1005
1027
  .load-dispatch-driver-rate {
1006
- width: 130px;
1007
- text-align: right;
1008
- font-size: 11px;
1009
- font-weight: 400;
1010
- color: $bw5;
1011
- padding-bottom: 1px;
1012
- text-overflow: ellipsis;
1013
- white-space: nowrap;
1014
- overflow: hidden;
1015
-
1016
- &.active {
1017
- color: #6f9ee0;
1018
- }
1028
+ width: 130px;
1029
+ text-align: right;
1030
+ font-size: 11px;
1031
+ font-weight: 400;
1032
+ color: $bw5;
1033
+ padding-bottom: 1px;
1034
+ text-overflow: ellipsis;
1035
+ white-space: nowrap;
1036
+ overflow: hidden;
1019
1037
 
1020
- &.driver-owner {
1021
- text-align: left;
1022
- width: 80px;
1023
- }
1024
- }
1038
+ &.active {
1039
+ color: #6f9ee0;
1040
+ }
1025
1041
 
1026
- &.active {
1027
- .load-dispatch-driver-rate,
1028
- .load-dispatch-driver,
1029
- .load-dispatch-truck,
1030
- .load-dispatch-trailer {
1031
- font-weight: 700;
1032
- }
1042
+ &.driver-owner {
1043
+ text-align: left;
1044
+ width: 80px;
1045
+ }
1033
1046
  }
1034
- }
1035
1047
 
1036
- //------------------------ Custom width dependent on 'col' bootstrap ------------------------
1037
-
1038
- @for $i from 1 through 800 {
1039
- &.w-col-#{$i} {
1040
- width: unquote($i + "px");
1048
+ &.active {
1049
+ .load-dispatch-driver-rate,
1050
+ .load-dispatch-driver,
1051
+ .load-dispatch-truck,
1052
+ .load-dispatch-trailer {
1053
+ font-weight: 700;
1054
+ }
1041
1055
  }
1042
- }
1056
+ }
1043
1057
 
1044
- // ---------------------------------------- DROPDOWN GROUPS ----------------------------------------
1045
- &.dropdown-options-groups {
1058
+ // ---------------------------------------- DROPDOWN GROUPS ----------------------------------------
1059
+ &.dropdown-options-groups {
1046
1060
  max-height: 194px;
1047
1061
  overflow-y: scroll;
1048
1062
 
1049
1063
  // This class is only for Truck tollTransporder
1050
1064
  .dropdown-groups {
1051
- display: flex;
1052
- flex-direction: column;
1053
- position: relative;
1054
-
1055
- p {
1056
- margin: 0;
1057
- }
1058
-
1059
- &::after {
1060
- content: "";
1061
- display: inline-block;
1062
- position: absolute;
1063
- bottom: -3px;
1064
- height: 1px;
1065
- width: 100%;
1066
- background-color: rgb(170, 170, 170, 0.2);
1067
- }
1065
+ display: flex;
1066
+ flex-direction: column;
1067
+ position: relative;
1068
1068
 
1069
- &:last-child {
1070
- margin-top: 4px;
1071
- &::after {
1072
- display: none !important;
1069
+ p {
1070
+ margin: 0;
1073
1071
  }
1074
- }
1075
1072
 
1076
- .dropdown-group-header {
1077
- font-size: 11px;
1078
- color: $ta-light-grey-6;
1079
- font-weight: 700;
1080
- text-transform: uppercase;
1081
- line-height: 14px;
1082
- padding: 0 6px;
1083
- padding-top: 8px;
1084
- margin-bottom: 8px;
1085
-
1086
- &::-moz-selection {
1087
- background-color: rgb(204, 204, 204, 0.2) !important;
1088
- color: rgb(204, 204, 204, 0.4) !important;
1073
+ &::after {
1074
+ content: '';
1075
+ display: inline-block;
1076
+ position: absolute;
1077
+ bottom: -3px;
1078
+ height: 1px;
1079
+ width: 100%;
1080
+ background-color: rgb(170, 170, 170, 0.2);
1089
1081
  }
1090
1082
 
1091
- &::selection {
1092
- background-color: rgb(204, 204, 204, 0.2) !important;
1093
- color: rgb(204, 204, 204, 0.4) !important;
1083
+ &:last-child {
1084
+ margin-top: 4px;
1085
+ &::after {
1086
+ display: none !important;
1087
+ }
1094
1088
  }
1095
- }
1096
1089
 
1097
- .dropdown-subgroup-options {
1098
- display: flex;
1099
- align-items: center;
1100
- padding: 4px 6px;
1101
- height: 26px;
1102
- border-radius: 2px;
1090
+ .dropdown-group-header {
1091
+ font-size: 11px;
1092
+ color: $ta-light-grey-6;
1093
+ font-weight: 700;
1094
+ text-transform: uppercase;
1095
+ line-height: 14px;
1096
+ padding: 0 6px;
1097
+ padding-top: 8px;
1098
+ margin-bottom: 8px;
1103
1099
 
1104
- .highlight-text-45632 {
1105
- background-color: $ta-blue-20;
1106
- color: $ta-blue-19;
1107
- }
1100
+ &::-moz-selection {
1101
+ background-color: rgb(204, 204, 204, 0.2) !important;
1102
+ color: rgb(204, 204, 204, 0.4) !important;
1103
+ }
1108
1104
 
1109
- &:hover {
1110
- background-color: #1d1d1d;
1111
- cursor: pointer;
1112
- transition: all 0.3s ease-in-out;
1113
- .dropdown-subgroup-text {
1114
- color: #ffffff;
1115
- }
1105
+ &::selection {
1106
+ background-color: rgb(204, 204, 204, 0.2) !important;
1107
+ color: rgb(204, 204, 204, 0.4) !important;
1108
+ }
1116
1109
  }
1117
1110
 
1118
- .dropdown-subgroup-text {
1119
- font-size: 14px;
1120
- font-weight: 400;
1121
- color: $ta-light-grey-6;
1122
- transition: all 0.3s ease-in-out;
1111
+ .dropdown-subgroup-options {
1112
+ display: flex;
1113
+ align-items: center;
1114
+ padding: 4px 6px;
1115
+ height: 26px;
1116
+ border-radius: 2px;
1123
1117
 
1124
- &.active {
1125
- font-weight: 700;
1126
- // Higlight text
1127
1118
  .highlight-text-45632 {
1128
- background-color: $ta-blue-20;
1129
- color: $ta-blue-19;
1130
- transition: all 0.3s ease-in-out;
1131
- &:hover {
1132
- color: #ffffff !important;
1133
- }
1119
+ background-color: $ta-blue-20;
1120
+ color: $ta-blue-19;
1134
1121
  }
1135
1122
 
1136
- &::after {
1137
- position: absolute;
1138
- right: 11px;
1139
- content: url("/assets/ca-components/svg/input/ic_confirm.svg");
1140
- width: 14px;
1141
- height: 10px;
1123
+ &:hover {
1124
+ background-color: #1d1d1d;
1125
+ cursor: pointer;
1126
+ transition: all 0.3s ease-in-out;
1127
+ .dropdown-subgroup-text {
1128
+ color: #ffffff;
1129
+ }
1130
+ }
1131
+
1132
+ .dropdown-subgroup-text {
1133
+ font-size: 14px;
1134
+ font-weight: 400;
1135
+ color: $ta-light-grey-6;
1136
+ transition: all 0.3s ease-in-out;
1137
+
1138
+ &.active {
1139
+ font-weight: 700;
1140
+ // Higlight text
1141
+ .highlight-text-45632 {
1142
+ background-color: $ta-blue-20;
1143
+ color: $ta-blue-19;
1144
+ transition: all 0.3s ease-in-out;
1145
+ &:hover {
1146
+ color: #ffffff !important;
1147
+ }
1148
+ }
1149
+
1150
+ &::after {
1151
+ position: absolute;
1152
+ right: 11px;
1153
+ content: url('/assets/ca-components/svg/input/ic_confirm.svg');
1154
+ width: 14px;
1155
+ height: 10px;
1156
+ }
1157
+ }
1142
1158
  }
1143
- }
1144
1159
  }
1145
- }
1146
1160
  }
1147
1161
 
1148
1162
  // Override groups classes for load-broker-contact-template
1149
1163
  .load-broker-contact-groups {
1150
- display: flex;
1151
- flex-direction: column;
1152
- position: relative;
1153
- padding-bottom: 0px;
1154
- margin: 0;
1155
-
1156
- p {
1164
+ display: flex;
1165
+ flex-direction: column;
1166
+ position: relative;
1167
+ padding-bottom: 0px;
1157
1168
  margin: 0;
1158
- }
1159
-
1160
- .dropdown-group-header {
1161
- padding: 0px;
1162
- margin: 0px;
1163
- padding-top: 8px;
1164
- padding-left: 4px;
1165
- margin-bottom: 4px;
1166
-
1167
- color: $ta-light-grey-6;
1168
- font-size: 11px;
1169
- text-transform: capitalize;
1170
1169
 
1171
- &.add-new {
1172
- font-size: 11px;
1173
- line-height: 14px;
1174
- font-weight: 700;
1175
- color: #6f9ee0;
1176
- padding: 4px;
1177
- margin: 0;
1178
- cursor: pointer;
1179
-
1180
- &:hover {
1181
- border-radius: 2px;
1182
- color: $ta-blue-17;
1183
- background-color: #1d1d1d;
1184
- }
1170
+ p {
1171
+ margin: 0;
1185
1172
  }
1186
- }
1187
1173
 
1188
- .dropdown-subgroup-options {
1189
- display: grid;
1190
- grid-template-columns: 141px 135px;
1191
- grid-column-gap: 10px;
1192
- -moz-column-gap: 10px;
1193
- column-gap: 10px;
1194
- align-items: center;
1195
- padding: 3px 4px;
1196
- // margin-bottom: 2px;
1197
- cursor: pointer;
1174
+ .dropdown-group-header {
1175
+ padding: 0px;
1176
+ margin: 0px;
1177
+ padding-top: 8px;
1178
+ padding-left: 4px;
1179
+ margin-bottom: 4px;
1198
1180
 
1199
- &:hover {
1200
- border-radius: 2px;
1201
- background-color: #1d1d1d;
1181
+ color: $ta-light-grey-6;
1182
+ font-size: 11px;
1183
+ text-transform: capitalize;
1202
1184
 
1203
- .dropdown-subgroup-text {
1204
- color: #ffffff !important;
1205
- }
1185
+ &.add-new {
1186
+ font-size: 11px;
1187
+ line-height: 14px;
1188
+ font-weight: 700;
1189
+ color: #6f9ee0;
1190
+ padding: 4px;
1191
+ margin: 0;
1192
+ cursor: pointer;
1193
+
1194
+ &:hover {
1195
+ border-radius: 2px;
1196
+ color: $ta-blue-17;
1197
+ background-color: #1d1d1d;
1198
+ }
1199
+ }
1206
1200
  }
1207
1201
 
1208
- .dropdown-subgroup-text {
1209
- font-size: 14px;
1210
- font-weight: 400;
1211
- color: #ffffff;
1212
- display: block;
1213
- width: 100%;
1202
+ .dropdown-subgroup-options {
1203
+ display: grid;
1204
+ grid-template-columns: 141px 135px;
1205
+ grid-column-gap: 10px;
1206
+ -moz-column-gap: 10px;
1207
+ column-gap: 10px;
1208
+ align-items: center;
1209
+ padding: 3px 4px;
1210
+ // margin-bottom: 2px;
1211
+ cursor: pointer;
1214
1212
 
1215
- // Higlight text
1216
- .highlight-text-45632 {
1217
- background-color: $ta-blue-20;
1218
- color: $ta-blue-19;
1219
1213
  &:hover {
1220
- color: #ffffff !important;
1214
+ border-radius: 2px;
1215
+ background-color: #1d1d1d;
1216
+
1217
+ .dropdown-subgroup-text {
1218
+ color: #ffffff !important;
1219
+ }
1221
1220
  }
1222
- }
1223
1221
 
1224
- &.active {
1225
- font-weight: 700;
1222
+ .dropdown-subgroup-text {
1223
+ font-size: 14px;
1224
+ font-weight: 400;
1225
+ color: #ffffff;
1226
+ display: block;
1227
+ width: 100%;
1228
+
1229
+ // Higlight text
1230
+ .highlight-text-45632 {
1231
+ background-color: $ta-blue-20;
1232
+ color: $ta-blue-19;
1233
+ &:hover {
1234
+ color: #ffffff !important;
1235
+ }
1236
+ }
1226
1237
 
1227
- &::after {
1228
- position: absolute;
1229
- right: -26px;
1230
- content: url("/assets/ca-components/svg/input/ic_confirm.svg");
1231
- width: 14px;
1232
- height: 10px;
1238
+ &.active {
1239
+ font-weight: 700;
1240
+
1241
+ &::after {
1242
+ position: absolute;
1243
+ right: -26px;
1244
+ content: url('/assets/ca-components/svg/input/ic_confirm.svg');
1245
+ width: 14px;
1246
+ height: 10px;
1247
+ }
1248
+ }
1233
1249
  }
1234
- }
1235
- }
1236
1250
 
1237
- .dropdown-subgroup-additional-text {
1238
- color: $bw5;
1239
- font-size: 11px;
1240
- font-weight: 400;
1241
- position: relative;
1242
- text-align: right;
1251
+ .dropdown-subgroup-additional-text {
1252
+ color: $bw5;
1253
+ font-size: 11px;
1254
+ font-weight: 400;
1255
+ position: relative;
1256
+ text-align: right;
1243
1257
 
1244
- &.active {
1245
- font-weight: 400;
1246
- color: #6f9ee0;
1247
- }
1258
+ &.active {
1259
+ font-weight: 400;
1260
+ color: #6f9ee0;
1261
+ }
1248
1262
 
1249
- // Higlight text
1250
- .highlight-text-45632 {
1251
- background-color: $ta-blue-20;
1252
- color: $ta-blue-19;
1253
- }
1263
+ // Higlight text
1264
+ .highlight-text-45632 {
1265
+ background-color: $ta-blue-20;
1266
+ color: $ta-blue-19;
1267
+ }
1268
+ }
1254
1269
  }
1255
- }
1256
1270
  }
1257
- }
1271
+ }
1258
1272
 
1259
- // Merged Dropdown
1260
- &.merge-dropdown-body-with-input {
1273
+ // Merged Dropdown
1274
+ &.merge-dropdown-body-with-input {
1261
1275
  border-radius: 0 0 2px 2px !important;
1262
1276
  left: -4px !important;
1263
- }
1277
+ }
1264
1278
 
1265
- // Dispatch Dropdown
1266
- &.svgtext-dispatch-template {
1279
+ // Dispatch Dropdown
1280
+ &.svgtext-dispatch-template {
1267
1281
  top: -4px;
1268
1282
 
1269
1283
  .plus-icon {
1270
- margin-right: 4px;
1284
+ margin-right: 4px;
1271
1285
  }
1272
1286
 
1273
1287
  .icon {
1274
- &.blue {
1275
- circle {
1276
- fill: $ta-blue-19 !important;
1288
+ &.blue {
1289
+ circle {
1290
+ fill: $ta-blue-19 !important;
1291
+ }
1277
1292
  }
1278
- }
1279
1293
 
1280
- &.yellow {
1281
- circle {
1282
- fill: $ta-yellow-4 !important;
1294
+ &.yellow {
1295
+ circle {
1296
+ fill: $ta-yellow-4 !important;
1297
+ }
1283
1298
  }
1284
- }
1285
1299
 
1286
- &.red {
1287
- circle {
1288
- fill: $ta-red-13 !important;
1300
+ &.red {
1301
+ circle {
1302
+ fill: $ta-red-13 !important;
1303
+ }
1289
1304
  }
1290
- }
1291
1305
 
1292
- &.green {
1293
- circle {
1294
- fill: $ta-green-4 !important;
1306
+ &.green {
1307
+ circle {
1308
+ fill: $ta-green-4 !important;
1309
+ }
1295
1310
  }
1296
- }
1297
1311
  }
1298
- }
1299
1312
  }
1300
- }
1301
1313
  }
1302
- //------------------------ Load Dispatcher Template ------------------------
1303
- .load-dispatcher-template {
1314
+ //------------------------ Load Dispatcher Template ------------------------
1315
+ .load-dispatcher-template {
1304
1316
  display: flex;
1305
1317
  align-items: center;
1306
1318
  gap: 6px;
1307
- }
1319
+ }
1308
1320
 
1309
- //------------------------ Load Shipper Contact Template -----------------------
1310
- .load-shipper-template {
1311
- display: grid;
1312
- grid-template-columns: 405px 166px;
1313
- align-items: center;
1314
- padding-right: 25px;
1321
+ //------------------------ Load Shipper Contact Template -----------------------
1322
+ .load-shipper-template {
1323
+ display: grid;
1324
+ grid-template-columns: 405px 166px;
1325
+ align-items: center;
1326
+ padding-right: 25px;
1315
1327
 
1316
- .load-shipper-status-text {
1317
- &.in-option{
1328
+ .load-shipper-status-text {
1329
+ &.in-option {
1318
1330
  height: 22px;
1319
- }
1320
- display: flex;
1321
- align-items: center;
1322
- gap: 6px;
1323
- line-height: 18px;
1331
+ }
1332
+ display: flex;
1333
+ align-items: center;
1334
+ gap: 6px;
1335
+ line-height: 18px;
1324
1336
 
1325
- .load-shipper-status {
1337
+ .load-shipper-status {
1326
1338
  position: relative;
1327
1339
  line-height: 17px;
1328
- }
1340
+ }
1329
1341
 
1330
- .load-shipper-text {
1342
+ .load-shipper-text {
1331
1343
  &.disabled {
1332
- color: #6c6c6c;
1344
+ color: #6c6c6c;
1333
1345
  }
1334
- }
1335
1346
  }
1347
+ }
1336
1348
 
1337
- div {
1338
- &:nth-child(2),
1339
- &:nth-child(3) {
1349
+ div {
1350
+ &:nth-child(2),
1351
+ &:nth-child(3) {
1340
1352
  text-align: right;
1341
- }
1353
+ }
1342
1354
 
1343
- &:nth-child(2) {
1355
+ &:nth-child(2) {
1344
1356
  color: $bw5;
1345
1357
  font-size: 11px;
1346
1358
  font-weight: 400;
1347
1359
 
1348
1360
  &.active {
1349
- color: #6f9ee0;
1350
- font-weight: bold;
1351
- }
1352
- }
1353
- }
1354
-
1355
- .load-shipper-load-counter {
1356
- max-width: -webkit-max-content;
1357
- max-width: -moz-max-content;
1358
- max-width: max-content;
1359
- height: 18px;
1360
- border-radius: 30px;
1361
- text-align: right;
1362
- font-size: 11px;
1363
- font-weight: 400;
1364
- color: $bw5;
1365
- background-color: rgb(145, 145, 145, 0.2);
1366
- padding: 1px 6px;
1367
- justify-self: flex-end;
1368
-
1369
- &.active {
1361
+ color: #6f9ee0;
1362
+ font-weight: bold;
1363
+ }
1364
+ }
1365
+ }
1366
+
1367
+ .load-shipper-load-counter {
1368
+ max-width: -webkit-max-content;
1369
+ max-width: -moz-max-content;
1370
+ max-width: max-content;
1371
+ height: 18px;
1372
+ border-radius: 30px;
1373
+ text-align: right;
1374
+ font-size: 11px;
1375
+ font-weight: 400;
1376
+ color: $bw5;
1377
+ background-color: rgb(145, 145, 145, 0.2);
1378
+ padding: 1px 6px;
1379
+ justify-self: flex-end;
1380
+
1381
+ &.active {
1370
1382
  color: #6f9ee0;
1371
1383
  background-color: rgb(111, 158, 224, 0.2);
1372
- }
1373
1384
  }
1374
- }
1385
+ }
1386
+ }
1375
1387
 
1376
1388
  // PM Repair Modal popover
1377
1389
  .ta-dropdown-popover {
1378
- z-index: 999999;
1379
- .arrow {
1380
- display: none !important;
1381
- }
1382
-
1383
- .popover-body {
1384
- z-index: 99999999;
1385
- .options {
1386
- position: relative;
1387
- top: 3px;
1388
- z-index: 1000;
1389
- max-height: 198px;
1390
- width: 100%;
1391
- background-color: #2f2f2f;
1392
- border-radius: 2px;
1393
- padding: 2px;
1394
- overflow: hidden;
1395
-
1396
- &.scroll {
1397
- transition: all 0.3s ease-in-out;
1398
- overflow-y: scroll !important;
1390
+ z-index: 999999;
1391
+ .arrow {
1392
+ display: none !important;
1393
+ }
1399
1394
 
1400
- &::-webkit-scrollbar {
1401
- width: 3px;
1402
- }
1395
+ .popover-body {
1396
+ z-index: 99999999;
1397
+ .options {
1398
+ position: relative;
1399
+ top: 3px;
1400
+ z-index: 1000;
1401
+ max-height: 198px;
1402
+ width: 100%;
1403
+ background-color: #2f2f2f;
1404
+ border-radius: 2px;
1405
+ padding: 2px;
1406
+ overflow: hidden;
1403
1407
 
1404
- &::-webkit-scrollbar-thumb {
1405
- background-color: transparent;
1406
- border: 6px solid #aaaaaa;
1407
- border-radius: 1px;
1408
- }
1408
+ &.scroll {
1409
+ transition: all 0.3s ease-in-out;
1410
+ overflow-y: scroll !important;
1409
1411
 
1410
- &::-webkit-scrollbar-track {
1411
- padding: 0;
1412
- position: relative;
1413
- right: 0;
1414
- top: 0;
1415
- background: transparent;
1416
- }
1417
- }
1412
+ &::-webkit-scrollbar {
1413
+ width: 3px;
1414
+ }
1418
1415
 
1419
- .option {
1420
- position: relative;
1421
- padding: 3px;
1422
- height: 26px;
1423
- font-size: 14px;
1424
- line-height: 18px;
1425
- font-weight: 400;
1426
- border-radius: 2px;
1427
- white-space: nowrap;
1428
- text-overflow: ellipsis;
1429
- color: #ffffff;
1430
- display: flex;
1431
- gap: 4px;
1416
+ &::-webkit-scrollbar-thumb {
1417
+ background-color: transparent;
1418
+ border: 6px solid #aaaaaa;
1419
+ border-radius: 1px;
1420
+ }
1432
1421
 
1433
- &::-moz-selection {
1434
- color: #ffffff;
1435
- background-color: rgb(255, 255, 255, 0.2);
1436
- }
1422
+ &::-webkit-scrollbar-track {
1423
+ padding: 0;
1424
+ position: relative;
1425
+ right: 0;
1426
+ top: 0;
1427
+ background: transparent;
1428
+ }
1429
+ }
1437
1430
 
1438
- &:nth-last-child(1) {
1439
- margin-bottom: 0px;
1440
- }
1431
+ .option {
1432
+ position: relative;
1433
+ padding: 3px;
1434
+ height: 26px;
1435
+ font-size: 14px;
1436
+ line-height: 18px;
1437
+ font-weight: 400;
1438
+ border-radius: 2px;
1439
+ white-space: nowrap;
1440
+ text-overflow: ellipsis;
1441
+ color: #ffffff;
1442
+ display: flex;
1443
+ gap: 4px;
1441
1444
 
1442
- &:hover {
1443
- background-color: #1d1d1d;
1444
- border-radius: 2px;
1445
- cursor: pointer;
1446
- }
1445
+ &::-moz-selection {
1446
+ color: #ffffff;
1447
+ background-color: rgb(255, 255, 255, 0.2);
1448
+ }
1447
1449
 
1448
- &.add-option {
1449
- color: #6f9ee0;
1450
- font-weight: 600;
1450
+ &:nth-last-child(1) {
1451
+ margin-bottom: 0px;
1452
+ }
1451
1453
 
1452
- &::after {
1453
- content: "";
1454
- height: 2px;
1455
- width: 100%;
1456
- background-color: rgb(170, 170, 170, 0.2);
1457
- border-radius: 1px;
1458
- position: absolute;
1459
- bottom: 0px;
1460
- left: 0px;
1461
- }
1454
+ &:hover {
1455
+ background-color: #1d1d1d;
1456
+ border-radius: 2px;
1457
+ cursor: pointer;
1458
+ }
1459
+
1460
+ &.add-option {
1461
+ color: #6f9ee0;
1462
+ font-weight: 600;
1463
+
1464
+ &::after {
1465
+ content: '';
1466
+ height: 2px;
1467
+ width: 100%;
1468
+ background-color: rgb(170, 170, 170, 0.2);
1469
+ border-radius: 1px;
1470
+ position: absolute;
1471
+ bottom: 0px;
1472
+ left: 0px;
1473
+ }
1474
+ }
1475
+ }
1462
1476
  }
1463
- }
1464
1477
  }
1465
- }
1466
1478
  }
1467
1479
 
1468
- //------------------------ Load Broker Template ------------------------
1469
- .load-broker-template {
1470
- &.in-option{
1471
- height: 22px;
1472
- }
1480
+ //------------------------ Load Broker Template ------------------------
1481
+ .load-broker-template {
1482
+ &.in-option {
1483
+ height: 22px;
1484
+ }
1473
1485
 
1474
- display: grid;
1486
+ display: grid;
1487
+ align-items: center;
1488
+ grid-template-columns: 276px 92px;
1489
+ -moz-column-gap: 29px;
1490
+ column-gap: 29px;
1491
+ &.hide-loads {
1492
+ grid-template-columns: 333px 92px !important;
1493
+ }
1494
+ .load-broker-status-text {
1495
+ display: flex;
1475
1496
  align-items: center;
1476
- grid-template-columns: 276px 92px;
1477
- -moz-column-gap: 29px;
1478
- column-gap: 29px;
1479
- &.hide-loads {
1480
- grid-template-columns: 333px 92px !important;
1481
- }
1482
- .load-broker-status-text {
1483
- display: flex;
1484
- align-items: center;
1485
- gap: 6px;
1486
- line-height: 18px;
1487
-
1488
- .load-broker-status {
1497
+ gap: 6px;
1498
+ line-height: 18px;
1499
+
1500
+ .load-broker-status {
1489
1501
  position: relative;
1490
1502
  line-height: 17px;
1491
1503
 
1492
1504
  &.dnu-status {
1493
- svg {
1494
- path {
1495
- fill: #aaaaaa;
1505
+ svg {
1506
+ path {
1507
+ fill: #aaaaaa;
1508
+ }
1496
1509
  }
1497
- }
1498
1510
  }
1499
- }
1511
+ }
1500
1512
 
1501
- .load-broker-text {
1513
+ .load-broker-text {
1502
1514
  &.disabled {
1503
- color: #6c6c6c;
1515
+ color: #6c6c6c;
1504
1516
  }
1505
- }
1506
1517
  }
1518
+ }
1507
1519
 
1508
- .load-broker-progress-status {
1509
- height: 14px;
1510
- display: flex;
1511
- align-items: center;
1512
- justify-content: flex-end;
1513
- grid-gap: 4px;
1514
- gap: 4px;
1515
- text-align: center;
1520
+ .load-broker-progress-status {
1521
+ height: 14px;
1522
+ display: flex;
1523
+ align-items: center;
1524
+ justify-content: flex-end;
1525
+ grid-gap: 4px;
1526
+ gap: 4px;
1527
+ text-align: center;
1516
1528
 
1517
- .progress-bar-price {
1529
+ .progress-bar-price {
1518
1530
  color: $bw5;
1519
1531
  font-size: 11px;
1520
1532
  font-weight: 400;
1521
- }
1533
+ }
1522
1534
 
1523
- .progress-bar-line {
1535
+ .progress-bar-line {
1524
1536
  width: 24px;
1525
- }
1526
- }
1527
-
1528
- .load-broker-load-counter {
1529
- max-width: -webkit-max-content;
1530
- max-width: -moz-max-content;
1531
- max-width: max-content;
1532
- height: 18px;
1533
- border-radius: 30px;
1534
- text-align: center;
1535
- font-size: 11px;
1536
- font-weight: 400;
1537
- color: $bw5;
1538
- background-color: rgb(145, 145, 145, 0.2);
1539
- padding: 1px 6px;
1540
-
1541
- &.active {
1537
+ }
1538
+ }
1539
+
1540
+ .load-broker-load-counter {
1541
+ max-width: -webkit-max-content;
1542
+ max-width: -moz-max-content;
1543
+ max-width: max-content;
1544
+ height: 18px;
1545
+ border-radius: 30px;
1546
+ text-align: center;
1547
+ font-size: 11px;
1548
+ font-weight: 400;
1549
+ color: $bw5;
1550
+ background-color: rgb(145, 145, 145, 0.2);
1551
+ padding: 1px 6px;
1552
+
1553
+ &.active {
1542
1554
  color: #6f9ee0;
1543
1555
  background-color: rgb(111, 158, 224, 0.2);
1544
- }
1556
+ }
1545
1557
 
1546
- &.hasOneValue {
1558
+ &.hasOneValue {
1547
1559
  max-width: 19px !important;
1548
- }
1549
1560
  }
1550
- }
1561
+ }
1562
+ }
1551
1563
 
1552
1564
  // Selected Dropdown Card Preview
1553
1565
  .selected-item-container {
1554
- height: 52px;
1555
- padding: 6px;
1556
- background: $ta-blue-16;
1557
- position: relative;
1558
- border-radius: 2px;
1559
- transition: background 0.3s ease-in-out;
1566
+ height: 52px;
1567
+ padding: 6px;
1568
+ background: $ta-blue-16;
1569
+ position: relative;
1570
+ border-radius: 2px;
1571
+ transition: background 0.3s ease-in-out;
1560
1572
 
1561
- &:hover {
1562
- background: $ta-blue-17;
1573
+ &:hover {
1574
+ background: $ta-blue-17;
1563
1575
 
1564
- .selected-item-additional {
1565
- .selected-item-info {
1566
- svg-icon {
1567
- svg {
1568
- path {
1569
- fill: $ta-blue-14;
1576
+ .selected-item-additional {
1577
+ .selected-item-info {
1578
+ svg-icon {
1579
+ svg {
1580
+ path {
1581
+ fill: $ta-blue-14;
1582
+ }
1583
+ }
1584
+ }
1570
1585
  }
1571
- }
1572
1586
  }
1573
- }
1574
- }
1575
1587
 
1576
- .clear-selected-item {
1577
- display: flex;
1578
- align-items: center;
1579
- }
1580
- }
1581
-
1582
- .selected-item-label {
1583
- position: absolute;
1584
- top: -16px;
1585
- font-size: 11px;
1586
- font-weight: 600;
1587
- color: $ta-black;
1588
-
1589
- -webkit-user-select: none;
1590
- -moz-user-select: none;
1591
- -ms-user-select: none;
1592
- user-select: none;
1593
-
1594
- span {
1595
- color: $ta-red-11;
1588
+ .clear-selected-item {
1589
+ display: flex;
1590
+ align-items: center;
1591
+ }
1596
1592
  }
1597
- }
1598
1593
 
1599
- .selected-item-name {
1600
- font-size: 14px;
1601
- line-height: 18px;
1602
- color: $ta-black;
1594
+ .selected-item-label {
1595
+ position: absolute;
1596
+ top: -16px;
1597
+ font-size: 11px;
1598
+ font-weight: 600;
1599
+ color: $ta-black;
1603
1600
 
1604
- &::-moz-selection {
1605
- color: $ta-black;
1606
- background: rgb(66, 66, 66, 0.2);
1607
- }
1601
+ -webkit-user-select: none;
1602
+ -moz-user-select: none;
1603
+ -ms-user-select: none;
1604
+ user-select: none;
1608
1605
 
1609
- &::selection {
1610
- color: $ta-black;
1611
- background: rgb(66, 66, 66, 0.2);
1606
+ span {
1607
+ color: $ta-red-11;
1608
+ }
1612
1609
  }
1613
1610
 
1614
- .selected-item-star {
1615
- position: relative;
1616
- bottom: 2px;
1611
+ .selected-item-name {
1612
+ font-size: 14px;
1613
+ line-height: 18px;
1614
+ color: $ta-black;
1615
+
1616
+ &::-moz-selection {
1617
+ color: $ta-black;
1618
+ background: rgb(66, 66, 66, 0.2);
1619
+ }
1620
+
1621
+ &::selection {
1622
+ color: $ta-black;
1623
+ background: rgb(66, 66, 66, 0.2);
1624
+ }
1617
1625
 
1618
- svg {
1619
- margin-left: 6px;
1626
+ .selected-item-star {
1627
+ position: relative;
1628
+ bottom: 2px;
1620
1629
 
1621
- path {
1622
- fill: $ta-blue-13;
1630
+ svg {
1631
+ margin-left: 6px;
1632
+
1633
+ path {
1634
+ fill: $ta-blue-13;
1635
+ }
1636
+ }
1623
1637
  }
1624
- }
1625
1638
  }
1626
- }
1627
1639
 
1628
- .selected-item-additional {
1629
- gap: 22px;
1640
+ .selected-item-additional {
1641
+ gap: 22px;
1630
1642
 
1631
- .selected-item-info {
1632
- svg-icon {
1633
- width: 14px;
1643
+ .selected-item-info {
1644
+ svg-icon {
1645
+ width: 14px;
1634
1646
 
1635
- svg {
1636
- width: 100%;
1637
- height: 100%;
1647
+ svg {
1648
+ width: 100%;
1649
+ height: 100%;
1638
1650
 
1639
- path {
1640
- fill: $ta-blue-13;
1641
- transition: fill 0.3s ease-in-out;
1642
- }
1643
- }
1644
- }
1651
+ path {
1652
+ fill: $ta-blue-13;
1653
+ transition: fill 0.3s ease-in-out;
1654
+ }
1655
+ }
1656
+ }
1645
1657
 
1646
- .hide-svg-on-copy {
1647
- display: none;
1648
- }
1658
+ .hide-svg-on-copy {
1659
+ display: none;
1660
+ }
1661
+ }
1649
1662
  }
1650
- }
1651
1663
 
1652
- .clear-selected-item {
1653
- position: absolute;
1654
- right: 4px;
1655
- top: 0px;
1656
- display: none;
1657
- gap: 6px;
1664
+ .clear-selected-item {
1665
+ position: absolute;
1666
+ right: 4px;
1667
+ top: 0px;
1668
+ display: none;
1669
+ gap: 6px;
1658
1670
 
1659
- .clear-x {
1660
- cursor: pointer;
1661
- transition: transform 0.3s ease-in-out;
1671
+ .clear-x {
1672
+ cursor: pointer;
1673
+ transition: transform 0.3s ease-in-out;
1662
1674
 
1663
- &:hover {
1664
- transform: scale(1.2);
1665
- }
1675
+ &:hover {
1676
+ transform: scale(1.2);
1677
+ }
1666
1678
 
1667
- svg {
1668
- path {
1669
- fill: $ta-blue-17;
1670
- }
1679
+ svg {
1680
+ path {
1681
+ fill: $ta-blue-17;
1682
+ }
1671
1683
 
1672
- rect {
1673
- fill: $ta-blue-13;
1674
- }
1675
- }
1684
+ rect {
1685
+ fill: $ta-blue-13;
1686
+ }
1687
+ }
1676
1688
 
1677
- &:hover {
1678
- svg {
1679
- rect {
1680
- fill: $ta-blue-15;
1681
- }
1689
+ &:hover {
1690
+ svg {
1691
+ rect {
1692
+ fill: $ta-blue-15;
1693
+ }
1694
+ }
1695
+ }
1682
1696
  }
1683
- }
1684
1697
  }
1685
- }
1686
1698
 
1687
- &.non-editable {
1688
- background-color: $ta-light-grey-5;
1699
+ &.non-editable {
1700
+ background-color: $ta-light-grey-5;
1689
1701
 
1690
- .selected-item-label,
1691
- .selected-item-name {
1692
- color: $bw5;
1693
- }
1702
+ .selected-item-label,
1703
+ .selected-item-name {
1704
+ color: $bw5;
1705
+ }
1694
1706
 
1695
- .selected-item-additional {
1696
- .selected-item-info {
1697
- svg-icon {
1698
- svg {
1699
- path {
1700
- fill: $ta-light-grey-6;
1707
+ .selected-item-additional {
1708
+ .selected-item-info {
1709
+ svg-icon {
1710
+ svg {
1711
+ path {
1712
+ fill: $ta-light-grey-6;
1713
+ }
1714
+ }
1715
+ }
1716
+ p {
1717
+ color: $bw5;
1718
+ }
1701
1719
  }
1702
- }
1703
- }
1704
- p {
1705
- color: $bw5;
1706
1720
  }
1707
- }
1708
1721
  }
1709
- }
1710
1722
  }
1711
1723
 
1712
1724
  .dropdown-trailer-hover {
1713
- &:hover {
1714
- // TRUCKS
1715
- .ic_truck_semi-truck {
1716
- svg {
1717
- path {
1718
- fill: $ta-green;
1719
- }
1720
- }
1721
- }
1725
+ &:hover {
1726
+ // TRUCKS
1727
+ .ic_truck_semi-truck {
1728
+ svg {
1729
+ path {
1730
+ fill: $ta-green;
1731
+ }
1732
+ }
1733
+ }
1722
1734
 
1723
- .ic_truck_semi-wSleeper {
1724
- svg {
1725
- path {
1726
- fill: $ta-yellow-1;
1735
+ .ic_truck_semi-wSleeper {
1736
+ svg {
1737
+ path {
1738
+ fill: $ta-yellow-1;
1739
+ }
1740
+ }
1727
1741
  }
1728
- }
1729
- }
1730
1742
 
1731
- .ic_truck_box-truck {
1732
- svg {
1733
- path {
1734
- fill: $ta-red-10;
1743
+ .ic_truck_box-truck {
1744
+ svg {
1745
+ path {
1746
+ fill: $ta-red-10;
1747
+ }
1748
+ }
1735
1749
  }
1736
- }
1737
- }
1738
1750
 
1739
- .ic_truck_cargo-van {
1740
- svg {
1741
- path {
1742
- fill: $ta-blue-13;
1751
+ .ic_truck_cargo-van {
1752
+ svg {
1753
+ path {
1754
+ fill: $ta-blue-13;
1755
+ }
1756
+ }
1743
1757
  }
1744
- }
1745
- }
1746
1758
 
1747
- .ic_truck_tow-truck {
1748
- svg {
1749
- path {
1750
- fill: $ta-purple-1;
1759
+ .ic_truck_tow-truck {
1760
+ svg {
1761
+ path {
1762
+ fill: $ta-purple-1;
1763
+ }
1764
+ }
1751
1765
  }
1752
- }
1753
- }
1754
1766
 
1755
- .ic_truck_car-hauler {
1756
- svg {
1757
- path {
1758
- fill: $ta-red-18;
1767
+ .ic_truck_car-hauler {
1768
+ svg {
1769
+ path {
1770
+ fill: $ta-red-18;
1771
+ }
1772
+ }
1759
1773
  }
1760
- }
1761
- }
1762
1774
 
1763
- .ic_truck_spotter {
1764
- svg {
1765
- path {
1766
- fill: $ta-orange-5;
1775
+ .ic_truck_spotter {
1776
+ svg {
1777
+ path {
1778
+ fill: $ta-orange-5;
1779
+ }
1780
+ }
1767
1781
  }
1768
- }
1769
- }
1770
1782
 
1771
- // TRAILERS
1772
- .ic_trailer_reefer {
1773
- svg {
1774
- path {
1775
- fill: $ta-blue-13;
1783
+ // TRAILERS
1784
+ .ic_trailer_reefer {
1785
+ svg {
1786
+ path {
1787
+ fill: $ta-blue-13;
1788
+ }
1789
+ }
1776
1790
  }
1777
- }
1778
- }
1779
1791
 
1780
- .ic_trailer_dryvan {
1781
- svg {
1782
- path {
1783
- fill: $ta-blue-24;
1792
+ .ic_trailer_dryvan {
1793
+ svg {
1794
+ path {
1795
+ fill: $ta-blue-24;
1796
+ }
1797
+ }
1784
1798
  }
1785
- }
1786
- }
1787
1799
 
1788
- .ic_trailer_side-kit {
1789
- svg {
1790
- path {
1791
- fill: $ta-orange-4;
1800
+ .ic_trailer_side-kit {
1801
+ svg {
1802
+ path {
1803
+ fill: $ta-orange-4;
1804
+ }
1805
+ }
1792
1806
  }
1793
- }
1794
- }
1795
1807
 
1796
- .ic_trailer_conestoga {
1797
- svg {
1798
- path {
1799
- fill: $ta-yellow-8;
1808
+ .ic_trailer_conestoga {
1809
+ svg {
1810
+ path {
1811
+ fill: $ta-yellow-8;
1812
+ }
1813
+ }
1800
1814
  }
1801
- }
1802
- }
1803
1815
 
1804
- .ic_trailer_dumper {
1805
- svg {
1806
- path {
1807
- fill: $ta-purple-1;
1816
+ .ic_trailer_dumper {
1817
+ svg {
1818
+ path {
1819
+ fill: $ta-purple-1;
1820
+ }
1821
+ }
1808
1822
  }
1809
- }
1810
- }
1811
1823
 
1812
- .ic_trailer_container {
1813
- svg {
1814
- path {
1815
- fill: $ta-yellow-1;
1824
+ .ic_trailer_container {
1825
+ svg {
1826
+ path {
1827
+ fill: $ta-yellow-1;
1828
+ }
1829
+ }
1816
1830
  }
1817
- }
1818
- }
1819
1831
 
1820
- .ic_trailer_tanker {
1821
- svg {
1822
- path {
1823
- fill: $ta-green-6;
1832
+ .ic_trailer_tanker {
1833
+ svg {
1834
+ path {
1835
+ fill: $ta-green-6;
1836
+ }
1837
+ }
1824
1838
  }
1825
- }
1826
- }
1827
1839
 
1828
- .ic_trailer_carhauler {
1829
- svg {
1830
- path {
1831
- fill: $ta-red-18;
1840
+ .ic_trailer_carhauler {
1841
+ svg {
1842
+ path {
1843
+ fill: $ta-red-18;
1844
+ }
1845
+ }
1832
1846
  }
1833
- }
1834
- }
1835
1847
 
1836
- .ic_trailer_flatbed {
1837
- svg {
1838
- path {
1839
- fill: $ta-red-13;
1848
+ .ic_trailer_flatbed {
1849
+ svg {
1850
+ path {
1851
+ fill: $ta-red-13;
1852
+ }
1853
+ }
1840
1854
  }
1841
- }
1842
- }
1843
1855
 
1844
- .ic_trailer_low-boy {
1845
- svg {
1846
- path {
1847
- fill: $ta-red-11;
1856
+ .ic_trailer_low-boy {
1857
+ svg {
1858
+ path {
1859
+ fill: $ta-red-11;
1860
+ }
1861
+ }
1848
1862
  }
1849
- }
1850
- }
1851
1863
 
1852
- .ic_trailer_chassis {
1853
- svg {
1854
- path {
1855
- fill: $ta-orange-5;
1864
+ .ic_trailer_chassis {
1865
+ svg {
1866
+ path {
1867
+ fill: $ta-orange-5;
1868
+ }
1869
+ }
1856
1870
  }
1857
- }
1858
- }
1859
1871
 
1860
- .ic_trailer_step-deck {
1861
- svg {
1862
- path {
1863
- fill: $ta-red-10;
1872
+ .ic_trailer_step-deck {
1873
+ svg {
1874
+ path {
1875
+ fill: $ta-red-10;
1876
+ }
1877
+ }
1864
1878
  }
1865
- }
1866
- }
1867
1879
 
1868
- .ic_trailer_tanker_pneumatic {
1869
- svg {
1870
- path {
1871
- fill: $ta-green;
1880
+ .ic_trailer_tanker_pneumatic {
1881
+ svg {
1882
+ path {
1883
+ fill: $ta-green;
1884
+ }
1885
+ }
1872
1886
  }
1873
- }
1874
- }
1875
1887
 
1876
- .ic_carhauler_stinger {
1877
- svg {
1878
- path {
1879
- fill: $ta-red-19;
1888
+ .ic_carhauler_stinger {
1889
+ svg {
1890
+ path {
1891
+ fill: $ta-red-19;
1892
+ }
1893
+ }
1880
1894
  }
1881
- }
1882
1895
  }
1883
- }
1884
1896
  }
1885
1897
 
1886
1898
  .hide-after-arrow .dropdown-option.active::after {
1887
- display: none !important;
1899
+ display: none !important;
1888
1900
  }
1889
1901
 
1890
-
1891
-
1892
1902
  //------------------------ Load Dispatches TTD Template ------------------------
1893
1903
  .load-dispatches-ttd-template {
1894
- display: grid;
1895
- grid-template-columns: repeat(3, 155px) 97px;
1896
- align-items: center;
1897
-
1898
- .load-dispatches-container {
1899
- display: flex;
1904
+ display: grid;
1905
+ grid-template-columns: repeat(3, 155px) 97px;
1900
1906
  align-items: center;
1901
- gap: 6px;
1902
- position: relative;
1903
1907
 
1904
- .owner-avatar {
1905
- position: absolute;
1906
- left: 13px;
1907
- bottom: -3px;
1908
- width: 10px;
1909
- height: 10px;
1910
- }
1908
+ .load-dispatches-container {
1909
+ display: flex;
1910
+ align-items: center;
1911
+ gap: 6px;
1912
+ position: relative;
1911
1913
 
1912
- .load-dispatch-driver,
1913
- .load-dispatch-truck,
1914
- .load-dispatch-trailer {
1915
- overflow: hidden;
1916
- text-overflow: ellipsis;
1917
- white-space: nowrap;
1918
- width: 116px;
1919
- max-width: -webkit-fit-content;
1920
- max-width: -moz-fit-content;
1921
- max-width: fit-content;
1922
- line-height: 18px;
1923
- font-size: 14px;
1924
- font-weight: 400;
1925
- }
1914
+ .owner-avatar {
1915
+ position: absolute;
1916
+ left: 13px;
1917
+ bottom: -3px;
1918
+ width: 10px;
1919
+ height: 10px;
1920
+ }
1926
1921
 
1927
- .load-dispatches-svg {
1928
- line-height: 16px;
1929
- svg {
1930
- width: 46px;
1931
- height: 16px;
1932
- }
1933
- }
1922
+ .load-dispatch-driver,
1923
+ .load-dispatch-truck,
1924
+ .load-dispatch-trailer {
1925
+ overflow: hidden;
1926
+ text-overflow: ellipsis;
1927
+ white-space: nowrap;
1928
+ width: 116px;
1929
+ max-width: -webkit-fit-content;
1930
+ max-width: -moz-fit-content;
1931
+ max-width: fit-content;
1932
+ line-height: 18px;
1933
+ font-size: 14px;
1934
+ font-weight: 400;
1935
+ }
1934
1936
 
1935
- .load-dipstaches-owner-flag {
1936
- position: absolute;
1937
- top: 44%;
1938
- right: 0;
1939
- transform: translateY(-50%);
1940
- svg {
1941
- path {
1942
- fill: #6f9ee0 !important;
1937
+ .load-dispatches-svg {
1938
+ line-height: 16px;
1939
+ svg {
1940
+ width: 46px;
1941
+ height: 16px;
1942
+ }
1943
1943
  }
1944
- }
1945
- }
1946
1944
 
1947
- &.trailerContainer {
1948
- width: -webkit-max-content !important;
1949
- width: -moz-max-content !important;
1950
- width: max-content !important;
1951
- padding: 0px !important;
1952
- margin: 0px !important;
1953
- }
1954
- }
1955
-
1956
- .load-dispatch-driver-rate {
1957
- width: 130px;
1958
- text-align: right;
1959
- font-size: 11px;
1960
- font-weight: 400;
1961
- color: $bw5;
1962
- padding-bottom: 1px;
1963
- text-overflow: ellipsis;
1964
- white-space: nowrap;
1965
- overflow: hidden;
1945
+ .load-dipstaches-owner-flag {
1946
+ position: absolute;
1947
+ top: 44%;
1948
+ right: 0;
1949
+ transform: translateY(-50%);
1950
+ svg {
1951
+ path {
1952
+ fill: #6f9ee0 !important;
1953
+ }
1954
+ }
1955
+ }
1966
1956
 
1967
- &.active {
1968
- color: #6f9ee0;
1957
+ &.trailerContainer {
1958
+ width: -webkit-max-content !important;
1959
+ width: -moz-max-content !important;
1960
+ width: max-content !important;
1961
+ padding: 0px !important;
1962
+ margin: 0px !important;
1963
+ }
1969
1964
  }
1970
1965
 
1971
- &.driver-owner {
1972
- text-align: left;
1973
- width: 80px;
1966
+ .load-dispatch-driver-rate {
1967
+ width: 130px;
1968
+ text-align: right;
1969
+ font-size: 11px;
1970
+ font-weight: 400;
1971
+ color: $bw5;
1972
+ padding-bottom: 1px;
1973
+ text-overflow: ellipsis;
1974
+ white-space: nowrap;
1975
+ overflow: hidden;
1976
+
1977
+ &.active {
1978
+ color: #6f9ee0;
1979
+ }
1980
+
1981
+ &.driver-owner {
1982
+ text-align: left;
1983
+ width: 80px;
1984
+ }
1974
1985
  }
1975
- }
1976
-
1977
- &.active {
1978
- .load-dispatch-driver-rate,
1979
- .load-dispatch-driver,
1980
- .load-dispatch-truck,
1981
- .load-dispatch-trailer {
1982
- font-weight: 700;
1986
+
1987
+ &.active {
1988
+ .load-dispatch-driver-rate,
1989
+ .load-dispatch-driver,
1990
+ .load-dispatch-truck,
1991
+ .load-dispatch-trailer {
1992
+ font-weight: 700;
1993
+ }
1983
1994
  }
1984
- }
1985
- }
1995
+ }