ecabs-components 1.1.22 → 1.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -78,4 +78,6 @@ v1.1.18 — Adjust position of `sticky` header on `MatTable`.
|
|
|
78
78
|
v1.1.19 — Increase delay for phone control and to config.
|
|
79
79
|
v1.1.20 — Improve the appearance for the scrollbar.
|
|
80
80
|
v1.1.21 — Improve style for hovered disabled calendar date.
|
|
81
|
-
v1.1.22 — Added statuses for mat-chips.
|
|
81
|
+
v1.1.22 — Added statuses for mat-chips.
|
|
82
|
+
- Added badges for menu items.
|
|
83
|
+
v1.1.23 — Update styling for map markers.
|
package/package.json
CHANGED
|
@@ -138,3 +138,84 @@ div {
|
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Custom map markers
|
|
144
|
+
*/
|
|
145
|
+
|
|
146
|
+
.marker {
|
|
147
|
+
position: relative;
|
|
148
|
+
display: flex;
|
|
149
|
+
justify-content: center;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.rounded-rectangle {
|
|
153
|
+
@include fontSize(12px);
|
|
154
|
+
|
|
155
|
+
position: relative;
|
|
156
|
+
box-shadow: $box-shadow-default;
|
|
157
|
+
border-radius: 20px;
|
|
158
|
+
display: flex;
|
|
159
|
+
width: 100%;
|
|
160
|
+
min-width: calc-rem(96px);
|
|
161
|
+
height: calc-rem(36px);
|
|
162
|
+
padding-left: calc-rem(6px);
|
|
163
|
+
align-items: center;
|
|
164
|
+
justify-content: center;
|
|
165
|
+
background-color: #fff;
|
|
166
|
+
color: var(--color-brand-dark);
|
|
167
|
+
font-weight: $font-weight-semibold;
|
|
168
|
+
line-height: 1.5;
|
|
169
|
+
text-align: center;
|
|
170
|
+
z-index: 99;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.straight-line {
|
|
174
|
+
position: absolute;
|
|
175
|
+
border-radius: 2px;
|
|
176
|
+
top: calc-rem(30px);
|
|
177
|
+
left: 50%;
|
|
178
|
+
width: calc-rem(3px);
|
|
179
|
+
height: calc-rem(48px);
|
|
180
|
+
background-color: var(--color-brand-dark);
|
|
181
|
+
transform: translateX(-50%);
|
|
182
|
+
z-index: 1;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.map-circle-point {
|
|
186
|
+
position: absolute;
|
|
187
|
+
width: calc-rem(16px);
|
|
188
|
+
height: calc-rem(16px);
|
|
189
|
+
background-color: var(--color-brand-light);
|
|
190
|
+
border-radius: 50%;
|
|
191
|
+
top: calc-rem(70px);
|
|
192
|
+
left: 50%;
|
|
193
|
+
transform: translateX(-50%);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.inner-circle {
|
|
197
|
+
width: calc-rem(8px);
|
|
198
|
+
height: calc-rem(8px);
|
|
199
|
+
background-color: var(--color-white);
|
|
200
|
+
border-radius: 50%;
|
|
201
|
+
position: absolute;
|
|
202
|
+
top: 25%;
|
|
203
|
+
left: 50%;
|
|
204
|
+
transform: translateX(-50%);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.custom-point {
|
|
208
|
+
.map-circle-point {
|
|
209
|
+
width: 100%;
|
|
210
|
+
height: 100%;
|
|
211
|
+
position: relative;
|
|
212
|
+
top: unset;
|
|
213
|
+
left: unset;
|
|
214
|
+
transform: unset;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.inner-circle {
|
|
218
|
+
width: 50%;
|
|
219
|
+
height: 50%;
|
|
220
|
+
}
|
|
221
|
+
}
|