@tekkare/auriga 0.1.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.
- package/README.md +89 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +7 -0
- package/dist/module.d.ts +7 -0
- package/dist/module.json +8 -0
- package/dist/module.mjs +23 -0
- package/dist/runtime/components/argAdvancedSearchBar.vue +866 -0
- package/dist/runtime/components/argAdvancedSearchBar.vue.d.ts +4 -0
- package/dist/runtime/components/argBtn.vue +108 -0
- package/dist/runtime/components/argBtn.vue.d.ts +4 -0
- package/dist/runtime/components/argComplexSelect.vue +558 -0
- package/dist/runtime/components/argComplexSelect.vue.d.ts +4 -0
- package/dist/runtime/components/argDataLoader.vue +337 -0
- package/dist/runtime/components/argDataLoader.vue.d.ts +4 -0
- package/dist/runtime/components/argDropdownSelect.vue +321 -0
- package/dist/runtime/components/argDropdownSelect.vue.d.ts +4 -0
- package/dist/runtime/components/argFileBtn.vue +136 -0
- package/dist/runtime/components/argFileBtn.vue.d.ts +4 -0
- package/dist/runtime/components/argHeaderTabs.vue +216 -0
- package/dist/runtime/components/argHeaderTabs.vue.d.ts +4 -0
- package/dist/runtime/components/argIcon.vue +3135 -0
- package/dist/runtime/components/argIcon.vue.d.ts +4 -0
- package/dist/runtime/components/argMultipleChoice.vue +149 -0
- package/dist/runtime/components/argMultipleChoice.vue.d.ts +4 -0
- package/dist/runtime/components/argNoData.vue +83 -0
- package/dist/runtime/components/argNoData.vue.d.ts +4 -0
- package/dist/runtime/components/argSearchInput.vue +123 -0
- package/dist/runtime/components/argSearchInput.vue.d.ts +4 -0
- package/dist/runtime/components/argSimpleLabel.vue +214 -0
- package/dist/runtime/components/argSimpleLabel.vue.d.ts +4 -0
- package/dist/runtime/components/argStyle.vue +975 -0
- package/dist/runtime/components/argStyle.vue.d.ts +4 -0
- package/dist/runtime/components/argTable.vue +863 -0
- package/dist/runtime/components/argTable.vue.d.ts +4 -0
- package/dist/runtime/components/argTags.vue +26 -0
- package/dist/runtime/components/argTags.vue.d.ts +4 -0
- package/dist/runtime/components/argTekkareLoader.vue +72 -0
- package/dist/runtime/components/argTekkareLoader.vue.d.ts +4 -0
- package/dist/runtime/components/argTooltip.vue +141 -0
- package/dist/runtime/components/argTooltip.vue.d.ts +4 -0
- package/dist/runtime/plugin.d.ts +2 -0
- package/dist/runtime/plugin.mjs +4 -0
- package/dist/types.d.mts +15 -0
- package/dist/types.d.ts +15 -0
- package/package.json +45 -0
|
@@ -0,0 +1,975 @@
|
|
|
1
|
+
<template></template>
|
|
2
|
+
<script>
|
|
3
|
+
export default {
|
|
4
|
+
name: "argStyle"
|
|
5
|
+
};
|
|
6
|
+
</script>
|
|
7
|
+
<style>
|
|
8
|
+
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--pure-white: #ffffff;
|
|
12
|
+
|
|
13
|
+
/* GREY SCALE */
|
|
14
|
+
--independence: #3e3f5e;
|
|
15
|
+
--cool-grey: #8f91ac;
|
|
16
|
+
--wild-blue-yonder: #afb0ca;
|
|
17
|
+
--lavendar-grey: #cdcede;
|
|
18
|
+
--more: #dedfe9;
|
|
19
|
+
--dividers: #eaeaf5;
|
|
20
|
+
|
|
21
|
+
/* PRIMARY */
|
|
22
|
+
--primary: #2176ff;
|
|
23
|
+
--primary-hover: #0966fb;
|
|
24
|
+
--primary-dark: #0056e0;
|
|
25
|
+
--primary-hover2: #0f44be;
|
|
26
|
+
--primary-light: #f4f8ff;
|
|
27
|
+
|
|
28
|
+
/* ACCENT */
|
|
29
|
+
--accent: #2176ff;
|
|
30
|
+
--accent-yellow: #ff981a;
|
|
31
|
+
--accent-hover: #0966fb;
|
|
32
|
+
--accent-hover-yellow: #e7860f;
|
|
33
|
+
|
|
34
|
+
/* SYSTEM */
|
|
35
|
+
--alert: #fb4654;
|
|
36
|
+
--system-alert: #ef4444;
|
|
37
|
+
--alert-hover: #d21616;
|
|
38
|
+
--warning: #fd9147;
|
|
39
|
+
--success: #32d175;
|
|
40
|
+
--system-success: #22c55e;
|
|
41
|
+
|
|
42
|
+
/* COMPLEMENTARY COLORS */
|
|
43
|
+
--red: #fc4229;
|
|
44
|
+
--orange: #fda929;
|
|
45
|
+
--yellow: #fed33e;
|
|
46
|
+
--lime: #98d92d;
|
|
47
|
+
--green: #45ca47;
|
|
48
|
+
--cyan: #3ad9d8;
|
|
49
|
+
--blue: #1dacfc;
|
|
50
|
+
--navy: #4475fb;
|
|
51
|
+
--purple: #a17def;
|
|
52
|
+
--pink: #f55a8d;
|
|
53
|
+
|
|
54
|
+
/* BACKGROUNDS */
|
|
55
|
+
--background: #f5f5f9;
|
|
56
|
+
--demi-fond: #f9f9fa;
|
|
57
|
+
--nested-table-bg: #eaeaf5;
|
|
58
|
+
--table-hover: #dddded;
|
|
59
|
+
--base-dividers: #ececf2;
|
|
60
|
+
|
|
61
|
+
/*SHADOWS*/
|
|
62
|
+
--container-shadow: 0px 0px 40px rgba(94, 92, 154, 0.06);
|
|
63
|
+
--overlay-shadow: 0px 0px 40px rgba(94, 92, 154, 0.12);
|
|
64
|
+
--button-small-shadow: 3px 5px 20px rgba(94, 92, 154, 0.1);
|
|
65
|
+
--button-big-shadow: 3px 5px 10px rgba(62, 63, 94, 0.2);
|
|
66
|
+
--primary-button-shadow: 4px 7px 12px rgba(33, 118, 255, 0.2);
|
|
67
|
+
--accent-button-shadow: 4px 7px 12px rgba(255, 152, 26, 0.2);
|
|
68
|
+
|
|
69
|
+
/*company colors*/
|
|
70
|
+
--rcd-purple: #6f35ef;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
body {
|
|
74
|
+
font-family: "Figtree", sans-serif !important;
|
|
75
|
+
color: var(--independence);
|
|
76
|
+
background: var(--background);
|
|
77
|
+
margin: 0px;
|
|
78
|
+
}
|
|
79
|
+
a {
|
|
80
|
+
text-decoration: none;
|
|
81
|
+
font-family: "Figtree", sans-serif !important;
|
|
82
|
+
}
|
|
83
|
+
hr {
|
|
84
|
+
margin: 0;
|
|
85
|
+
background: var(--dividers) !important;
|
|
86
|
+
border: none;
|
|
87
|
+
box-shadow: none;
|
|
88
|
+
height: 1px;
|
|
89
|
+
}
|
|
90
|
+
h1,
|
|
91
|
+
h2,
|
|
92
|
+
h3,
|
|
93
|
+
h4,
|
|
94
|
+
h5,
|
|
95
|
+
h6,
|
|
96
|
+
p {
|
|
97
|
+
margin: 0;
|
|
98
|
+
font-family: "Figtree", sans-serif !important;
|
|
99
|
+
}
|
|
100
|
+
button {
|
|
101
|
+
font-family: "Figtree", sans-serif !important;
|
|
102
|
+
}
|
|
103
|
+
.oip_container {
|
|
104
|
+
margin: 0 auto;
|
|
105
|
+
max-width: 1440px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/*** TEXT ***/
|
|
109
|
+
|
|
110
|
+
.oip_kpi_big {
|
|
111
|
+
color: var(--independence);
|
|
112
|
+
font-style: normal;
|
|
113
|
+
font-weight: bold;
|
|
114
|
+
font-size: 36px;
|
|
115
|
+
line-height: 42px;
|
|
116
|
+
}
|
|
117
|
+
.oip_section_title {
|
|
118
|
+
font-style: normal;
|
|
119
|
+
font-weight: bold;
|
|
120
|
+
font-size: 26px;
|
|
121
|
+
line-height: 30px;
|
|
122
|
+
color: var(--independence);
|
|
123
|
+
}
|
|
124
|
+
.oip_title {
|
|
125
|
+
font-style: normal;
|
|
126
|
+
font-weight: bold;
|
|
127
|
+
font-size: 24px;
|
|
128
|
+
line-height: 28px;
|
|
129
|
+
color: var(--independence);
|
|
130
|
+
}
|
|
131
|
+
.oip_kpi_small {
|
|
132
|
+
color: var(--independence);
|
|
133
|
+
font-style: normal;
|
|
134
|
+
font-weight: bold;
|
|
135
|
+
font-size: 22px;
|
|
136
|
+
line-height: 26px;
|
|
137
|
+
}
|
|
138
|
+
.oip_heading {
|
|
139
|
+
font-style: normal;
|
|
140
|
+
font-weight: bold;
|
|
141
|
+
font-size: 20px;
|
|
142
|
+
line-height: 23px;
|
|
143
|
+
color: var(--independence);
|
|
144
|
+
}
|
|
145
|
+
.oip_subtitle {
|
|
146
|
+
font-style: normal;
|
|
147
|
+
font-weight: bold;
|
|
148
|
+
font-size: 16px;
|
|
149
|
+
line-height: 19px;
|
|
150
|
+
color: var(--independence);
|
|
151
|
+
}
|
|
152
|
+
.oip_body_highlight {
|
|
153
|
+
font-style: normal;
|
|
154
|
+
font-weight: 500;
|
|
155
|
+
font-size: 14px;
|
|
156
|
+
line-height: 160%;
|
|
157
|
+
color: var(--accent-hover);
|
|
158
|
+
}
|
|
159
|
+
.oip_body {
|
|
160
|
+
font-style: normal;
|
|
161
|
+
font-weight: normal;
|
|
162
|
+
font-size: 14px;
|
|
163
|
+
line-height: 160%;
|
|
164
|
+
color: var(--independence);
|
|
165
|
+
}
|
|
166
|
+
.oip_label {
|
|
167
|
+
color: var(--wild-blue-yonder);
|
|
168
|
+
font-style: normal;
|
|
169
|
+
font-weight: bold;
|
|
170
|
+
font-size: 12px;
|
|
171
|
+
line-height: 14px;
|
|
172
|
+
}
|
|
173
|
+
.oip_filter_label {
|
|
174
|
+
font-weight: 400;
|
|
175
|
+
font-size: 12px;
|
|
176
|
+
line-height: 14px;
|
|
177
|
+
color: var(--cool-grey);
|
|
178
|
+
}
|
|
179
|
+
.oip_caption {
|
|
180
|
+
color: var(--wild-blue-yonder);
|
|
181
|
+
font-style: normal;
|
|
182
|
+
font-weight: 500;
|
|
183
|
+
font-size: 12px;
|
|
184
|
+
line-height: 14px;
|
|
185
|
+
}
|
|
186
|
+
.oip_underline {
|
|
187
|
+
font-style: normal;
|
|
188
|
+
font-weight: normal;
|
|
189
|
+
font-size: 12px;
|
|
190
|
+
line-height: 14px;
|
|
191
|
+
color: var(--independence);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/*** GRID ***/
|
|
195
|
+
|
|
196
|
+
.oip_grid {
|
|
197
|
+
display: flex;
|
|
198
|
+
flex-wrap: wrap;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.oip_grid.xs-step {
|
|
202
|
+
gap: 4px;
|
|
203
|
+
}
|
|
204
|
+
.oip_grid.s-step {
|
|
205
|
+
gap: 8px;
|
|
206
|
+
}
|
|
207
|
+
.oip_grid.m-step {
|
|
208
|
+
gap: 16px;
|
|
209
|
+
}
|
|
210
|
+
.oip_grid.l-step {
|
|
211
|
+
gap: 36px;
|
|
212
|
+
}
|
|
213
|
+
.oip_grid.xl-step {
|
|
214
|
+
gap: 72px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.oip_grid .oip_item {
|
|
218
|
+
flex-grow: 1;
|
|
219
|
+
}
|
|
220
|
+
/*** ROWS ***/
|
|
221
|
+
.oip_row {
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: row;
|
|
224
|
+
}
|
|
225
|
+
/* Wraps*/
|
|
226
|
+
.oip_row.wrap {
|
|
227
|
+
flex-wrap: wrap;
|
|
228
|
+
}
|
|
229
|
+
/*Aligning content horizontally*/
|
|
230
|
+
.oip_row.centered {
|
|
231
|
+
justify-content: center;
|
|
232
|
+
}
|
|
233
|
+
.oip_row.start {
|
|
234
|
+
justify-content: flex-start;
|
|
235
|
+
}
|
|
236
|
+
.oip_row.end {
|
|
237
|
+
justify-content: flex-end;
|
|
238
|
+
}
|
|
239
|
+
.oip_row.space-between {
|
|
240
|
+
justify-content: space-between;
|
|
241
|
+
}
|
|
242
|
+
/*Vertical*/
|
|
243
|
+
.oip_row.v-center {
|
|
244
|
+
align-items: center;
|
|
245
|
+
}
|
|
246
|
+
.oip_row.v-bottom {
|
|
247
|
+
align-items: flex-end;
|
|
248
|
+
}
|
|
249
|
+
/*Gaps*/
|
|
250
|
+
.oip_row.gap-4 {
|
|
251
|
+
gap: 4px;
|
|
252
|
+
}
|
|
253
|
+
.oip_row.gap-8 {
|
|
254
|
+
gap: 8px;
|
|
255
|
+
}
|
|
256
|
+
.oip_row.gap-10 {
|
|
257
|
+
gap: 10px;
|
|
258
|
+
}
|
|
259
|
+
.oip_row.gap-12 {
|
|
260
|
+
gap: 12px;
|
|
261
|
+
}
|
|
262
|
+
.oip_row.gap-16 {
|
|
263
|
+
gap: 16px;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/** BUTTONS **/
|
|
267
|
+
|
|
268
|
+
.oip_btn {
|
|
269
|
+
border-radius: 8px !important;
|
|
270
|
+
padding: 10px 20px !important;
|
|
271
|
+
outline: none !important;
|
|
272
|
+
cursor: pointer !important;
|
|
273
|
+
max-height: 16px;
|
|
274
|
+
white-space: nowrap;
|
|
275
|
+
display: flex;
|
|
276
|
+
align-items: center;
|
|
277
|
+
gap: 10px;
|
|
278
|
+
position: relative;
|
|
279
|
+
font-style: normal !important;
|
|
280
|
+
font-weight: bold !important;
|
|
281
|
+
font-size: 14px !important;
|
|
282
|
+
line-height: 16px !important;
|
|
283
|
+
width: fit-content;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.oip_primary_button {
|
|
287
|
+
background: var(--primary) !important;
|
|
288
|
+
border: 2px solid var(--primary) !important;
|
|
289
|
+
box-shadow: var(--primary-button-shadow) !important;
|
|
290
|
+
color: var(--pure-white) !important;
|
|
291
|
+
}
|
|
292
|
+
.oip_primary_button .oip_button_spinner div {
|
|
293
|
+
border: 2px solid var(--pure-white);
|
|
294
|
+
border-color: var(--pure-white) transparent transparent transparent;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.oip_primary_button:hover,
|
|
298
|
+
.oip_primary_button:focus {
|
|
299
|
+
background: var(--primary-hover2) !important;
|
|
300
|
+
border: 2px solid var(--primary-hover2) !important;
|
|
301
|
+
box-shadow: none !important;
|
|
302
|
+
color: var(--pure-white) !important;
|
|
303
|
+
}
|
|
304
|
+
.oip_primary_button.is-disabled,
|
|
305
|
+
.oip_primary_button.is-disabled:hover,
|
|
306
|
+
.oip_primary_button.is-disabled:focus {
|
|
307
|
+
background: var(--more) !important;
|
|
308
|
+
border: 2px solid var(--more) !important;
|
|
309
|
+
box-shadow: none !important;
|
|
310
|
+
color: var(--cool-grey) !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.oip_primary_icon_button {
|
|
314
|
+
background: var(--primary) !important;
|
|
315
|
+
border: 2px solid var(--primary) !important;
|
|
316
|
+
box-shadow: var(--primary-button-shadow) !important;
|
|
317
|
+
color: var(--pure-white) !important;
|
|
318
|
+
padding: 10px !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.oip_primary_icon_button .oip_button_spinner div {
|
|
322
|
+
border: 2px solid var(--pure-white);
|
|
323
|
+
border-color: var(--pure-white) transparent transparent transparent;
|
|
324
|
+
}
|
|
325
|
+
.oip_primary_icon_button:hover,
|
|
326
|
+
.oip_primary_icon_button:focus {
|
|
327
|
+
background: var(--primary-hover) !important;
|
|
328
|
+
border: 2px solid var(--primary-hover) !important;
|
|
329
|
+
box-shadow: var(--primary-button-shadow) !important;
|
|
330
|
+
color: var(--pure-white) !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.oip_secondary_button,
|
|
334
|
+
.oip_secondary_button:hover,
|
|
335
|
+
.oip_secondary_button:focus {
|
|
336
|
+
background: var(--pure-white) !important;
|
|
337
|
+
border: 2px solid var(--more) !important;
|
|
338
|
+
box-shadow: none !important;
|
|
339
|
+
color: var(--wild-blue-yonder) !important;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.oip_secondary_button .oip_button_spinner div,
|
|
343
|
+
.oip_secondary_icon_button .oip_button_spinner div {
|
|
344
|
+
border: 2px solid var(--wild-blue-yonder);
|
|
345
|
+
border-color: var(--wild-blue-yonder) transparent transparent transparent;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.oip_secondary_icon_button,
|
|
349
|
+
.oip_secondary_icon_button:hover,
|
|
350
|
+
.oip_secondary_icon_button:focus {
|
|
351
|
+
background: var(--pure-white) !important;
|
|
352
|
+
border: 2px solid var(--more) !important;
|
|
353
|
+
box-shadow: none !important;
|
|
354
|
+
color: var(--wild-blue-yonder) !important;
|
|
355
|
+
padding: 10px !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.oip_terciary_button,
|
|
359
|
+
.oip_dark_button,
|
|
360
|
+
.oip_tertiary_button {
|
|
361
|
+
background: var(--independence) !important;
|
|
362
|
+
border: 2px solid var(--independence) !important;
|
|
363
|
+
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
364
|
+
color: var(--pure-white) !important;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.oip_tertiary_button:hover,
|
|
368
|
+
.oip_tertiary_button:focus,
|
|
369
|
+
.oip_terciary_button:hover,
|
|
370
|
+
.oip_terciary_button:focus,
|
|
371
|
+
.oip_dark_button:hover,
|
|
372
|
+
.oip_dark_button:focus,
|
|
373
|
+
.oip_terciary_icon_button:hover,
|
|
374
|
+
.oip_terciary_icon_button:focus,
|
|
375
|
+
.oip_tertiary_icon_button:hover,
|
|
376
|
+
.oip_tertiary_icon_button:focus,
|
|
377
|
+
.oip_dark_icon_button:hover,
|
|
378
|
+
.oip_dark_icon_button:focus {
|
|
379
|
+
background: #21223d !important;
|
|
380
|
+
border: 2px solid #21223d !important;
|
|
381
|
+
box-shadow: none !important;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.oip_tertiary_button .oip_button_spinner div,
|
|
385
|
+
.oip_dark_button .oip_button_spinner div,
|
|
386
|
+
.oip_tertiary_icon_button .oip_button_spinner div,
|
|
387
|
+
.oip_dark_icon_button .oip_button_spinner div {
|
|
388
|
+
border: 2px solid var(--pure-white);
|
|
389
|
+
border-color: var(--pure-white) transparent transparent transparent;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.oip_terciary_icon_button,
|
|
393
|
+
.oip_tertiary_icon_button,
|
|
394
|
+
.oip_dark_icon_button {
|
|
395
|
+
background: var(--independence) !important;
|
|
396
|
+
border: 2px solid var(--independence) !important;
|
|
397
|
+
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
398
|
+
color: var(--pure-white) !important;
|
|
399
|
+
padding: 10px !important;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.oip_disable_button,
|
|
403
|
+
.oip_disable_button:hover,
|
|
404
|
+
.oip_disable_button:focus {
|
|
405
|
+
background: var(--more) !important;
|
|
406
|
+
border: 2px solid var(--more) !important;
|
|
407
|
+
box-shadow: none !important;
|
|
408
|
+
color: var(--cool-grey) !important;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.oip_disable_icon_button,
|
|
412
|
+
.oip_disable_icon_button:hover,
|
|
413
|
+
.oip_disable_icon_button:focus {
|
|
414
|
+
background: var(--more) !important;
|
|
415
|
+
border: 2px solid var(--more) !important;
|
|
416
|
+
box-shadow: none !important;
|
|
417
|
+
color: var(--cool-grey) !important;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.el-button + .el-button {
|
|
421
|
+
margin-left: 0px !important;
|
|
422
|
+
}
|
|
423
|
+
.oip_skeleton_button {
|
|
424
|
+
background: transparent !important;
|
|
425
|
+
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
426
|
+
box-shadow: none !important;
|
|
427
|
+
color: var(--independence) !important;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.oip_skeleton_button:hover,
|
|
431
|
+
.oip_skeleton_button:focus {
|
|
432
|
+
background: rgba(62, 63, 94, 0.05) !important;
|
|
433
|
+
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
434
|
+
box-shadow: none !important;
|
|
435
|
+
color: var(--independence) !important;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.oip_skeleton_button:hover .oip__button_prefix_icon,
|
|
439
|
+
.oip_skeleton_button:focus .oip__button_prefix_icon,
|
|
440
|
+
.oip_skeleton_button:hover .oip__button_suffix_icon,
|
|
441
|
+
.oip_skeleton_button:focus .oip__button_suffix_icon {
|
|
442
|
+
stroke: var(--independence) !important;
|
|
443
|
+
color: var(--independence) !important;
|
|
444
|
+
}
|
|
445
|
+
.oip_skeleton_button .oip_button_spinner div,
|
|
446
|
+
.oip_skeleton_icon_button .oip_button_spinner div {
|
|
447
|
+
border: 2px solid var(--independence);
|
|
448
|
+
border-color: var(--independence) transparent transparent transparent;
|
|
449
|
+
}
|
|
450
|
+
.oip_skeleton_icon_button {
|
|
451
|
+
background: transparent !important;
|
|
452
|
+
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
453
|
+
box-shadow: none !important;
|
|
454
|
+
color: var(--independence) !important;
|
|
455
|
+
padding: 10px !important;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.oip_skeleton_icon_button:hover,
|
|
459
|
+
.oip_skeleton_icon_button:focus {
|
|
460
|
+
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
461
|
+
}
|
|
462
|
+
.oip_skeleton_icon_button:hover svg,
|
|
463
|
+
.oip_skeleton_icon_buttonn:focus svg,
|
|
464
|
+
.oip_skeleton_icon_button:hover svg,
|
|
465
|
+
.oip_skeleton_icon_button:focus svg {
|
|
466
|
+
stroke: var(--primary) !important;
|
|
467
|
+
color: var(--primary) !important;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.oip_outlined_button {
|
|
471
|
+
background: transparent !important;
|
|
472
|
+
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
473
|
+
box-shadow: none !important;
|
|
474
|
+
color: var(--primary) !important;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.oip_outlined_button:hover,
|
|
478
|
+
.oip_outlined_button:focus,
|
|
479
|
+
.oip_outlined_icon_button:hover,
|
|
480
|
+
.oip_outlined_icon_button:focus {
|
|
481
|
+
background: rgba(33, 118, 255, 0.05) !important;
|
|
482
|
+
color: var(--primary-hover2) !important;
|
|
483
|
+
}
|
|
484
|
+
.oip_outlined_button .oip_button_spinner div,
|
|
485
|
+
.oip_outlined_icon_button .oip_button_spinner div {
|
|
486
|
+
border: 2px solid var(--primary);
|
|
487
|
+
border-color: var(--primary) transparent transparent transparent;
|
|
488
|
+
}
|
|
489
|
+
.oip_outlined_icon_button {
|
|
490
|
+
background: transparent !important;
|
|
491
|
+
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
492
|
+
box-shadow: none !important;
|
|
493
|
+
padding: 10px !important;
|
|
494
|
+
color: var(--primary) !important;
|
|
495
|
+
}
|
|
496
|
+
.oip_warning_button {
|
|
497
|
+
background: transparent !important;
|
|
498
|
+
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
499
|
+
box-shadow: none !important;
|
|
500
|
+
color: var(--system-alert) !important;
|
|
501
|
+
}
|
|
502
|
+
.oip_warning_button:hover,
|
|
503
|
+
.oip_warning_button:focus,
|
|
504
|
+
.oip_warning_icon_button:hover,
|
|
505
|
+
.oip_warning_icon_button:focus {
|
|
506
|
+
background: rgba(239, 68, 68, 0.2) !important;
|
|
507
|
+
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
508
|
+
color: var(--alert-hover) !important;
|
|
509
|
+
}
|
|
510
|
+
.oip_warning_button .oip_button_spinner div,
|
|
511
|
+
.oip_warning_icon_button .oip_button_spinner div {
|
|
512
|
+
border: 2px solid var(--system-alert);
|
|
513
|
+
border-color: var(--system-alert) transparent transparent transparent;
|
|
514
|
+
}
|
|
515
|
+
.oip_warning_button:hover .oip_button_spinner div,
|
|
516
|
+
.oip_warning_icon_button:hover .oip_button_spinner div {
|
|
517
|
+
border: 2px solid var(--alert-hover);
|
|
518
|
+
border-color: var(--alert-hover) transparent transparent transparent;
|
|
519
|
+
}
|
|
520
|
+
.oip_warning_button:hover .oip__button_prefix_icon,
|
|
521
|
+
.oip_warning_button:focus .oip__button_prefix_icon,
|
|
522
|
+
.oip_warning_button:hover .oip__button_suffix_icon,
|
|
523
|
+
.oip_warning_button:focus .oip__button_suffix_icon {
|
|
524
|
+
stroke: var(--alert-hover) !important;
|
|
525
|
+
color: var(--alert-hover) !important;
|
|
526
|
+
}
|
|
527
|
+
.oip_warning_icon_button {
|
|
528
|
+
background: transparent !important;
|
|
529
|
+
border: 2px solid rgba(239, 68, 68, 0.2) !important;
|
|
530
|
+
box-shadow: none !important;
|
|
531
|
+
padding: 10px !important;
|
|
532
|
+
color: var(--system-alert) !important;
|
|
533
|
+
}
|
|
534
|
+
.oip_warning_icon_button:hover,
|
|
535
|
+
.oip_warning_icon_button:hover {
|
|
536
|
+
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
537
|
+
color: var(--alert-hover) !important;
|
|
538
|
+
}
|
|
539
|
+
.oip_warning_icon_button:hover svg,
|
|
540
|
+
.oip_warning_icon_button:hover svg {
|
|
541
|
+
stroke: var(--alert-hover) !important;
|
|
542
|
+
color: var(--alert-hover) !important;
|
|
543
|
+
}
|
|
544
|
+
.oip_red_button {
|
|
545
|
+
background: var(--system-alert) !important;
|
|
546
|
+
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
547
|
+
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
548
|
+
color: var(--pure-white) !important;
|
|
549
|
+
}
|
|
550
|
+
.oip_red_button:hover,
|
|
551
|
+
.oip_red_button:focus,
|
|
552
|
+
.oip_red_icon_button:hover,
|
|
553
|
+
.oip_red_icon_button:focus {
|
|
554
|
+
background: var(--alert-hover) !important;
|
|
555
|
+
border: 2px solid var(--alert-hover) !important;
|
|
556
|
+
box-shadow: none !important;
|
|
557
|
+
}
|
|
558
|
+
.oip_red_button .oip_button_spinner div,
|
|
559
|
+
.oip_red_icon_button .oip_button_spinner div {
|
|
560
|
+
border: 2px solid var(--pure-white);
|
|
561
|
+
border-color: var(--pure-white) transparent transparent transparent;
|
|
562
|
+
}
|
|
563
|
+
.oip_red_icon_button {
|
|
564
|
+
background: var(--system-alert) !important;
|
|
565
|
+
border: 2px solid var(--system-alert) !important;
|
|
566
|
+
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
567
|
+
padding: 10px !important;
|
|
568
|
+
color: var(--pure-white) !important;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.oip_green_button {
|
|
572
|
+
background: var(--green) !important;
|
|
573
|
+
border: 2px solid var(--green) !important;
|
|
574
|
+
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
575
|
+
color: var(--pure-white) !important;
|
|
576
|
+
}
|
|
577
|
+
.oip_green_button:hover,
|
|
578
|
+
.oip_green_button:focus,
|
|
579
|
+
.oip_green_icon_button:hover,
|
|
580
|
+
.oip_green_icon_button:focus {
|
|
581
|
+
background: #2eb830 !important;
|
|
582
|
+
border: 2px solid #2eb830 !important;
|
|
583
|
+
box-shadow: none !important;
|
|
584
|
+
}
|
|
585
|
+
.oip_green_button .oip_button_spinner div,
|
|
586
|
+
.oip_green_icon_button .oip_button_spinner div {
|
|
587
|
+
border: 2px solid var(--pure-white);
|
|
588
|
+
border-color: var(--pure-white) transparent transparent transparent;
|
|
589
|
+
}
|
|
590
|
+
.oip_green_icon_button {
|
|
591
|
+
background: var(--green) !important;
|
|
592
|
+
border: 2px solid var(--green) !important;
|
|
593
|
+
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
594
|
+
padding: 10px !important;
|
|
595
|
+
color: var(--pure-white) !important;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.oip_success_button {
|
|
599
|
+
background: transparent !important;
|
|
600
|
+
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
601
|
+
color: var(--system-success) !important;
|
|
602
|
+
}
|
|
603
|
+
.oip_success_button:hover,
|
|
604
|
+
.oip_success_button:focus,
|
|
605
|
+
.oip_success_icon_button:hover,
|
|
606
|
+
.oip_success_icon_button:focus {
|
|
607
|
+
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
608
|
+
background: rgba(34, 197, 94, 0.05) !important;
|
|
609
|
+
color: #069a3d !important;
|
|
610
|
+
}
|
|
611
|
+
.oip_success_button .oip_button_spinner div,
|
|
612
|
+
.oip_success_icon_button .oip_button_spinner div {
|
|
613
|
+
border: 2px solid var(--system-success);
|
|
614
|
+
border-color: var(--system-success) transparent transparent transparent;
|
|
615
|
+
}
|
|
616
|
+
.oip_success_icon_button {
|
|
617
|
+
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
618
|
+
padding: 10px !important;
|
|
619
|
+
color: var(--system-success) !important;
|
|
620
|
+
}
|
|
621
|
+
.oip_button_flex {
|
|
622
|
+
display: flex;
|
|
623
|
+
gap: 10px;
|
|
624
|
+
flex-direction: row;
|
|
625
|
+
justify-content: center;
|
|
626
|
+
align-items: center;
|
|
627
|
+
}
|
|
628
|
+
.oip_button_loading {
|
|
629
|
+
position: absolute;
|
|
630
|
+
left: 0;
|
|
631
|
+
right: 0;
|
|
632
|
+
}
|
|
633
|
+
.oip_button_spinner {
|
|
634
|
+
display: inline-block;
|
|
635
|
+
position: relative;
|
|
636
|
+
width: 20px;
|
|
637
|
+
height: 20px;
|
|
638
|
+
}
|
|
639
|
+
.oip_button_spinner div {
|
|
640
|
+
box-sizing: border-box;
|
|
641
|
+
display: block;
|
|
642
|
+
position: absolute;
|
|
643
|
+
width: 20px;
|
|
644
|
+
height: 20px;
|
|
645
|
+
border: 2px solid #fff;
|
|
646
|
+
border-radius: 50%;
|
|
647
|
+
animation: oip-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
648
|
+
border-color: #fff transparent transparent transparent;
|
|
649
|
+
}
|
|
650
|
+
.oip_button_spinner div:nth-child(1) {
|
|
651
|
+
animation-delay: -0.45s;
|
|
652
|
+
}
|
|
653
|
+
.oip_button_spinner div:nth-child(2) {
|
|
654
|
+
animation-delay: -0.3s;
|
|
655
|
+
}
|
|
656
|
+
.oip_button_spinner div:nth-child(3) {
|
|
657
|
+
animation-delay: -0.15s;
|
|
658
|
+
}
|
|
659
|
+
@keyframes oip-spinner {
|
|
660
|
+
0% {
|
|
661
|
+
transform: rotate(0deg);
|
|
662
|
+
}
|
|
663
|
+
100% {
|
|
664
|
+
transform: rotate(360deg);
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
.oip_button_is_loading {
|
|
668
|
+
visibility: hidden;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
/*** TAGS ***/
|
|
672
|
+
|
|
673
|
+
.oip_tag {
|
|
674
|
+
padding: 4px 12px !important;
|
|
675
|
+
background: var(--independence) !important;
|
|
676
|
+
color: var(--pure-white) !important;
|
|
677
|
+
font-style: normal !important;
|
|
678
|
+
font-weight: bold;
|
|
679
|
+
font-size: 12px !important;
|
|
680
|
+
line-height: 14px !important;
|
|
681
|
+
border-radius: 20px !important;
|
|
682
|
+
border: 1px solid var(--independence) !important;
|
|
683
|
+
height: 20px !important;
|
|
684
|
+
width: fit-content !important;
|
|
685
|
+
font-family: "Figtree", sans-serif !important;
|
|
686
|
+
align-items: center;
|
|
687
|
+
display: flex;
|
|
688
|
+
gap: 8px;
|
|
689
|
+
}
|
|
690
|
+
.oip_tag > svg {
|
|
691
|
+
cursor: pointer;
|
|
692
|
+
stroke: var(--pure-white);
|
|
693
|
+
margin-right: -5px;
|
|
694
|
+
}
|
|
695
|
+
.oip_tag.is_disabled {
|
|
696
|
+
background-color: var(--pure-white) !important;
|
|
697
|
+
color: var(--lavendar-grey) !important;
|
|
698
|
+
border: 1px solid var(--lavendar-grey) !important;
|
|
699
|
+
}
|
|
700
|
+
.oip_tag.is_red {
|
|
701
|
+
background: var(--red) !important;
|
|
702
|
+
border: 1px solid var(--red) !important;
|
|
703
|
+
}
|
|
704
|
+
.oip_tag.is_orange {
|
|
705
|
+
background: var(--orange) !important;
|
|
706
|
+
border: 1px solid var(--orange) !important;
|
|
707
|
+
}
|
|
708
|
+
.oip_tag.is_yellow {
|
|
709
|
+
background: var(--yellow) !important;
|
|
710
|
+
border: 1px solid var(--yellow) !important;
|
|
711
|
+
}
|
|
712
|
+
.oip_tag.is_lime {
|
|
713
|
+
background: var(--lime) !important;
|
|
714
|
+
border: 1px solid var(--lime) !important;
|
|
715
|
+
}
|
|
716
|
+
.oip_tag.is_green {
|
|
717
|
+
background: var(--green) !important;
|
|
718
|
+
border: 1px solid var(--green) !important;
|
|
719
|
+
}
|
|
720
|
+
.oip_tag.is_cyan {
|
|
721
|
+
background: var(--cyan) !important;
|
|
722
|
+
border: 1px solid var(--cyan) !important;
|
|
723
|
+
}
|
|
724
|
+
.oip_tag.is_blue {
|
|
725
|
+
background: var(--blue) !important;
|
|
726
|
+
border: 1px solid var(--blue) !important;
|
|
727
|
+
}
|
|
728
|
+
.oip_tag.is_navy {
|
|
729
|
+
background: var(--navy) !important;
|
|
730
|
+
border: 1px solid var(--navy) !important;
|
|
731
|
+
}
|
|
732
|
+
.oip_tag.is_purple {
|
|
733
|
+
background: var(--purple) !important;
|
|
734
|
+
border: 1px solid var(--purple) !important;
|
|
735
|
+
}
|
|
736
|
+
.oip_tag.is_pink {
|
|
737
|
+
background: var(--pink) !important;
|
|
738
|
+
border: 1px solid var(--pink) !important;
|
|
739
|
+
}
|
|
740
|
+
.oip_tag.is_primary {
|
|
741
|
+
background: var(--primary) !important;
|
|
742
|
+
border: 1px solid var(--primary) !important;
|
|
743
|
+
}
|
|
744
|
+
.oip_tag.is_accent {
|
|
745
|
+
background: var(--accent) !important;
|
|
746
|
+
border: 1px solid var(--accent) !important;
|
|
747
|
+
}
|
|
748
|
+
.oip_tag.is_alert {
|
|
749
|
+
background: var(--alert) !important;
|
|
750
|
+
border: 1px solid var(--alert) !important;
|
|
751
|
+
}
|
|
752
|
+
.oip_tag.is_warning {
|
|
753
|
+
background: var(--warning) !important;
|
|
754
|
+
border: 1px solid var(--warning) !important;
|
|
755
|
+
}
|
|
756
|
+
.oip_tag.is_success {
|
|
757
|
+
background: var(--success) !important;
|
|
758
|
+
border: 1px solid var(--success) !important;
|
|
759
|
+
}
|
|
760
|
+
.oip_tag.is_light_grey {
|
|
761
|
+
background: var(--background) !important;
|
|
762
|
+
border-radius: 10px !important;
|
|
763
|
+
border: 1px solid var(--background) !important;
|
|
764
|
+
padding: 4px 12px !important;
|
|
765
|
+
font-weight: 400 !important;
|
|
766
|
+
font-size: 14px !important;
|
|
767
|
+
line-height: 16px !important;
|
|
768
|
+
color: var(--independence) !important;
|
|
769
|
+
}
|
|
770
|
+
.oip_tag.is_light_grey svg {
|
|
771
|
+
stroke: var(--cool-grey);
|
|
772
|
+
color: var(--cool-grey);
|
|
773
|
+
}
|
|
774
|
+
.oip_tag.is_light_red {
|
|
775
|
+
background: rgba(251, 70, 84, 0.1) !important;
|
|
776
|
+
border-radius: 10px !important;
|
|
777
|
+
border: 1px solid transparent !important;
|
|
778
|
+
padding: 4px 12px !important;
|
|
779
|
+
font-weight: 400 !important;
|
|
780
|
+
font-size: 14px !important;
|
|
781
|
+
line-height: 16px !important;
|
|
782
|
+
color: var(--alert) !important;
|
|
783
|
+
}
|
|
784
|
+
.oip_tag.is_light_green {
|
|
785
|
+
background: rgba(50, 209, 117, 0.1) !important;
|
|
786
|
+
border-radius: 10px !important;
|
|
787
|
+
border: 1px solid transparent !important;
|
|
788
|
+
padding: 4px 12px !important;
|
|
789
|
+
font-weight: 400 !important;
|
|
790
|
+
font-size: 14px !important;
|
|
791
|
+
line-height: 16px !important;
|
|
792
|
+
color: var(--success) !important;
|
|
793
|
+
}
|
|
794
|
+
.oip_tag.is_light_primary {
|
|
795
|
+
background: #e9f1ff !important;
|
|
796
|
+
border-radius: 10px !important;
|
|
797
|
+
border: 1px solid transparent !important;
|
|
798
|
+
padding: 4px 12px !important;
|
|
799
|
+
font-weight: 400 !important;
|
|
800
|
+
font-size: 14px !important;
|
|
801
|
+
line-height: 16px !important;
|
|
802
|
+
color: var(--primary) !important;
|
|
803
|
+
}
|
|
804
|
+
.oip_tag .oip_tag__close {
|
|
805
|
+
display: inline-block;
|
|
806
|
+
cursor: pointer;
|
|
807
|
+
vertical-align: middle;
|
|
808
|
+
margin-left: 4px;
|
|
809
|
+
margin-top: -2px;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
/*** CARD ***/
|
|
813
|
+
/* CARD */
|
|
814
|
+
.oip_card {
|
|
815
|
+
padding: 32px 24px;
|
|
816
|
+
border-radius: 12px;
|
|
817
|
+
background: var(--pure-white);
|
|
818
|
+
box-shadow: var(--container-shadow);
|
|
819
|
+
margin: 8px 0;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.oip_table_card {
|
|
823
|
+
padding: 32px 0px;
|
|
824
|
+
border-radius: 12px;
|
|
825
|
+
background: var(--pure-white);
|
|
826
|
+
box-shadow: var(--container-shadow);
|
|
827
|
+
margin: 8px 0;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.oip_table_card .oip_card__header {
|
|
831
|
+
padding: 0px 24px;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.oip_card .oip_card__header {
|
|
835
|
+
display: flex;
|
|
836
|
+
}
|
|
837
|
+
.oip_card .oip_card__header .oip_card__header_info {
|
|
838
|
+
flex-grow: 1;
|
|
839
|
+
}
|
|
840
|
+
.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title {
|
|
841
|
+
display: flex;
|
|
842
|
+
align-items: baseline;
|
|
843
|
+
}
|
|
844
|
+
.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title h1 {
|
|
845
|
+
flex-grow: 0;
|
|
846
|
+
}
|
|
847
|
+
.oip_card
|
|
848
|
+
.oip_card__header
|
|
849
|
+
.oip_card__header_info
|
|
850
|
+
.oip_card__header_title
|
|
851
|
+
h1
|
|
852
|
+
span {
|
|
853
|
+
color: var(--accent);
|
|
854
|
+
}
|
|
855
|
+
.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub {
|
|
856
|
+
margin-top: 4px;
|
|
857
|
+
display: flex;
|
|
858
|
+
align-items: center;
|
|
859
|
+
color: var(--cool-grey) !important;
|
|
860
|
+
flex-wrap: wrap;
|
|
861
|
+
}
|
|
862
|
+
.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub h3,
|
|
863
|
+
.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub p {
|
|
864
|
+
color: var(--cool-grey) !important;
|
|
865
|
+
}
|
|
866
|
+
.oip_card
|
|
867
|
+
.oip_card__header
|
|
868
|
+
.oip_card__header_info
|
|
869
|
+
.oip_card__header_sub
|
|
870
|
+
.oip_card__header_sub_divider {
|
|
871
|
+
margin: 0 4px;
|
|
872
|
+
color: var(--cool-grey) !important;
|
|
873
|
+
}
|
|
874
|
+
.oip_card .oip_card__header .oip_card__header_buttons {
|
|
875
|
+
display: flex;
|
|
876
|
+
column-gap: 8px;
|
|
877
|
+
}
|
|
878
|
+
@media screen and (max-width: 1000px) {
|
|
879
|
+
.oip_card .oip_card__header .oip_card__header_buttons .oip_download_button,
|
|
880
|
+
.oip_card
|
|
881
|
+
.oip_card__header
|
|
882
|
+
.oip_card__header_buttons
|
|
883
|
+
.oip_see_details_button {
|
|
884
|
+
display: none;
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
@media screen and (min-width: 1001px) {
|
|
888
|
+
.oip_card
|
|
889
|
+
.oip_card__header
|
|
890
|
+
.oip_card__header_buttons
|
|
891
|
+
.oip_small_download_button,
|
|
892
|
+
.oip_card
|
|
893
|
+
.oip_card__header
|
|
894
|
+
.oip_card__header_buttons
|
|
895
|
+
.oip_small_see_details_button {
|
|
896
|
+
display: none;
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.oip_card .oip_card__description {
|
|
901
|
+
margin-top: 32px;
|
|
902
|
+
}
|
|
903
|
+
.oip_card .oip_card__kpi_container {
|
|
904
|
+
margin-top: 32px;
|
|
905
|
+
display: flex;
|
|
906
|
+
gap: 32px;
|
|
907
|
+
flex-wrap: wrap;
|
|
908
|
+
}
|
|
909
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_caption {
|
|
910
|
+
display: flex;
|
|
911
|
+
align-items: center;
|
|
912
|
+
}
|
|
913
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_caption svg {
|
|
914
|
+
vertical-align: initial !important;
|
|
915
|
+
}
|
|
916
|
+
.oip_card
|
|
917
|
+
.oip_card__kpi_container
|
|
918
|
+
.oip_card__kpi_caption
|
|
919
|
+
.oip_card__kpi_caption_icon:first-child {
|
|
920
|
+
margin-right: 4px;
|
|
921
|
+
}
|
|
922
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_caption h3 {
|
|
923
|
+
margin-right: 4px;
|
|
924
|
+
}
|
|
925
|
+
.oip_card__kpi .oip_underline {
|
|
926
|
+
color: var(--cool-grey) !important;
|
|
927
|
+
}
|
|
928
|
+
.oip_card__kpi .oip_label {
|
|
929
|
+
color: var(--independence) !important;
|
|
930
|
+
}
|
|
931
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_stats {
|
|
932
|
+
display: flex;
|
|
933
|
+
margin-top: 16px;
|
|
934
|
+
}
|
|
935
|
+
.oip_card
|
|
936
|
+
.oip_card__kpi_container
|
|
937
|
+
.oip_card__kpi_stats
|
|
938
|
+
.oip_card__kpi_stats_indicator {
|
|
939
|
+
box-sizing: content-box;
|
|
940
|
+
width: 24px;
|
|
941
|
+
height: 24px;
|
|
942
|
+
border-radius: 50%;
|
|
943
|
+
padding: 4px;
|
|
944
|
+
margin-right: 8px;
|
|
945
|
+
text-align: center;
|
|
946
|
+
}
|
|
947
|
+
.oip_card
|
|
948
|
+
.oip_card__kpi_container
|
|
949
|
+
.oip_card__kpi_stats
|
|
950
|
+
.oip_card__kpi_stats_indicator.trend_up {
|
|
951
|
+
background: rgba(50, 209, 117, 0.1);
|
|
952
|
+
}
|
|
953
|
+
.oip_card
|
|
954
|
+
.oip_card__kpi_container
|
|
955
|
+
.oip_card__kpi_stats
|
|
956
|
+
.oip_card__kpi_stats_indicator.trend_down {
|
|
957
|
+
background: rgba(251, 70, 84, 0.1);
|
|
958
|
+
}
|
|
959
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_up {
|
|
960
|
+
color: var(--success);
|
|
961
|
+
}
|
|
962
|
+
.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_down {
|
|
963
|
+
color: var(--alert);
|
|
964
|
+
}
|
|
965
|
+
.oip_card .oip_card__kpi_divider {
|
|
966
|
+
width: 1px;
|
|
967
|
+
background: var(--dividers);
|
|
968
|
+
}
|
|
969
|
+
.oip_card__tags {
|
|
970
|
+
margin-top: 32px;
|
|
971
|
+
display: flex;
|
|
972
|
+
gap: 10px;
|
|
973
|
+
flex-wrap: wrap;
|
|
974
|
+
}
|
|
975
|
+
</style>
|