ca-components 1.2.25 → 1.3.0

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