@posiwise/core-styles 0.0.40 → 1.0.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/css/google-fonts.css +1 -4
- package/css/hopscotch.css +1 -1
- package/package.json +4 -4
- package/scss/_dashboard.scss +1 -1
- package/scss/_dynamic-styles.scss +7 -870
- package/scss/common/landing-page-a/landing-page-style-1.scss +7 -7
- package/scss/common/landing-page-b/banner.scss +8 -8
- package/scss/common/landing-page-b/contact-us.scss +4 -4
- package/scss/common/landing-page-b/explainer.scss +6 -6
- package/scss/common/landing-page-b/explainer2.scss +1 -1
- package/scss/common/landing-page-b/landing-page-style-2.scss +3 -4
- package/scss/custom-bootstrap/_badge.scss +25 -35
- package/scss/custom-bootstrap/_type.scss +1 -7
- package/scss/dashboard/_bootstrap-social.scss +25 -25
- package/scss/dashboard/_coming-soon.scss +1 -1
- package/scss/dashboard/_components.scss +1 -1
- package/scss/dashboard/_email.scss +7 -7
- package/scss/dashboard/_helper.scss +7 -17
- package/scss/dashboard/_icons.scss +0 -7
- package/scss/dashboard/_misc.scss +1 -1
- package/scss/dashboard/_palette.scss +125 -284
- package/scss/dashboard/_profile.scss +1 -1
- package/scss/dashboard/_tabs.scss +0 -18
- package/scss/dashboard/mixins/_utilities.scss +1 -1
- package/scss/dashboard/mixins/_vendor-prefixes.scss +2 -2
- package/scss/plugins/perfect-scrollbar/_variables.scss +1 -1
- package/scss/public-pages/_layout.scss +1 -8
- package/scss/shared/_prime-ng.scss +180 -204
- package/scss/variables/_app-colors-variables.scss +1 -7
- package/scss/variables/_branding-variables.scss +7 -9
- package/scss/variables/_generic-variables.scss +5 -5
- package/scss/variables/_primeng-variables.scss +38 -38
- package/app.scss +0 -45
|
@@ -3,64 +3,12 @@
|
|
|
3
3
|
:root {
|
|
4
4
|
--titles: rgb(34 34 34);
|
|
5
5
|
--tabs_bg: rgb(23, 105, 225);
|
|
6
|
-
--tabs_sub_bg: rgb(70, 136, 236);
|
|
7
6
|
--tabs_text: rgb(255, 255, 255);
|
|
8
7
|
--sidebar_bg: rgb(0, 48, 63);
|
|
9
8
|
--sidebar_text: rgb(255, 255, 255);
|
|
10
9
|
--first: rgb(23 105 225);
|
|
11
10
|
--second: rgb(54 194 131);
|
|
12
11
|
--text: rgb(34 34 34);
|
|
13
|
-
|
|
14
|
-
// PrimeNG Calendar icon CSS variables override
|
|
15
|
-
--p-datepicker-dropdown-color: var(--first);
|
|
16
|
-
--p-datepicker-trigger-color: var(--first);
|
|
17
|
-
--p-button-text-color: var(--first);
|
|
18
|
-
|
|
19
|
-
// PrimeNG Select option selected CSS variables override
|
|
20
|
-
--p-select-option-selected-background: var(--first);
|
|
21
|
-
--p-select-option-selected-color: #ffffff;
|
|
22
|
-
|
|
23
|
-
// PrimeNG Autocomplete option selected CSS variables override
|
|
24
|
-
--p-autocomplete-option-selected-background: var(--first);
|
|
25
|
-
--p-autocomplete-option-selected-color: #ffffff;
|
|
26
|
-
|
|
27
|
-
// PrimeNG Chip background CSS variables override
|
|
28
|
-
--p-chip-background: var(--first);
|
|
29
|
-
--p-chip-color: #ffffff;
|
|
30
|
-
|
|
31
|
-
// PrimeNG Autocomplete dropdown button CSS variables override
|
|
32
|
-
--p-autocomplete-dropdown-background: var(--first);
|
|
33
|
-
--p-autocomplete-dropdown-color: #ffffff;
|
|
34
|
-
--p-autocomplete-dropdown-border-color: var(--first);
|
|
35
|
-
|
|
36
|
-
// PrimeNG Autocomplete input border CSS variables override
|
|
37
|
-
--p-autocomplete-focus-border-color: var(--first);
|
|
38
|
-
--p-autocomplete-hover-border-color: var(--first);
|
|
39
|
-
|
|
40
|
-
// PrimeNG Checkbox checked CSS variables override
|
|
41
|
-
--p-checkbox-checked-background: var(--first);
|
|
42
|
-
--p-checkbox-checked-border-color: var(--first);
|
|
43
|
-
|
|
44
|
-
// PrimeNG Multiselect option selected CSS variables override
|
|
45
|
-
--p-multiselect-option-selected-background: var(--first);
|
|
46
|
-
--p-multiselect-option-selected-color: #ffffff;
|
|
47
|
-
--p-multiselect-option-selected-focus-background: var(--first);
|
|
48
|
-
--p-multiselect-option-selected-focus-color: #ffffff;
|
|
49
|
-
|
|
50
|
-
// PrimeNG Paginator selected page CSS variables override
|
|
51
|
-
--p-paginator-nav-button-selected-background: var(--tabs_bg);
|
|
52
|
-
--p-paginator-nav-button-selected-color: var(--tabs_text);
|
|
53
|
-
--p-paginator-nav-button-selected-border-color: var(--tabs_bg);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.plot-container,
|
|
57
|
-
.svg-container,
|
|
58
|
-
.main-svg,
|
|
59
|
-
.xy {
|
|
60
|
-
width: 100% !important;
|
|
61
|
-
height: 450px !important;
|
|
62
|
-
min-height: 450px !important;
|
|
63
|
-
max-height: 450px !important;
|
|
64
12
|
}
|
|
65
13
|
|
|
66
14
|
:root {
|
|
@@ -116,15 +64,10 @@
|
|
|
116
64
|
}
|
|
117
65
|
|
|
118
66
|
.p-menuitem-link.p-menuitem-link-active {
|
|
119
|
-
background-color: var(--tabs_bg)
|
|
67
|
+
background-color: var(--tabs_bg);
|
|
120
68
|
color: var(--tabs_text);
|
|
121
|
-
&:hover {
|
|
122
|
-
background-color: var(--tabs_bg) !important;
|
|
123
|
-
color: var(--tabs_text) !important;
|
|
124
|
-
}
|
|
125
69
|
}
|
|
126
70
|
|
|
127
|
-
|
|
128
71
|
.p-menuitem-link {
|
|
129
72
|
color: var(--tabs_bg);
|
|
130
73
|
}
|
|
@@ -141,30 +84,10 @@
|
|
|
141
84
|
}
|
|
142
85
|
}
|
|
143
86
|
}
|
|
144
|
-
|
|
145
|
-
.p-tabmenuitem-active {
|
|
146
|
-
background-color: var(--tabs_bg) !important;
|
|
147
|
-
color: var(--tabs_text) !important;
|
|
148
|
-
|
|
149
|
-
a,
|
|
150
|
-
.p-menuitem-link {
|
|
151
|
-
background-color: var(--tabs_bg) !important;
|
|
152
|
-
color: var(--tabs_text) !important;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
87
|
}
|
|
156
88
|
}
|
|
157
89
|
}
|
|
158
90
|
|
|
159
|
-
.custom-tooltip .tooltip-inner {
|
|
160
|
-
/* Provides space at the bottom */
|
|
161
|
-
max-width: 500px !important; /* Width for readability */
|
|
162
|
-
max-height: 900px !important; /* Limits height for long content */
|
|
163
|
-
overflow-y: auto !important;
|
|
164
|
-
padding: 10px !important;
|
|
165
|
-
text-align: left !important;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
91
|
h1,
|
|
169
92
|
h2,
|
|
170
93
|
h3,
|
|
@@ -196,10 +119,6 @@
|
|
|
196
119
|
}
|
|
197
120
|
}
|
|
198
121
|
|
|
199
|
-
.btn-filter-primary {
|
|
200
|
-
color: var(--first) !important;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
122
|
.btn-primary {
|
|
204
123
|
background-color: var(--first) !important;
|
|
205
124
|
border-color: var(--first) !important;
|
|
@@ -215,43 +134,19 @@
|
|
|
215
134
|
color: var(--tabs_text) !important;
|
|
216
135
|
}
|
|
217
136
|
|
|
218
|
-
.analytics {
|
|
219
|
-
padding-bottom: 30px;
|
|
220
|
-
|
|
221
|
-
.primeng-datatable-container table thead tr th {
|
|
222
|
-
background-color: var(--tabs_bg) !important;
|
|
223
|
-
position: relative;
|
|
224
|
-
padding: 3px 10px;
|
|
225
|
-
}
|
|
226
|
-
.primeng-datatable-container table thead tr th::after {
|
|
227
|
-
content: '';
|
|
228
|
-
position: absolute;
|
|
229
|
-
inset: 0;
|
|
230
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
231
|
-
pointer-events: none;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
137
|
.p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
|
|
236
138
|
background-color: var(--tabs_bg) !important;
|
|
237
139
|
border-color: var(--tabs_bg) !important;
|
|
238
140
|
color: var(--tabs_text) !important;
|
|
239
141
|
}
|
|
240
142
|
|
|
241
|
-
.p-paginator-page.p-paginator-page-selected,
|
|
242
|
-
.p-paginator-page.p-highlight {
|
|
243
|
-
background-color: var(--tabs_bg) !important;
|
|
244
|
-
border-color: var(--tabs_bg) !important;
|
|
245
|
-
color: var(--tabs_text) !important;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
143
|
pw-posts-list {
|
|
249
144
|
ul.tags li {
|
|
250
145
|
color: var(--titles);
|
|
251
146
|
}
|
|
252
147
|
}
|
|
253
148
|
|
|
254
|
-
//
|
|
149
|
+
// signin buttons
|
|
255
150
|
.sign-btn {
|
|
256
151
|
background-color: var(--first);
|
|
257
152
|
color: #fff;
|
|
@@ -329,19 +224,6 @@
|
|
|
329
224
|
color: #fff !important;
|
|
330
225
|
}
|
|
331
226
|
|
|
332
|
-
.hopscotch-bubble-container {
|
|
333
|
-
width: 400px !important; /* Adjust the width as needed */
|
|
334
|
-
max-width: 100%; /* Ensure it does not exceed the viewport */
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.hopscotch-bubble .hopscotch-bubble-content {
|
|
338
|
-
padding: 10px; /* Optional: Adjust padding for better spacing */
|
|
339
|
-
}
|
|
340
|
-
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
|
|
341
|
-
color: #ffffff;
|
|
342
|
-
background: var(--first) !important;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
227
|
.p-autocomplete {
|
|
346
228
|
.p-button,
|
|
347
229
|
.p-button:enabled:active,
|
|
@@ -351,33 +233,7 @@
|
|
|
351
233
|
}
|
|
352
234
|
.p-autocomplete-multiple-container {
|
|
353
235
|
.p-autocomplete-token {
|
|
354
|
-
background: var(--first)
|
|
355
|
-
color: #ffffff !important;
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
.p-autocomplete-dropdown {
|
|
359
|
-
background-color: var(--first) !important;
|
|
360
|
-
border-color: var(--first) !important;
|
|
361
|
-
color: #ffffff !important;
|
|
362
|
-
|
|
363
|
-
svg,
|
|
364
|
-
.p-icon,
|
|
365
|
-
i {
|
|
366
|
-
color: #ffffff !important;
|
|
367
|
-
fill: #ffffff !important;
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.p-autocomplete-input-multiple,
|
|
372
|
-
.p-inputtext {
|
|
373
|
-
&:hover {
|
|
374
|
-
border-color: var(--first) !important;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
&:focus,
|
|
378
|
-
&.p-focus {
|
|
379
|
-
border-color: var(--first) !important;
|
|
380
|
-
box-shadow: 0 0 0 0.2rem rgba(23, 105, 225, 0.25) !important;
|
|
236
|
+
background: var(--first);
|
|
381
237
|
}
|
|
382
238
|
}
|
|
383
239
|
}
|
|
@@ -551,21 +407,10 @@
|
|
|
551
407
|
}
|
|
552
408
|
}
|
|
553
409
|
}
|
|
554
|
-
.p-multiselect-header .p-checkbox .p-checkbox-box.p-highlight {
|
|
555
|
-
background: var(--first) !important;
|
|
556
|
-
border-color: var(--first);
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus {
|
|
560
|
-
box-shadow: 0 0 0 0.2rem var(--first) (255, 0, 0, 0.5); // Adjusted to red
|
|
561
|
-
border-color: var(--first); // Red border
|
|
562
|
-
}
|
|
563
|
-
|
|
564
410
|
.p-multiselect-item {
|
|
565
411
|
.p-checkbox {
|
|
566
412
|
.p-checkbox-box.p-highlight {
|
|
567
413
|
background: var(--first);
|
|
568
|
-
border-color: var(--first);
|
|
569
414
|
}
|
|
570
415
|
}
|
|
571
416
|
}
|
|
@@ -577,19 +422,11 @@
|
|
|
577
422
|
}
|
|
578
423
|
}
|
|
579
424
|
|
|
580
|
-
// spinner color
|
|
581
|
-
p-progressspinner .p-progressspinner-circle,
|
|
582
|
-
p-progressSpinner .p-progress-spinner-circle,
|
|
583
|
-
.p-progressspinner .p-progressspinner-circle {
|
|
584
|
-
animation:
|
|
585
|
-
custom-progress-spinner-dash 1.5s ease-in-out infinite,
|
|
586
|
-
custom-progress-spinner-color 6s ease-in-out infinite;
|
|
587
|
-
}
|
|
425
|
+
// spinner color
|
|
588
426
|
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
stroke: var(--first) !important;
|
|
427
|
+
p-progressSpinner .p-progress-spinner-circle {
|
|
428
|
+
animation: custom-progress-spinner-dash 1.5s ease-in-out infinite,
|
|
429
|
+
custom-progress-spinner-color 6s ease-in-out infinite;
|
|
593
430
|
}
|
|
594
431
|
|
|
595
432
|
@keyframes custom-progress-spinner-color {
|
|
@@ -694,704 +531,4 @@
|
|
|
694
531
|
.toast-container {
|
|
695
532
|
position: fixed !important;
|
|
696
533
|
}
|
|
697
|
-
i.fa-info-circle {
|
|
698
|
-
font-size: 16px;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
p-radiobutton .p-highlight .p-radiobutton-icon {
|
|
702
|
-
background-color: var(--first) !important;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.badge.bg-light {
|
|
706
|
-
&:not(.text-dark) {
|
|
707
|
-
@extend .text-dark;
|
|
708
|
-
}
|
|
709
|
-
}
|
|
710
|
-
.badge.bg-white {
|
|
711
|
-
&:not(.text-dark) {
|
|
712
|
-
@extend .text-dark;
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
.btn.btn-primary {
|
|
716
|
-
&:not(.text-light) {
|
|
717
|
-
@extend .text-light;
|
|
718
|
-
}
|
|
719
|
-
}
|
|
720
|
-
.btn.btn-primary {
|
|
721
|
-
&:not(.text-light) {
|
|
722
|
-
@extend .text-light;
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
.btn.btn-secondary {
|
|
726
|
-
&:not(.text-light) {
|
|
727
|
-
@extend .text-light;
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
.btn.btn-secondary {
|
|
731
|
-
&:not(.text-light) {
|
|
732
|
-
@extend .text-light;
|
|
733
|
-
}
|
|
734
|
-
}
|
|
735
|
-
.btn.btn-primary:hover {
|
|
736
|
-
background-color: transparent !important;
|
|
737
|
-
color: var(--first) !important;
|
|
738
|
-
}
|
|
739
|
-
.btn.btn-secondary:hover {
|
|
740
|
-
background-color: transparent !important;
|
|
741
|
-
color: var(--first) !important;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
// PrimeNG Datepicker - Selected date color (blue instead of green)
|
|
745
|
-
.p-datepicker {
|
|
746
|
-
table {
|
|
747
|
-
td {
|
|
748
|
-
span.p-highlight,
|
|
749
|
-
span.p-datepicker-day-selected,
|
|
750
|
-
&.p-highlight > span {
|
|
751
|
-
background-color: var(--first) !important;
|
|
752
|
-
color: #ffffff !important;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
&.p-datepicker-today {
|
|
756
|
-
> span.p-highlight {
|
|
757
|
-
background-color: var(--first) !important;
|
|
758
|
-
color: #ffffff !important;
|
|
759
|
-
}
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
&.p-datepicker-current-day {
|
|
763
|
-
> span {
|
|
764
|
-
background-color: var(--first) !important;
|
|
765
|
-
color: #ffffff !important;
|
|
766
|
-
}
|
|
767
|
-
}
|
|
768
|
-
}
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
// PrimeNG Calendar icon color
|
|
773
|
-
.p-calendar {
|
|
774
|
-
.p-datepicker-trigger,
|
|
775
|
-
.p-datepicker-dropdown {
|
|
776
|
-
background-color: transparent !important;
|
|
777
|
-
border-color: var(--first) !important;
|
|
778
|
-
color: var(--first) !important;
|
|
779
|
-
|
|
780
|
-
&:hover {
|
|
781
|
-
background-color: rgba(23, 105, 225, 0.1) !important;
|
|
782
|
-
border-color: var(--first) !important;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
// Icon/SVG color - target all possible icon elements
|
|
786
|
-
svg,
|
|
787
|
-
.p-icon,
|
|
788
|
-
i,
|
|
789
|
-
calendaricon {
|
|
790
|
-
color: var(--first) !important;
|
|
791
|
-
fill: var(--first) !important;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
// Target SVG paths and elements specifically
|
|
795
|
-
svg path,
|
|
796
|
-
svg circle,
|
|
797
|
-
svg rect,
|
|
798
|
-
svg polygon,
|
|
799
|
-
svg * {
|
|
800
|
-
fill: var(--first) !important;
|
|
801
|
-
stroke: var(--first) !important;
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.p-inputtext:enabled:hover {
|
|
806
|
-
border-color: var(--first) !important;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.p-inputtext:enabled:focus {
|
|
810
|
-
border-color: var(--first) !important;
|
|
811
|
-
box-shadow: 0 0 0 0.2rem rgba(23, 105, 225, 0.25) !important;
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
// PrimeNG Select option selected color
|
|
816
|
-
.p-select-option-selected,
|
|
817
|
-
.p-select-option.p-select-option-selected {
|
|
818
|
-
background-color: var(--first) !important;
|
|
819
|
-
color: #ffffff !important;
|
|
820
|
-
|
|
821
|
-
&.p-focus {
|
|
822
|
-
background-color: var(--first) !important;
|
|
823
|
-
color: #ffffff !important;
|
|
824
|
-
}
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
// PrimeNG Autocomplete option selected color
|
|
828
|
-
.p-autocomplete-option-selected {
|
|
829
|
-
background-color: var(--first) !important;
|
|
830
|
-
color: #ffffff !important;
|
|
831
|
-
|
|
832
|
-
&.p-focus {
|
|
833
|
-
background-color: var(--first) !important;
|
|
834
|
-
color: #ffffff !important;
|
|
835
|
-
}
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
// PrimeNG Chip/Token color
|
|
839
|
-
.p-chip,
|
|
840
|
-
.p-autocomplete-token {
|
|
841
|
-
background-color: var(--first) !important;
|
|
842
|
-
color: #ffffff !important;
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
// PrimeNG Multiselect option selected color
|
|
846
|
-
.p-multiselect-option-selected {
|
|
847
|
-
background-color: transparent !important;
|
|
848
|
-
color: black !important;
|
|
849
|
-
|
|
850
|
-
&.p-focus {
|
|
851
|
-
background: var(--p-multiselect-option-focus-background) !important;
|
|
852
|
-
color: var(--p-multiselect-option-focus-color) !important;
|
|
853
|
-
}
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
// PrimeNG Checkbox checked color
|
|
857
|
-
.p-checkbox-checked .p-checkbox-box {
|
|
858
|
-
background-color: var(--first) !important;
|
|
859
|
-
border-color: var(--first) !important;
|
|
860
|
-
}
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
// Global PrimeNG Calendar icon styles (outside :root for higher specificity)
|
|
864
|
-
p-calendar,
|
|
865
|
-
.p-calendar {
|
|
866
|
-
.p-datepicker-trigger,
|
|
867
|
-
.p-datepicker-dropdown,
|
|
868
|
-
button[class*='datepicker'] {
|
|
869
|
-
background-color: var(--first) !important;
|
|
870
|
-
border-color: var(--first) !important;
|
|
871
|
-
color: white !important;
|
|
872
|
-
|
|
873
|
-
svg,
|
|
874
|
-
.p-icon,
|
|
875
|
-
i,
|
|
876
|
-
calendaricon,
|
|
877
|
-
* {
|
|
878
|
-
color: white !important;
|
|
879
|
-
fill: white !important;
|
|
880
|
-
stroke: white !important;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
svg path,
|
|
884
|
-
svg circle,
|
|
885
|
-
svg rect,
|
|
886
|
-
svg polygon,
|
|
887
|
-
svg * {
|
|
888
|
-
fill: white !important;
|
|
889
|
-
stroke: white !important;
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
button.p-datepicker-trigger,
|
|
895
|
-
button.p-datepicker-dropdown {
|
|
896
|
-
background-color: transparent !important;
|
|
897
|
-
border-color: var(--first) !important;
|
|
898
|
-
color: var(--first) !important;
|
|
899
|
-
|
|
900
|
-
svg,
|
|
901
|
-
.p-icon,
|
|
902
|
-
i,
|
|
903
|
-
calendaricon,
|
|
904
|
-
* {
|
|
905
|
-
color: var(--first) !important;
|
|
906
|
-
fill: var(--first) !important;
|
|
907
|
-
stroke: var(--first) !important;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
svg path,
|
|
911
|
-
svg * {
|
|
912
|
-
fill: var(--first) !important;
|
|
913
|
-
stroke: var(--first) !important;
|
|
914
|
-
}
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.body-quill {
|
|
918
|
-
border-width: 0 !important;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
.dropdown-menu .dropdown-item.active {
|
|
922
|
-
background-color: var(--tabs_bg) !important;
|
|
923
|
-
color: var(--tabs_text) !important;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.dropdown-menu .dropdown-item:focus {
|
|
927
|
-
background-color: var(--tabs_bg) !important;
|
|
928
|
-
color: var(--tabs_text) !important;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.p-dropdown-panel {
|
|
932
|
-
.p-dropdown-items {
|
|
933
|
-
.p-dropdown-item {
|
|
934
|
-
&.p-highlight {
|
|
935
|
-
background-color: var(--first) !important;
|
|
936
|
-
color: #ffffff !important;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
&.p-focus {
|
|
940
|
-
background-color: var(--first) !important;
|
|
941
|
-
color: #ffffff !important;
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
// PrimeNG Select option selected (for p-select components)
|
|
948
|
-
.p-select-option-selected,
|
|
949
|
-
.p-select-option.p-select-option-selected {
|
|
950
|
-
background-color: var(--first) !important;
|
|
951
|
-
color: #ffffff !important;
|
|
952
|
-
|
|
953
|
-
&.p-focus {
|
|
954
|
-
background-color: var(--first) !important;
|
|
955
|
-
color: #ffffff !important;
|
|
956
|
-
}
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
// PrimeNG Autocomplete option selected (for p-autocomplete components)
|
|
960
|
-
.p-autocomplete-option-selected {
|
|
961
|
-
background-color: var(--first) !important;
|
|
962
|
-
color: #ffffff !important;
|
|
963
|
-
|
|
964
|
-
&.p-focus {
|
|
965
|
-
background-color: var(--first) !important;
|
|
966
|
-
color: #ffffff !important;
|
|
967
|
-
}
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
// PrimeNG Chip/Token styles (for autocomplete chips)
|
|
971
|
-
.p-chip,
|
|
972
|
-
.p-autocomplete-token,
|
|
973
|
-
p-chip {
|
|
974
|
-
background-color: var(--first) !important;
|
|
975
|
-
color: #ffffff !important;
|
|
976
|
-
|
|
977
|
-
.p-chip-remove-icon {
|
|
978
|
-
color: #ffffff !important;
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
// PrimeNG Autocomplete dropdown button
|
|
983
|
-
.p-autocomplete-dropdown,
|
|
984
|
-
button.p-autocomplete-dropdown {
|
|
985
|
-
background-color: var(--first) !important;
|
|
986
|
-
border-color: var(--first) !important;
|
|
987
|
-
color: #ffffff !important;
|
|
988
|
-
|
|
989
|
-
svg,
|
|
990
|
-
.p-icon,
|
|
991
|
-
i {
|
|
992
|
-
color: #ffffff !important;
|
|
993
|
-
fill: #ffffff !important;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
&:hover {
|
|
997
|
-
background-color: var(--first) !important;
|
|
998
|
-
border-color: var(--first) !important;
|
|
999
|
-
}
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
// PrimeNG Autocomplete input border color
|
|
1003
|
-
.p-autocomplete {
|
|
1004
|
-
.p-autocomplete-input-multiple,
|
|
1005
|
-
.p-inputtext {
|
|
1006
|
-
&:hover {
|
|
1007
|
-
border-color: var(--first) !important;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
&:focus,
|
|
1011
|
-
&.p-focus {
|
|
1012
|
-
border-color: var(--first) !important;
|
|
1013
|
-
box-shadow: 0 0 0 0.2rem rgba(23, 105, 225, 0.25) !important;
|
|
1014
|
-
}
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
&:not(.p-disabled).p-focus .p-autocomplete-input-multiple,
|
|
1018
|
-
&:not(.p-disabled):hover .p-autocomplete-input-multiple {
|
|
1019
|
-
border-color: var(--first) !important;
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
// PrimeNG Multiselect option selected (for p-multiselect components)
|
|
1024
|
-
.p-multiselect-option-selected {
|
|
1025
|
-
background-color: var(--first) !important;
|
|
1026
|
-
color: #ffffff !important;
|
|
1027
|
-
|
|
1028
|
-
&.p-focus {
|
|
1029
|
-
background-color: var(--first) !important;
|
|
1030
|
-
color: #ffffff !important;
|
|
1031
|
-
}
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
// PrimeNG Checkbox checked (for multiselect checkboxes)
|
|
1035
|
-
.p-checkbox-checked .p-checkbox-box,
|
|
1036
|
-
.p-checkbox.p-checkbox-checked .p-checkbox-box {
|
|
1037
|
-
background-color: var(--first) !important;
|
|
1038
|
-
border-color: var(--first) !important;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
// PrimeNG Tab menu item active
|
|
1042
|
-
.p-tabmenuitem-active {
|
|
1043
|
-
background-color: var(--tabs_bg) !important;
|
|
1044
|
-
color: var(--tabs_text) !important;
|
|
1045
|
-
|
|
1046
|
-
a,
|
|
1047
|
-
.p-menuitem-link {
|
|
1048
|
-
background-color: var(--tabs_bg) !important;
|
|
1049
|
-
color: var(--tabs_text) !important;
|
|
1050
|
-
}
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
// PrimeNG Paginator page selected
|
|
1054
|
-
.p-paginator-page.p-paginator-page-selected,
|
|
1055
|
-
.p-paginator-page.p-highlight {
|
|
1056
|
-
background-color: var(--tabs_bg) !important;
|
|
1057
|
-
border-color: var(--tabs_bg) !important;
|
|
1058
|
-
color: var(--tabs_text) !important;
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
// PrimeNG Datepicker day selected - direct global style
|
|
1062
|
-
.p-datepicker-day-selected {
|
|
1063
|
-
background-color: var(--first) !important;
|
|
1064
|
-
color: #ffffff !important;
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
.p-datepicker {
|
|
1068
|
-
table {
|
|
1069
|
-
td {
|
|
1070
|
-
span.p-datepicker-day-selected,
|
|
1071
|
-
&.p-datepicker-day-selected > span {
|
|
1072
|
-
background-color: var(--first) !important;
|
|
1073
|
-
color: #ffffff !important;
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
.list-action {
|
|
1080
|
-
width: max-content !important;
|
|
1081
|
-
@media (max-width: 425px) {
|
|
1082
|
-
width: auto !important; // Override for mobile
|
|
1083
|
-
}
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.p-multiselect-filter {
|
|
1087
|
-
border-color: var(--tabs_bg) !important; /* Change to your custom color */
|
|
1088
|
-
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|
|
1089
|
-
outline: none !important; /* Keep the outline removed */
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
.p-multiselect:not(.p-disabled).p-focus {
|
|
1093
|
-
border-color: var(--tabs_bg) !important;
|
|
1094
|
-
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important;
|
|
1095
|
-
outline: none !important;
|
|
1096
|
-
}
|
|
1097
|
-
.p-dropdown:not(.p-disabled).p-focus {
|
|
1098
|
-
border-color: var(--tabs_bg) !important; /* Change to your custom color */
|
|
1099
|
-
box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
|
|
1100
|
-
outline: none !important; /* Keep the outline removed */
|
|
1101
|
-
}
|
|
1102
|
-
.ql-editor li,
|
|
1103
|
-
p {
|
|
1104
|
-
font-size: 17px;
|
|
1105
|
-
}
|
|
1106
|
-
.ql-editor ol {
|
|
1107
|
-
padding-left: 0.75em !important;
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
.ql-editor ul,
|
|
1111
|
-
.ql-editor ol {
|
|
1112
|
-
margin-top: 1rem;
|
|
1113
|
-
margin-bottom: 0.5rem;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.ql-editor {
|
|
1117
|
-
li > .ql-ui::before {
|
|
1118
|
-
font-size: 2rem; /* you can adjust size here */
|
|
1119
|
-
line-height: 1;
|
|
1120
|
-
position: relative;
|
|
1121
|
-
top: 0.1rem;
|
|
1122
|
-
}
|
|
1123
|
-
ul {
|
|
1124
|
-
padding-left: 20px; /* instead of default 40px */
|
|
1125
|
-
}
|
|
1126
|
-
li.ql-indent-1 {
|
|
1127
|
-
padding-left: 3.6rem !important;
|
|
1128
|
-
.ql-ui::before {
|
|
1129
|
-
font-size: 1.1rem;
|
|
1130
|
-
list-style-type: circle;
|
|
1131
|
-
top: -0.1rem;
|
|
1132
|
-
position: relative;
|
|
1133
|
-
content: '\25CB' !important;
|
|
1134
|
-
right: 0.15rem;
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
li.ql-indent-2 {
|
|
1139
|
-
padding-left: 4.6rem !important;
|
|
1140
|
-
top: -0.1rem;
|
|
1141
|
-
.ql-ui::before {
|
|
1142
|
-
font-size: 1.1rem;
|
|
1143
|
-
list-style-type: circle;
|
|
1144
|
-
top: -0.1rem;
|
|
1145
|
-
position: relative;
|
|
1146
|
-
content: '\25CB' !important;
|
|
1147
|
-
right: 0.15rem;
|
|
1148
|
-
}
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
li.ql-indent-3 {
|
|
1152
|
-
padding-left: 5.6rem !important;
|
|
1153
|
-
top: -0.1rem;
|
|
1154
|
-
.ql-ui::before {
|
|
1155
|
-
font-size: 1.1rem;
|
|
1156
|
-
list-style-type: circle;
|
|
1157
|
-
top: -0.1rem;
|
|
1158
|
-
position: relative;
|
|
1159
|
-
content: '\25CB' !important;
|
|
1160
|
-
right: 0.15rem;
|
|
1161
|
-
}
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
li.ql-indent-4 {
|
|
1165
|
-
padding-left: 6.6rem !important;
|
|
1166
|
-
top: -0.1rem;
|
|
1167
|
-
.ql-ui::before {
|
|
1168
|
-
font-size: 1.1rem;
|
|
1169
|
-
list-style-type: circle;
|
|
1170
|
-
top: -0.1rem;
|
|
1171
|
-
position: relative;
|
|
1172
|
-
content: '\25CB' !important;
|
|
1173
|
-
right: 0.15rem;
|
|
1174
|
-
}
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
.ql-editor ul {
|
|
1179
|
-
padding-left: 1.2rem; /* reduce from default ~2.5rem */
|
|
1180
|
-
margin-left: 0;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.ql-editor ul li {
|
|
1184
|
-
padding-left: 0.3rem; /* optional: less gap between bullet and text */
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
.ql-editor {
|
|
1188
|
-
line-height: 1.7 !important;
|
|
1189
|
-
|
|
1190
|
-
p,
|
|
1191
|
-
li,
|
|
1192
|
-
h1,
|
|
1193
|
-
h2,
|
|
1194
|
-
h3,
|
|
1195
|
-
h4,
|
|
1196
|
-
h5,
|
|
1197
|
-
h6,
|
|
1198
|
-
blockquote,
|
|
1199
|
-
pre {
|
|
1200
|
-
line-height: inherit; // ensures all block types follow 1.6
|
|
1201
|
-
}
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
.quill-container {
|
|
1205
|
-
max-width: 1000px;
|
|
1206
|
-
width: 100%;
|
|
1207
|
-
}
|
|
1208
|
-
|
|
1209
|
-
.content-quill-wrapper {
|
|
1210
|
-
margin: 0 auto;
|
|
1211
|
-
max-width: 1000px;
|
|
1212
|
-
background: map-get($white-color, base);
|
|
1213
|
-
border: 1px solid rgb(238, 238, 238);
|
|
1214
|
-
|
|
1215
|
-
.content-quill-box {
|
|
1216
|
-
padding: 3.5rem 3rem 3rem;
|
|
1217
|
-
}
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
@media only screen and (max-width: 1024px) {
|
|
1221
|
-
.content-quill-wrapper {
|
|
1222
|
-
padding: 1rem;
|
|
1223
|
-
background: map-get($white-color, base);
|
|
1224
|
-
|
|
1225
|
-
.content-quill-box {
|
|
1226
|
-
padding: 1rem;
|
|
1227
|
-
}
|
|
1228
|
-
}
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
@media only screen and (max-width: 767px) {
|
|
1232
|
-
.content-quill-wrapper {
|
|
1233
|
-
padding: 0.5rem;
|
|
1234
|
-
background: map-get($white-color, base);
|
|
1235
|
-
|
|
1236
|
-
.content-quill-box {
|
|
1237
|
-
padding: 0.5rem;
|
|
1238
|
-
}
|
|
1239
|
-
}
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.expected-mrr,
|
|
1243
|
-
.mrr-header {
|
|
1244
|
-
filter: saturate(0.5);
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
/* Specific styles for .expected-mrr */
|
|
1248
|
-
.expected-mrr {
|
|
1249
|
-
background-color: #d8e8f1 !important;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.month-quarter-text {
|
|
1253
|
-
color: green;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
.hopscotch-title {
|
|
1257
|
-
text-align: center !important;
|
|
1258
|
-
margin-bottom: 20px !important;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.hopscotch-title h2 {
|
|
1262
|
-
margin: 0;
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
|
-
.hopscotch-content {
|
|
1266
|
-
text-align: center;
|
|
1267
|
-
padding: 20px;
|
|
1268
|
-
margin: 0 !important;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.hopscotch-content img {
|
|
1272
|
-
width: 150px;
|
|
1273
|
-
margin: 20px 0;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.hopscotch-content p {
|
|
1277
|
-
font-size: 16px;
|
|
1278
|
-
color: #555;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
.hopscotch-step-title {
|
|
1282
|
-
text-align: left;
|
|
1283
|
-
margin-bottom: 15px;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
.hopscotch-step-content {
|
|
1287
|
-
padding: 20px;
|
|
1288
|
-
text-align: left !important;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.hopscotch-step-content p {
|
|
1292
|
-
font-size: 14px;
|
|
1293
|
-
color: #555;
|
|
1294
|
-
margin-bottom: 10px;
|
|
1295
|
-
text-align: left !important;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.left-field-tooltip {
|
|
1299
|
-
right: -150px !important;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
.left-info-circle .tooltiptext::after {
|
|
1303
|
-
left: 45px !important;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
.md-drppicker .btn {
|
|
1307
|
-
background-color: var(--tabs_bg) !important;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
.md-drppicker .ranges ul li button.active {
|
|
1311
|
-
background-color: var(--tabs_bg) !important;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
.md-drppicker td.active,
|
|
1315
|
-
.md-drppicker td.active:hover {
|
|
1316
|
-
background-color: var(--tabs_bg) !important;
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
.sign-header-btn {
|
|
1320
|
-
&:hover {
|
|
1321
|
-
border: 1px solid;
|
|
1322
|
-
box-shadow: none !important;
|
|
1323
|
-
border-color: var(--first) !important;
|
|
1324
|
-
}
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
::ng-deep .dropdown-item.active {
|
|
1328
|
-
background-color: red !important;
|
|
1329
|
-
color: white !important;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
.product-header-color {
|
|
1333
|
-
color: rgb(24, 37, 39) !important;
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
@media (min-width: 991px) {
|
|
1337
|
-
.section-outer {
|
|
1338
|
-
padding-top: 60px !important;
|
|
1339
|
-
padding-bottom: 60px !important;
|
|
1340
|
-
}
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.view-all {
|
|
1344
|
-
font-size: 1.5rem;
|
|
1345
|
-
font-weight: 600;
|
|
1346
|
-
color: var(--titles) !important;
|
|
1347
|
-
text-decoration: none;
|
|
1348
|
-
margin-bottom: 2.5rem;
|
|
1349
|
-
|
|
1350
|
-
&:hover {
|
|
1351
|
-
color: var(--first) !important;
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
.section-heading {
|
|
1356
|
-
font-size: 3rem !important;
|
|
1357
|
-
font-weight: 300 !important;
|
|
1358
|
-
color: var(--text-color, black);
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
.resource-header {
|
|
1362
|
-
.navbar-nav {
|
|
1363
|
-
.nav-item {
|
|
1364
|
-
.nav-link {
|
|
1365
|
-
color: white;
|
|
1366
|
-
font-size: 18px;
|
|
1367
|
-
font-weight: 500;
|
|
1368
|
-
letter-spacing: 1px;
|
|
1369
|
-
padding: 1.1em 1em !important;
|
|
1370
|
-
}
|
|
1371
|
-
}
|
|
1372
|
-
}
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
.domain-edit-icon {
|
|
1376
|
-
bottom: 20px;
|
|
1377
|
-
right: 20px;
|
|
1378
|
-
cursor: pointer;
|
|
1379
|
-
z-index: 5;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.in-page-edit-icon {
|
|
1383
|
-
font-family: 'Font Awesome 6 Pro', sans-serif !important;
|
|
1384
|
-
font-size: 1.5rem;
|
|
1385
|
-
vertical-align: middle;
|
|
1386
|
-
color: black;
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
.in-page-trash-icon,
|
|
1390
|
-
.in-page-bars-icon {
|
|
1391
|
-
font-family: 'Font Awesome 6 Pro', sans-serif !important;
|
|
1392
|
-
font-size: 1.1rem;
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
.trial-iframe-container {
|
|
1396
|
-
min-height: 550px;
|
|
1397
534
|
}
|