@annalib/anna-core 0.0.0-watch

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/README.md +24 -0
  2. package/annalib-anna-core.d.ts +5 -0
  3. package/esm2020/annalib-anna-core.mjs +5 -0
  4. package/esm2020/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +15 -0
  5. package/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +35 -0
  6. package/esm2020/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +15 -0
  7. package/esm2020/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +22 -0
  8. package/esm2020/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +15 -0
  9. package/esm2020/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +21 -0
  10. package/esm2020/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +15 -0
  11. package/esm2020/lib/anna-core-shared-lib/constants/shared.constant.mjs +34 -0
  12. package/esm2020/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.mjs +282 -0
  13. package/esm2020/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.mjs +27 -0
  14. package/esm2020/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +2 -0
  15. package/esm2020/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +2 -0
  16. package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +2 -0
  17. package/esm2020/lib/anna-core-shared-lib/models/anna-sort.model.mjs +2 -0
  18. package/esm2020/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +30 -0
  19. package/esm2020/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +26 -0
  20. package/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +46 -0
  21. package/esm2020/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.mjs +25 -0
  22. package/esm2020/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.mjs +16 -0
  23. package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +198 -0
  24. package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +465 -0
  25. package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +48 -0
  26. package/esm2020/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +133 -0
  27. package/esm2020/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +41 -0
  28. package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +147 -0
  29. package/esm2020/lib/anna-core.module.mjs +180 -0
  30. package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +100 -0
  31. package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +364 -0
  32. package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +1787 -0
  33. package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +67 -0
  34. package/esm2020/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +357 -0
  35. package/esm2020/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.mjs +189 -0
  36. package/esm2020/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.mjs +2 -0
  37. package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +178 -0
  38. package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/index.mjs +2 -0
  39. package/esm2020/public-api.mjs +49 -0
  40. package/fesm2015/annalib-anna-core.mjs +4733 -0
  41. package/fesm2015/annalib-anna-core.mjs.map +1 -0
  42. package/fesm2020/annalib-anna-core.mjs +4726 -0
  43. package/fesm2020/annalib-anna-core.mjs.map +1 -0
  44. package/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +8 -0
  45. package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts +16 -0
  46. package/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +8 -0
  47. package/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +11 -0
  48. package/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +8 -0
  49. package/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +11 -0
  50. package/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +8 -0
  51. package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +32 -0
  52. package/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.d.ts +34 -0
  53. package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts +9 -0
  54. package/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +16 -0
  55. package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +95 -0
  56. package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +72 -0
  57. package/lib/anna-core-shared-lib/models/anna-sort.model.d.ts +6 -0
  58. package/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +25 -0
  59. package/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.d.ts +9 -0
  60. package/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +9 -0
  61. package/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.d.ts +9 -0
  62. package/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.d.ts +7 -0
  63. package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +27 -0
  64. package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +74 -0
  65. package/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +14 -0
  66. package/lib/anna-core-shared-lib/services/anna-global-config.service.d.ts +21 -0
  67. package/lib/anna-core-shared-lib/services/anna-number-format.service.d.ts +7 -0
  68. package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +16 -0
  69. package/lib/anna-core.module.d.ts +36 -0
  70. package/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +34 -0
  71. package/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +70 -0
  72. package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +270 -0
  73. package/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +17 -0
  74. package/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +141 -0
  75. package/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/anna-fixed-row-size-table-virtual-scroll-strategy.directive.d.ts +89 -0
  76. package/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts +1 -0
  77. package/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +45 -0
  78. package/lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts +1 -0
  79. package/package.json +38 -0
  80. package/public-api.d.ts +33 -0
  81. package/src/lib/anna-assets/images/bg-heads.png +0 -0
  82. package/src/lib/anna-common-scss/_animate.scss +27 -0
  83. package/src/lib/anna-common-scss/_application-spacing.scss +6 -0
  84. package/src/lib/anna-common-scss/_colors.scss +107 -0
  85. package/src/lib/anna-common-scss/_dashboard-partials.scss +104 -0
  86. package/src/lib/anna-common-scss/_filters.scss +598 -0
  87. package/src/lib/anna-common-scss/_font.scss +10 -0
  88. package/src/lib/anna-common-scss/_fonts.scss +86 -0
  89. package/src/lib/anna-common-scss/_legend.scss +11 -0
  90. package/src/lib/anna-common-scss/_mixins.scss +188 -0
  91. package/src/lib/anna-common-scss/_modal.scss +37 -0
  92. package/src/lib/anna-common-scss/_ng-select.scss +176 -0
  93. package/src/lib/anna-common-scss/_sort.scss +30 -0
  94. package/src/lib/anna-common-scss/_toggle.scss +84 -0
  95. package/src/lib/anna-common-scss/style.scss +1 -0
@@ -0,0 +1,598 @@
1
+ @import "./fonts", "./colors";
2
+
3
+ ::ng-deep .tooltip-inner {
4
+ max-height: 22rem;
5
+ background-color: white;
6
+ border: 1px solid white;
7
+ border-radius: 5px;
8
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
9
+ max-width: 251px;
10
+ width: 100%;
11
+ padding: 0 !important;
12
+ div.radio-container {
13
+ flex-wrap: wrap;
14
+ }
15
+ }
16
+
17
+ ::ng-deep .md-drppicker {
18
+ box-shadow: unset !important;
19
+ }
20
+
21
+ ::ng-deep .available {
22
+ color: #999;
23
+ }
24
+
25
+ ::ng-deep .bs-tooltip-bottom .arrow::before {
26
+ border-bottom-color: #fff !important;
27
+ }
28
+ ::ng-deep .bs-tooltip-left .arrow::before {
29
+ border-left-color: #fff !important;
30
+ }
31
+
32
+ ::ng-deep .tooltip.show {
33
+ opacity: 1;
34
+ }
35
+
36
+ .input {
37
+ text-align: left;
38
+ margin: 5px;
39
+ display: flex;
40
+ align-items: center;
41
+ width: 230px;
42
+ white-space: nowrap;
43
+ margin-right: 10px;
44
+ }
45
+
46
+ .data {
47
+ color: #000000;
48
+ font-weight: 700;
49
+ margin-left: 5px;
50
+ margin-right: 5px;
51
+ }
52
+
53
+ span.data {
54
+ display: inline-block;
55
+ text-overflow: ellipsis;
56
+ white-space: nowrap;
57
+ width: 100%;
58
+ overflow: hidden;
59
+ }
60
+
61
+ .check-box {
62
+ font-size: 14px;
63
+ cursor: pointer;
64
+ position: relative;
65
+ top: -1px;
66
+ }
67
+
68
+ span.mdi-filter.active {
69
+ color: black;
70
+ opacity: 1 !important;
71
+ pointer-events: all !important;
72
+ }
73
+
74
+ p {
75
+ margin-bottom: 0;
76
+ line-height: initial;
77
+ }
78
+
79
+ span.mdi-filter {
80
+ color: #cbcbcb;
81
+ }
82
+ //Slider
83
+ // ::ng-deep .ngx-slider {
84
+ // margin: 5px 0 2px 0 !important;
85
+ // width: 100% !important;
86
+ // }
87
+
88
+ // ::ng-deep span.ngx-slider-bubble.ngx-slider-model-value {
89
+ // display: block !important;
90
+ // padding: 2px !important;
91
+ // box-shadow: rgb(0 0 0 / 35%) 0px 3px 8px !important;
92
+ // height: 20px !important;
93
+ // }
94
+
95
+ ::ng-deep .ngx-slider-pointer {
96
+ top: -5px !important;
97
+ width: 12px !important;
98
+ height: 12px !important;
99
+ background: #bdbdbd !important;
100
+ border: 1px solid #ffffff !important;
101
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3) !important;
102
+ border-radius: 16px !important;
103
+ }
104
+
105
+
106
+ @mixin button-text {
107
+ text-align: center;
108
+ outline: none;
109
+ @include fonts(Roboto, $fs-12, normal, normal, normal, 1.67, normal);
110
+ }
111
+
112
+ input:focus {
113
+ outline: none;
114
+ }
115
+ input::placeholder {
116
+ color: $lightGray-6;
117
+ }
118
+
119
+ .cancel-btn {
120
+ background: $lavenderBlue;
121
+ color: $primary-color;
122
+ }
123
+
124
+ .apply-btn {
125
+ background: $primary-color;
126
+ color: white;
127
+ margin-left: $fs-5;
128
+ }
129
+
130
+ div.radio-container {
131
+ display: flex;
132
+ white-space: nowrap;
133
+ justify-content: space-between;
134
+ background-color: $filterRadioContainer;
135
+ // padding: $fs-2 $fs-2 $fs-2 $fs-4;
136
+ border-radius: $fs-2;
137
+ margin: $fs-7 $fs-7 $fs-4 $fs-7;
138
+ div{
139
+ flex: 1;
140
+ width: 50%;
141
+ }
142
+ div.full-width{
143
+ width: 100%;
144
+ }
145
+ input {
146
+ position: relative;
147
+ top: $fs-2;
148
+ margin-right: $fs-4;
149
+ }
150
+ label {
151
+ @include fonts(Roboto, $fs-14, normal, normal, normal, 1.29, 0);
152
+ color: $charcoal;
153
+ margin: 0;
154
+ padding-left: $fs-2;
155
+ }
156
+ label:first-of-type {
157
+ margin-right: $fs-3;
158
+ }
159
+ input[type="radio"] {
160
+ -webkit-appearance: none;
161
+ -moz-appearance: none;
162
+ appearance: none;
163
+ display: inline-block;
164
+ width: $fs-15;
165
+ height: $fs-15;
166
+ padding: $fs-2;
167
+ background-clip: content-box;
168
+ border: $fs-2 solid $primary-color;
169
+ background-color: transparent;
170
+ border-radius: 50%;
171
+ }
172
+
173
+ /* appearance for checked radiobutton */
174
+ input[type="radio"]:checked {
175
+ background-color: $primary-color;
176
+ }
177
+ }
178
+
179
+ .buttons-container {
180
+ display: flex;
181
+ margin: 0px auto $fs-7;
182
+ justify-content: center;
183
+ button:last-of-type {
184
+ background-color: $primary-color;
185
+ color: white;
186
+ }
187
+ button.disabled {
188
+ background: $gray74;
189
+ opacity: 0.5;
190
+ color: $charcoal;
191
+ }
192
+ }
193
+
194
+ .button {
195
+ display: inline-block;
196
+ // width: 50%;
197
+ margin: 8px 4px 0 8px;
198
+ padding: 0px 16px;
199
+ border-radius: 4px;
200
+ @include button-text();
201
+ border: none;
202
+ color: #268bff;
203
+ background-color: #e5f1ff;
204
+ // height: 20px;
205
+ }
206
+
207
+ .search-box {
208
+ display: flex;
209
+ align-items: center;
210
+ color: #c8c8c8;
211
+ border: 1px solid #e6e6e6;
212
+ border-radius: $fs-2;
213
+ margin: $fs-4 $fs-7 $fs-3 $fs-7;
214
+ height: $fs-24;
215
+ padding: $fs-3 0 $fs-3 $fs-8;
216
+ }
217
+
218
+ .search-icon {
219
+ margin: 0 4px 0 0;
220
+ font-size: $fs-18;
221
+ color: $lightGray-7;
222
+ }
223
+
224
+ .filter-icon {
225
+ justify-content: right;
226
+ margin-left: auto;
227
+ color: #d4d4d4;
228
+ color: #a1a1a1;
229
+ font-size: 16px;
230
+ cursor: pointer;
231
+ }
232
+
233
+ .data {
234
+ margin: 0 13px 0px 8px;
235
+ @include fonts(Roboto, $fs-14, normal, normal, normal, 1.86, "");
236
+ color: $charcoal;
237
+ }
238
+
239
+ .search-input {
240
+ margin: 1px 0 1px 4px;
241
+ @include fonts(Roboto, $fs-14, normal, normal, normal, normal, normal);
242
+ color: $lightGray-6;
243
+ }
244
+
245
+ .check-box {
246
+ color: $primary-color;
247
+ }
248
+
249
+ .tooltip-data-container {
250
+ overflow-y: scroll;
251
+ max-height: 8rem;
252
+ }
253
+
254
+ .searchbar {
255
+ width: 100%;
256
+ display: flex;
257
+ justify-content: flex-end;
258
+ align-items: flex-end;
259
+ }
260
+
261
+ .clear-button {
262
+ opacity: 0.5;
263
+ @include fonts(Roboto, $fs-15, normal, 500, normal, normal, normal);
264
+ color: $charcoal;
265
+ text-decoration: underline;
266
+ border: none;
267
+ background-color: white;
268
+ color: $charcoal;
269
+ margin-left: $fs-10;
270
+ padding: 0;
271
+ &:focus {
272
+ outline: none;
273
+ box-shadow: none;
274
+ }
275
+ }
276
+
277
+ .unchecked {
278
+ color: $primary-color;
279
+ }
280
+
281
+ cdk-virtual-scroll-viewport.dropdown-data-container {
282
+ max-height: 12.3rem;
283
+ width: 100%;
284
+ overflow-y: auto;
285
+ overflow-x: hidden;
286
+ p.input {
287
+ margin-left: 0;
288
+ span.mi {
289
+ padding-left: $fs-7;
290
+ }
291
+ }
292
+ p.input:hover {
293
+ background-color: #ebebeb;
294
+ cursor: pointer;
295
+ // span {
296
+ // color: white;
297
+ // }
298
+ }
299
+ }
300
+
301
+ cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar {
302
+ width: $fs-3;
303
+ }
304
+
305
+ cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar-thumb {
306
+ color: lightgray;
307
+ background: lightgray;
308
+ }
309
+
310
+ section.min-maxContainer {
311
+ display: flex;
312
+ justify-content: center;
313
+ margin-bottom: -$fs-2;
314
+ margin-top: $fs-8;
315
+ width: 100%;
316
+ input {
317
+ width: 30%;
318
+ height: $fs-30;
319
+ border: 1px solid lightgray;
320
+ color: gray;
321
+ }
322
+ span {
323
+ display: inline-block;
324
+ padding-left: $fs-8;
325
+ padding-right: $fs-8;
326
+ position: relative;
327
+ top: $fs-5;
328
+ color: $lightDimGray;
329
+ }
330
+ }
331
+
332
+ .time-container {
333
+ width: 100%;
334
+ display: flex;
335
+ padding: $fs-2 $fs-10 0 $fs-10;
336
+ input.form-control:disabled {
337
+ background-color: white;
338
+ width: $fs-45;
339
+ }
340
+ .dot {
341
+ color: #cbcbcb;
342
+ position: relative;
343
+ left: -7px;
344
+ font-size: 17px;
345
+ }
346
+ div.arrow-container {
347
+ flex-direction: column;
348
+ display: flex;
349
+ padding-top: $fs-6;
350
+ padding-left: 1px;
351
+ margin-right: $fs-19;
352
+ i {
353
+ color: black;
354
+ cursor: pointer;
355
+ font-size: $fs-9;
356
+ }
357
+ i.downward {
358
+ transform: rotate(180deg);
359
+ }
360
+ }
361
+ }
362
+
363
+ .mdi-filter {
364
+ cursor: pointer;
365
+ }
366
+
367
+ .time-label-container {
368
+ display: flex;
369
+ justify-content: flex-start;
370
+ label {
371
+ margin-bottom: 0;
372
+ color: $charcoal;
373
+ margin-top: $fs-10;
374
+ margin-left: $fs-10;
375
+ font-weight: 700;
376
+ }
377
+ }
378
+
379
+ .time-heading {
380
+ color: black;
381
+ font-size: $fs-13;
382
+ text-align: left;
383
+ padding-left: $fs-10;
384
+ margin-top: $fs-10;
385
+ font-weight: 700;
386
+ }
387
+
388
+ .column-clear-all {
389
+ width: 94%;
390
+ text-align: center;
391
+ border: none;
392
+ font-size: 14px;
393
+ background: none;
394
+ text-decoration: underline;
395
+ color: $primary-color;
396
+ &:disabled {
397
+ opacity: 0.5;
398
+ color: $charcoal;
399
+ }
400
+ &.align-center {
401
+ text-align: center;
402
+ }
403
+ }
404
+
405
+ .checkbox-container {
406
+ display: flex;
407
+ padding-inline: 0.625rem;
408
+ .data {
409
+ text-align: left;
410
+ }
411
+ &:first-of-type {
412
+ margin-top: 0.625rem;
413
+ font-weight: 500;
414
+ }
415
+ }
416
+
417
+ .column-clear-all {
418
+ width: 94%;
419
+ text-align: center;
420
+ border: none;
421
+ background: none;
422
+ text-decoration: underline;
423
+ color: $primary-color;
424
+ &:disabled {
425
+ opacity: 0.5;
426
+ color: $charcoal;
427
+ }
428
+ &.align-center {
429
+ text-align: center;
430
+ }
431
+ }
432
+
433
+ span.mdi-filter-variant.disabled
434
+ {
435
+ pointer-events: none;
436
+ opacity: 0.5;
437
+ }
438
+
439
+ .datepicker-container {
440
+ width: 100%;
441
+ }
442
+
443
+
444
+ span.mdi-filter-variant{
445
+ color: #cbcbcb;
446
+ cursor: pointer;
447
+ font-size: 0.875rem;
448
+ }
449
+
450
+ span.mdi-filter-variant.active{
451
+ color: #000000;
452
+ }
453
+
454
+ p.filter-tab{
455
+ @include fonts(Roboto, 14px, normal,normal, normal, 1.29, normal);
456
+ color: #1b88ff;
457
+ border-radius: 5px;
458
+ background-color: #f4f4f4;
459
+ padding-inline: 8px;
460
+ cursor: pointer;
461
+ overflow: hidden;
462
+ text-overflow: ellipsis;
463
+ }
464
+
465
+ p.filter-tab.active{
466
+ color: white;
467
+ background-color: #1b88ff;
468
+ }
469
+
470
+ button.filter-text-btn{
471
+ background: white;
472
+ text-decoration: underline;
473
+ @include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
474
+ border: none;
475
+ color: #268bff;
476
+ &:disabled{
477
+ color: #b1b1b1;
478
+ cursor: not-allowed;
479
+ }
480
+ margin-inline: 4px;
481
+ margin-top: 2px;
482
+ }
483
+
484
+ ::ng-deep .non-edit-datepicker-tooltip .tooltip-inner{
485
+ max-width: 310px !important;
486
+ width: 263px !important;
487
+ overflow-y: initial !important;
488
+ }
489
+
490
+
491
+ input.slider-text::-webkit-outer-spin-button,
492
+ input.slider-text::-webkit-inner-spin-button{
493
+ -webkit-appearance: none;
494
+ margin: 0;
495
+ }
496
+
497
+ input.slider-text{
498
+ -moz-appearance: textfield;
499
+ }
500
+
501
+ input.slider-text.red-border{
502
+ border: 1px solid #f44336 !important;
503
+ }
504
+
505
+ ::ng-deep .checkbox-sort p.sort-container{
506
+ margin-top: 8px !important;
507
+ padding-bottom: 8px !important;
508
+ }
509
+
510
+ i.mdi-close{
511
+ cursor: pointer;
512
+ }
513
+
514
+ i.mdi-close.disable-close-icon{
515
+ pointer-events: none;
516
+ cursor: not-allowed;
517
+ }
518
+
519
+ input.error-border{
520
+ border: 1px solid #f44336 !important;
521
+ }
522
+
523
+
524
+ ::ng-deep .non-edit-checkbox-tooltip .tooltip-inner{
525
+ width: 238px !important;
526
+ }
527
+
528
+ ::ng-deep .non-edit-slider-tooltip .tooltip-inner{
529
+ width: 238px !important;
530
+ }
531
+
532
+ ::ng-deep .non-edit-time-tooltip .tooltip-inner{
533
+ width: 250px !important;
534
+ }
535
+
536
+ ::ng-deep .no-bottom-border{
537
+ p.sort-container{
538
+ border-bottom: none !important;
539
+ }
540
+ }
541
+
542
+ //Slider Filter Css
543
+
544
+ ::ng-deep .ngx-slider-pointer-min {
545
+ &::after {
546
+ display: none;
547
+ }
548
+ }
549
+
550
+ ::ng-deep .ngx-slider-pointer-max {
551
+ &::after {
552
+ display: none;
553
+ }
554
+ }
555
+
556
+ ::ng-deep .ngx-slider span.ngx-slider-pointer {
557
+ width: 12px;
558
+ height: 12px;
559
+ top: -5px;
560
+ background-color: #bdbdbd;
561
+ }
562
+
563
+ ::ng-deep .ngx-slider span.ngx-slider-bar {
564
+ height: 3px;
565
+ background: #ededed;
566
+ }
567
+
568
+ ::ng-deep .ngx-slider span.ngx-slider-selection {
569
+ background: #bdbdbd;
570
+ }
571
+
572
+ //Aligning the label to bottom
573
+ ::ng-deep .ngx-slider span.ngx-slider-bubble {
574
+ bottom: -22px;
575
+ font-size: 12px;
576
+ color: #333;
577
+ }
578
+
579
+ ::ng-deep .show-min.ngx-slider span.ngx-slider-model-value{
580
+ background: white;
581
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
582
+ }
583
+
584
+ ::ng-deep .show-max.ngx-slider span.ngx-slider-model-high{
585
+ background: white;
586
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
587
+ }
588
+
589
+ ::ng-deep .ngx-slider span.ngx-slider-combined{
590
+ background: white;
591
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
592
+ }
593
+
594
+ .sidebar-slider{
595
+ margin-bottom: 6px;
596
+ }
597
+
598
+ //end of slider css
@@ -0,0 +1,10 @@
1
+
2
+ @mixin fonts($fontFamily, $fontSize, $fontStretch, $fontWeight, $fontStyle, $lineHeight, $letterSpacing) {
3
+ font-family: $fontFamily;
4
+ font-size: $fontSize;
5
+ font-weight: $fontWeight;
6
+ font-stretch: $fontStretch;
7
+ font-style: $fontStyle;
8
+ line-height: $lineHeight;
9
+ letter-spacing: $letterSpacing;
10
+ }
@@ -0,0 +1,86 @@
1
+ // body font should be 16px
2
+ $fs-2: 0.125rem;
3
+ $fs-3: 0.188rem;
4
+ $fs-4: 0.25rem;
5
+ $fs-5: 0.3125rem;
6
+ $fs-6: 0.375rem;
7
+ $fs-7: 0.4375rem;
8
+ $fs-8: 0.5rem;
9
+ $fs-9: 0.5625rem;
10
+ $fs-10: 0.625rem;
11
+ $fs-11: 0.6875rem;
12
+ $fs-12: 0.75rem;
13
+ $fs-13: 0.8125rem;
14
+ $fs-14: 0.875rem;
15
+ $fs-15: 0.9375rem;
16
+ $fs-16: 1rem;
17
+ $fs-17: 1.0625rem;
18
+ $fs-18: 1.125rem;
19
+ $fs-19: 1.1875rem;
20
+ $fs-20: 1.25rem;
21
+ $fs-21: 1.3125rem;
22
+ $fs-22: 1.375rem;
23
+ $fs-23: 1.4375rem;
24
+ $fs-24: 1.5rem;
25
+ $fs-25: 1.5625rem;
26
+ $fs-26: 1.625rem;
27
+ $fs-27: 1.6875rem;
28
+ $fs-28: 1.75rem;
29
+ $fs-29: 1.8125rem;
30
+ $fs-30: 1.875rem;
31
+ $fs-31: 1.938rem;
32
+ $fs-32: 2rem;
33
+ $fs-33: 2.063rem;
34
+ $fs-34: 2.125rem;
35
+ $fs-35: 2.188rem;
36
+ $fs-36: 2.25rem;
37
+ $fs-37: 2.313rem;
38
+ $fs-38: 2.375rem;
39
+ $fs-39: 2.438rem;
40
+ $fs-40: 2.5rem;
41
+ $fs-41: 2.563rem;
42
+ $fs-42: 2.625rem;
43
+ $fs-43: 2.688rem;
44
+ $fs-44: 2.75rem;
45
+ $fs-45: 2.813rem;
46
+ $fs-46: 2.875rem;
47
+ $fs-47: 2.938rem;
48
+ $fs-48: 3rem;
49
+ $fs-49: 3.063rem;
50
+ $fs-50: 3.125rem;
51
+ $fs-51: 3.188rem;
52
+ $fs-52: 3.25rem;
53
+ $fs-53: 3.313rem;
54
+ $fs-54: 3.375rem;
55
+ $fs-55: 3.438rem;
56
+ $fs-56: 3.5rem;
57
+ $fs-57: 3.563rem;
58
+ $fs-58: 3.625rem;
59
+ $fs-59: 3.688rem;
60
+ $fs-60: 3.75rem;
61
+ $fs-65: 4.063rem;
62
+ $fs-68: 4.25rem;
63
+ $fs-80: 5rem;
64
+ $fs-70: 4.375rem;
65
+ $fs-90: 5.6rem;
66
+ $fs-115: 7.188rem;
67
+ $fs-120: 7.5rem;
68
+ $fs-128: 8rem;
69
+ $fs-135: 8.438rem;
70
+ $fs-144: 9rem;
71
+ $fs-146: 9.125rem;
72
+ $fs-164: 10.25rem;
73
+ $fs-170: 10.625rem;
74
+ $fs-200: 12.5rem;
75
+ $fs-250: 15.625rem;
76
+ $fs-600: 37.5rem;
77
+
78
+ @mixin fonts($fontFamily, $fontSize, $fontStretch, $fontWeight, $fontStyle, $lineHeight, $letterSpacing) {
79
+ font-family: $fontFamily;
80
+ font-size: $fontSize;
81
+ font-weight: $fontWeight;
82
+ font-stretch: $fontStretch;
83
+ font-style: $fontStyle;
84
+ line-height: $lineHeight;
85
+ letter-spacing: $letterSpacing;
86
+ }
@@ -0,0 +1,11 @@
1
+ $dot-width: 0.625rem;
2
+ $dot-height: 0.625rem;
3
+ $dot-radius: 50%;
4
+
5
+ @mixin dot($color) {
6
+ display: inline-block;
7
+ border-radius: $dot-radius;
8
+ height: $dot-height;
9
+ width: $dot-width;
10
+ background-color: $color;
11
+ }