@posiwise/core-styles 1.0.10 → 1.0.12
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/app.scss +10 -7
- package/package.json +9 -9
- package/scss/_dynamic-styles.scss +155 -76
- package/scss/_public-pages.scss +4 -4
- package/scss/_shared.scss +3 -3
- package/scss/_variables.scss +5 -5
- package/scss/common/landing-page-a/landing-page-style-1.scss +5 -4
- package/scss/common/landing-page-b/banner.scss +2 -2
- package/scss/common/landing-page-b/contact-us.scss +2 -2
- package/scss/common/landing-page-b/explainer.scss +3 -3
- package/scss/common/landing-page-b/explainer2.scss +3 -3
- package/scss/common/landing-page-b/header.scss +10 -4
- package/scss/common/landing-page-b/landing-page-style-2.scss +1 -1
- package/scss/custom-bootstrap/_badge.scss +96 -95
- package/scss/custom-bootstrap/_bootstrap_variables.scss +3 -1
- package/scss/custom-bootstrap/_card.scss +14 -5
- package/scss/custom-bootstrap/_forms.scss +15 -13
- package/scss/custom-bootstrap/_popover.scss +3 -2
- package/scss/custom-bootstrap/_reboot.scss +5 -3
- package/scss/custom-bootstrap/_type.scss +7 -6
- package/scss/dashboard/_bootstrap-social.scss +11 -7
- package/scss/dashboard/_chat.scss +6 -4
- package/scss/dashboard/_components.scss +15 -14
- package/scss/dashboard/_horizontal-timeline.scss +15 -11
- package/scss/dashboard/_icons.scss +2 -1
- package/scss/dashboard/_misc.scss +11 -10
- package/scss/dashboard/_palette.scss +36 -26
- package/scss/dashboard/_search.scss +2 -1
- package/scss/dashboard/_sidebar-content.scss +14 -12
- package/scss/dashboard/_tabs.scss +31 -15
- package/scss/dashboard/_vertical-timeline.scss +8 -4
- package/scss/dashboard/mixins/_buttons.scss +9 -8
- package/scss/dashboard/mixins/_typography.scss +3 -2
- package/scss/dashboard/mixins/_utilities.scss +7 -6
- package/scss/plugins/_plugin-nouislider.scss +15 -12
- package/scss/plugins/perfect-scrollbar/_mixins.scss +21 -18
- package/scss/plugins/perfect-scrollbar/_ps-custom.scss +5 -4
- package/scss/public-pages/_buttons.scss +2 -1
- package/scss/public-pages/_layout.scss +2 -0
- package/scss/public-pages/mixins/_buttons.scss +4 -2
- package/scss/shared/_prime-ng-tables.scss +2 -0
- package/scss/shared/_prime-ng.scss +36 -4
- package/scss/variables/_app-colors-variables.scss +61 -60
- package/scss/variables/_primeng-variables.scss +5 -2
package/app.scss
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
////////////////////////////
|
|
2
2
|
// Font styling
|
|
3
3
|
///////////////////////////
|
|
4
|
-
@import '../core-fonts/feather/style.min.css';
|
|
5
|
-
@import '../core-fonts/simple-line-icons/style.css';
|
|
6
|
-
@import 'css/google-fonts.css';
|
|
7
|
-
|
|
8
4
|
////////////////////////////
|
|
9
5
|
// Main Styling files
|
|
10
6
|
///////////////////////////
|
|
@@ -29,10 +25,20 @@
|
|
|
29
25
|
// Plugins scss => Here we load the styles for the loaded plugins
|
|
30
26
|
@import 'scss/plugins';
|
|
31
27
|
|
|
28
|
+
// dynamic stylesheet
|
|
29
|
+
@import 'scss/dynamic-styles';
|
|
30
|
+
|
|
32
31
|
////////////////////////////
|
|
33
32
|
// Other
|
|
34
33
|
///////////////////////////
|
|
35
34
|
|
|
35
|
+
////////////////////////////
|
|
36
|
+
// Font styling
|
|
37
|
+
///////////////////////////
|
|
38
|
+
@import '../core-fonts/feather/style.min.css';
|
|
39
|
+
@import '../core-fonts/simple-line-icons/style.css';
|
|
40
|
+
@import 'css/google-fonts.css';
|
|
41
|
+
|
|
36
42
|
// Loading quill
|
|
37
43
|
@import 'quill/dist/quill.core.css';
|
|
38
44
|
@import 'quill/dist/quill.bubble.css';
|
|
@@ -40,6 +46,3 @@
|
|
|
40
46
|
|
|
41
47
|
// Loading ui-switch
|
|
42
48
|
@import 'ngx-ui-switch/ui-switch.component';
|
|
43
|
-
|
|
44
|
-
// dynamic stylesheet
|
|
45
|
-
@import 'scss/dynamic-styles';
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"name": "@posiwise/core-styles",
|
|
3
|
+
"version": "1.0.12",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"author": "",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"description": ""
|
|
11
11
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use 'variables' as *;
|
|
2
3
|
|
|
3
4
|
:root {
|
|
4
5
|
--titles: rgb(34 34 34);
|
|
@@ -11,9 +12,17 @@
|
|
|
11
12
|
--second: rgb(54 194 131);
|
|
12
13
|
--text: rgb(34 34 34);
|
|
13
14
|
|
|
14
|
-
// PrimeNG
|
|
15
|
-
--p-datepicker-dropdown-
|
|
16
|
-
--p-datepicker-
|
|
15
|
+
// PrimeNG Datepicker: solid primary trigger, white icon (input-group style)
|
|
16
|
+
--p-datepicker-dropdown-background: var(--first);
|
|
17
|
+
--p-datepicker-dropdown-border-color: var(--first);
|
|
18
|
+
--p-datepicker-dropdown-color: #ffffff;
|
|
19
|
+
--p-datepicker-dropdown-hover-background: var(--tabs_sub_bg);
|
|
20
|
+
--p-datepicker-dropdown-hover-border-color: var(--tabs_sub_bg);
|
|
21
|
+
--p-datepicker-dropdown-hover-color: #ffffff;
|
|
22
|
+
--p-datepicker-dropdown-active-background: var(--tabs_sub_bg);
|
|
23
|
+
--p-datepicker-dropdown-active-border-color: var(--tabs_sub_bg);
|
|
24
|
+
--p-datepicker-dropdown-active-color: #ffffff;
|
|
25
|
+
--p-datepicker-trigger-color: #ffffff;
|
|
17
26
|
--p-button-text-color: var(--first);
|
|
18
27
|
|
|
19
28
|
// PrimeNG Select option selected CSS variables override
|
|
@@ -166,8 +175,8 @@
|
|
|
166
175
|
--p-tabs-tab-active-background: var(--tabs_bg);
|
|
167
176
|
--p-tabs-tab-active-color: var(--tabs_text);
|
|
168
177
|
--p-tabs-tab-color: var(--tabs_bg);
|
|
169
|
-
/*
|
|
170
|
-
--p-tabs-active-bar-background:
|
|
178
|
+
/* Ink bar hidden — solid active tab + full-width border-bottom only (avoids stepped line with flex gap) */
|
|
179
|
+
--p-tabs-active-bar-background: transparent;
|
|
171
180
|
|
|
172
181
|
.p-tablist {
|
|
173
182
|
border-bottom: 4px solid var(--tabs_bg);
|
|
@@ -176,7 +185,7 @@
|
|
|
176
185
|
background: transparent !important;
|
|
177
186
|
}
|
|
178
187
|
.p-tablist-active-bar {
|
|
179
|
-
|
|
188
|
+
display: none !important;
|
|
180
189
|
}
|
|
181
190
|
.p-tab {
|
|
182
191
|
color: var(--tabs_bg);
|
|
@@ -407,8 +416,21 @@
|
|
|
407
416
|
}
|
|
408
417
|
}
|
|
409
418
|
|
|
410
|
-
.p-autocomplete-input-multiple
|
|
411
|
-
|
|
419
|
+
.p-autocomplete-input-multiple {
|
|
420
|
+
&:hover {
|
|
421
|
+
border-color: var(--first) !important;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
&:focus,
|
|
425
|
+
&.p-focus,
|
|
426
|
+
&:focus-within {
|
|
427
|
+
border-color: var(--first) !important;
|
|
428
|
+
// One ring only: theme + this box-shadow read as a double “line” under the field
|
|
429
|
+
box-shadow: none !important;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.p-autocomplete-input:not(.p-autocomplete-input-multiple) {
|
|
412
434
|
&:hover {
|
|
413
435
|
border-color: var(--first) !important;
|
|
414
436
|
}
|
|
@@ -416,7 +438,22 @@
|
|
|
416
438
|
&:focus,
|
|
417
439
|
&.p-focus {
|
|
418
440
|
border-color: var(--first) !important;
|
|
419
|
-
box-shadow:
|
|
441
|
+
box-shadow: none !important;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
// PrimeNG 21: chip textbox is input.p-autocomplete-input (not always .p-inputtext)
|
|
446
|
+
.p-autocomplete-input-chip input,
|
|
447
|
+
.p-autocomplete-input-chip .p-inputtext,
|
|
448
|
+
.p-autocomplete-input-chip .p-autocomplete-input {
|
|
449
|
+
border: 0 !important;
|
|
450
|
+
box-shadow: none !important;
|
|
451
|
+
|
|
452
|
+
&:focus,
|
|
453
|
+
&.p-focus {
|
|
454
|
+
border: 0 !important;
|
|
455
|
+
box-shadow: none !important;
|
|
456
|
+
outline: none !important;
|
|
420
457
|
}
|
|
421
458
|
}
|
|
422
459
|
}
|
|
@@ -559,9 +596,9 @@
|
|
|
559
596
|
color: #fff !important;
|
|
560
597
|
}
|
|
561
598
|
.hopscotch-nav-button.prev {
|
|
562
|
-
background: map
|
|
563
|
-
background-color: map
|
|
564
|
-
border-color: map
|
|
599
|
+
background: map.get($grey, darken-1) !important;
|
|
600
|
+
background-color: map.get($grey, darken-1) !important;
|
|
601
|
+
border-color: map.get($grey, darken-1) !important;
|
|
565
602
|
color: #fff !important;
|
|
566
603
|
text-shadow: none !important;
|
|
567
604
|
}
|
|
@@ -740,12 +777,11 @@
|
|
|
740
777
|
text-transform: uppercase;
|
|
741
778
|
}
|
|
742
779
|
|
|
743
|
-
.pw-label-style.info-circle {
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
780
|
+
.pw-label-style.info-circle {
|
|
781
|
+
&::after {
|
|
782
|
+
top: -7px;
|
|
783
|
+
}
|
|
747
784
|
}
|
|
748
|
-
}
|
|
749
785
|
|
|
750
786
|
.toast-container {
|
|
751
787
|
position: fixed !important;
|
|
@@ -825,34 +861,47 @@
|
|
|
825
861
|
}
|
|
826
862
|
}
|
|
827
863
|
|
|
828
|
-
// PrimeNG
|
|
829
|
-
.p-
|
|
864
|
+
// PrimeNG Datepicker trigger: solid primary + white calendar icon (attached to input)
|
|
865
|
+
.p-datepicker {
|
|
830
866
|
.p-datepicker-trigger,
|
|
831
867
|
.p-datepicker-dropdown {
|
|
832
|
-
background-color:
|
|
833
|
-
border
|
|
834
|
-
color:
|
|
868
|
+
background-color: var(--first) !important;
|
|
869
|
+
border: 1px solid var(--first) !important;
|
|
870
|
+
color: #ffffff !important;
|
|
835
871
|
|
|
836
872
|
&:hover {
|
|
837
|
-
background-color:
|
|
838
|
-
border-color: var(--
|
|
873
|
+
background-color: var(--tabs_sub_bg) !important;
|
|
874
|
+
border-color: var(--tabs_sub_bg) !important;
|
|
875
|
+
color: #ffffff !important;
|
|
839
876
|
}
|
|
840
877
|
|
|
841
|
-
// Icon/SVG color - target all possible icon elements
|
|
842
878
|
svg,
|
|
843
879
|
.p-icon,
|
|
844
880
|
i,
|
|
845
881
|
calendaricon {
|
|
846
|
-
color:
|
|
847
|
-
fill:
|
|
882
|
+
color: #ffffff !important;
|
|
883
|
+
fill: #ffffff !important;
|
|
848
884
|
}
|
|
849
885
|
|
|
850
|
-
// Target SVG paths and elements specifically
|
|
851
886
|
svg path,
|
|
852
887
|
svg circle,
|
|
853
888
|
svg rect,
|
|
854
889
|
svg polygon,
|
|
855
890
|
svg * {
|
|
891
|
+
fill: #ffffff !important;
|
|
892
|
+
stroke: #ffffff !important;
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.p-datepicker-input-icon-container {
|
|
897
|
+
background: transparent !important;
|
|
898
|
+
color: var(--first) !important;
|
|
899
|
+
|
|
900
|
+
.p-datepicker-input-icon,
|
|
901
|
+
.p-icon,
|
|
902
|
+
svg,
|
|
903
|
+
svg * {
|
|
904
|
+
color: var(--first) !important;
|
|
856
905
|
fill: var(--first) !important;
|
|
857
906
|
stroke: var(--first) !important;
|
|
858
907
|
}
|
|
@@ -916,60 +965,50 @@
|
|
|
916
965
|
}
|
|
917
966
|
}
|
|
918
967
|
|
|
919
|
-
//
|
|
920
|
-
p-
|
|
921
|
-
.p-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
color: white !important;
|
|
928
|
-
|
|
929
|
-
svg,
|
|
930
|
-
.p-icon,
|
|
931
|
-
i,
|
|
932
|
-
calendaricon,
|
|
933
|
-
* {
|
|
934
|
-
color: white !important;
|
|
935
|
-
fill: white !important;
|
|
936
|
-
stroke: white !important;
|
|
937
|
-
}
|
|
968
|
+
// Datepicker trigger (global): solid primary + white icon — wins over Aura surface tokens
|
|
969
|
+
button.p-datepicker-trigger,
|
|
970
|
+
button.p-datepicker-dropdown,
|
|
971
|
+
p-datepicker .p-datepicker-dropdown,
|
|
972
|
+
.p-datepicker .p-datepicker-dropdown {
|
|
973
|
+
background-color: var(--first) !important;
|
|
974
|
+
border: 1px solid var(--first) !important;
|
|
975
|
+
color: #ffffff !important;
|
|
938
976
|
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
svg * {
|
|
944
|
-
fill: white !important;
|
|
945
|
-
stroke: white !important;
|
|
946
|
-
}
|
|
977
|
+
&:hover {
|
|
978
|
+
background-color: var(--tabs_sub_bg) !important;
|
|
979
|
+
border-color: var(--tabs_sub_bg) !important;
|
|
980
|
+
color: #ffffff !important;
|
|
947
981
|
}
|
|
948
|
-
}
|
|
949
982
|
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
color: var(--first) !important;
|
|
983
|
+
&:active {
|
|
984
|
+
background-color: var(--tabs_sub_bg) !important;
|
|
985
|
+
border-color: var(--tabs_sub_bg) !important;
|
|
986
|
+
}
|
|
955
987
|
|
|
956
988
|
svg,
|
|
957
989
|
.p-icon,
|
|
958
990
|
i,
|
|
959
|
-
calendaricon
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
stroke: var(--first) !important;
|
|
991
|
+
calendaricon {
|
|
992
|
+
color: #ffffff !important;
|
|
993
|
+
fill: #ffffff !important;
|
|
994
|
+
stroke: #ffffff !important;
|
|
964
995
|
}
|
|
965
996
|
|
|
966
997
|
svg path,
|
|
998
|
+
svg circle,
|
|
999
|
+
svg rect,
|
|
1000
|
+
svg polygon,
|
|
967
1001
|
svg * {
|
|
968
|
-
fill:
|
|
969
|
-
stroke:
|
|
1002
|
+
fill: #ffffff !important;
|
|
1003
|
+
stroke: #ffffff !important;
|
|
970
1004
|
}
|
|
971
1005
|
}
|
|
972
1006
|
|
|
1007
|
+
// Adjacent input + dropdown: Prime removes border-start on dropdown; keep seam clean
|
|
1008
|
+
.p-datepicker:has(.p-datepicker-dropdown) .p-datepicker-dropdown {
|
|
1009
|
+
border-inline-start: 0 none !important;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
973
1012
|
.body-quill {
|
|
974
1013
|
border-width: 0 !important;
|
|
975
1014
|
}
|
|
@@ -1055,10 +1094,22 @@ button.p-autocomplete-dropdown {
|
|
|
1055
1094
|
}
|
|
1056
1095
|
}
|
|
1057
1096
|
|
|
1058
|
-
// PrimeNG Autocomplete
|
|
1097
|
+
// PrimeNG Autocomplete: primary border on outer list only; no extra box-shadow (avoids double line with theme)
|
|
1059
1098
|
.p-autocomplete {
|
|
1060
|
-
.p-autocomplete-input-multiple
|
|
1061
|
-
|
|
1099
|
+
.p-autocomplete-input-multiple {
|
|
1100
|
+
&:hover {
|
|
1101
|
+
border-color: var(--first) !important;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
&:focus,
|
|
1105
|
+
&.p-focus,
|
|
1106
|
+
&:focus-within {
|
|
1107
|
+
border-color: var(--first) !important;
|
|
1108
|
+
box-shadow: none !important;
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.p-autocomplete-input:not(.p-autocomplete-input-multiple) {
|
|
1062
1113
|
&:hover {
|
|
1063
1114
|
border-color: var(--first) !important;
|
|
1064
1115
|
}
|
|
@@ -1066,13 +1117,41 @@ button.p-autocomplete-dropdown {
|
|
|
1066
1117
|
&:focus,
|
|
1067
1118
|
&.p-focus {
|
|
1068
1119
|
border-color: var(--first) !important;
|
|
1069
|
-
box-shadow:
|
|
1120
|
+
box-shadow: none !important;
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.p-autocomplete-input-chip input,
|
|
1125
|
+
.p-autocomplete-input-chip .p-inputtext,
|
|
1126
|
+
.p-autocomplete-input-chip .p-autocomplete-input {
|
|
1127
|
+
border: 0 !important;
|
|
1128
|
+
box-shadow: none !important;
|
|
1129
|
+
|
|
1130
|
+
&:focus,
|
|
1131
|
+
&.p-focus {
|
|
1132
|
+
border: 0 !important;
|
|
1133
|
+
box-shadow: none !important;
|
|
1134
|
+
outline: none !important;
|
|
1070
1135
|
}
|
|
1071
1136
|
}
|
|
1072
1137
|
|
|
1073
1138
|
&:not(.p-disabled).p-focus .p-autocomplete-input-multiple,
|
|
1074
1139
|
&:not(.p-disabled):hover .p-autocomplete-input-multiple {
|
|
1075
1140
|
border-color: var(--first) !important;
|
|
1141
|
+
box-shadow: none !important;
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
// Multiselect autocomplete + dropdown: full height, no inset shadow reading as a horizontal rule under chips
|
|
1146
|
+
.p-autocomplete:has(.p-autocomplete-dropdown) {
|
|
1147
|
+
align-items: stretch;
|
|
1148
|
+
|
|
1149
|
+
.p-autocomplete-input-multiple {
|
|
1150
|
+
box-shadow: none !important;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.p-autocomplete-dropdown {
|
|
1154
|
+
align-self: stretch;
|
|
1076
1155
|
}
|
|
1077
1156
|
}
|
|
1078
1157
|
|
|
@@ -1268,7 +1347,7 @@ p {
|
|
|
1268
1347
|
.content-quill-wrapper {
|
|
1269
1348
|
margin: 0 auto;
|
|
1270
1349
|
max-width: 1000px;
|
|
1271
|
-
background: map
|
|
1350
|
+
background: map.get($white-color, base);
|
|
1272
1351
|
border: 1px solid rgb(238, 238, 238);
|
|
1273
1352
|
|
|
1274
1353
|
.content-quill-box {
|
|
@@ -1279,7 +1358,7 @@ p {
|
|
|
1279
1358
|
@media only screen and (max-width: 1024px) {
|
|
1280
1359
|
.content-quill-wrapper {
|
|
1281
1360
|
padding: 1rem;
|
|
1282
|
-
background: map
|
|
1361
|
+
background: map.get($white-color, base);
|
|
1283
1362
|
|
|
1284
1363
|
.content-quill-box {
|
|
1285
1364
|
padding: 1rem;
|
|
@@ -1290,7 +1369,7 @@ p {
|
|
|
1290
1369
|
@media only screen and (max-width: 767px) {
|
|
1291
1370
|
.content-quill-wrapper {
|
|
1292
1371
|
padding: 0.5rem;
|
|
1293
|
-
background: map
|
|
1372
|
+
background: map.get($white-color, base);
|
|
1294
1373
|
|
|
1295
1374
|
.content-quill-box {
|
|
1296
1375
|
padding: 0.5rem;
|
package/scss/_public-pages.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Loading partials
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
2
|
+
@forward 'public-pages/layout';
|
|
3
|
+
@forward 'public-pages/buttons';
|
|
4
|
+
@forward 'public-pages/input-fields';
|
|
5
5
|
|
|
6
6
|
// Mixins
|
|
7
|
-
@
|
|
7
|
+
@forward 'public-pages/mixins/buttons';
|
package/scss/_shared.scss
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
1
|
+
@forward 'shared/prime-ng-tables';
|
|
2
|
+
@forward 'shared/prime-ng';
|
|
3
|
+
@forward 'shared/modal';
|
package/scss/_variables.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
1
|
+
@forward 'variables/generic-variables';
|
|
2
|
+
@forward 'variables/branding-variables';
|
|
3
|
+
@forward 'variables/dashboard-variables';
|
|
4
|
+
@forward 'variables/app-colors-variables';
|
|
5
|
+
@forward 'variables/primeng-variables';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '../../variables' as *;
|
|
2
3
|
|
|
3
4
|
.register {
|
|
4
5
|
background: rgb(255 255 255) url('/assets/img/landing-page/testimonial-bg.png') fixed center top;
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
padding-right: 15px;
|
|
54
55
|
|
|
55
56
|
h1 {
|
|
56
|
-
color: map
|
|
57
|
+
color: map.get($secondary, base);
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
h3 {
|
|
@@ -390,7 +391,7 @@ label {
|
|
|
390
391
|
}
|
|
391
392
|
|
|
392
393
|
50% {
|
|
393
|
-
color: map
|
|
394
|
+
color: map.get($secondary, base);
|
|
394
395
|
}
|
|
395
396
|
|
|
396
397
|
100% {
|
|
@@ -618,7 +619,7 @@ pw-signup-tabs-a {
|
|
|
618
619
|
.primary-header,
|
|
619
620
|
.blinking-text-wrapper {
|
|
620
621
|
h1 {
|
|
621
|
-
color: map
|
|
622
|
+
color: map.get($secondary, base);
|
|
622
623
|
}
|
|
623
624
|
|
|
624
625
|
h3 {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
1
|
+
@use 'variables/landing-page-new-variables' as *;
|
|
2
|
+
@use 'common/landing-page-b/landing-page-style-2' as *;
|
|
3
3
|
|
|
4
4
|
.contact-us-section {
|
|
5
5
|
background: url('/assets/img/products/trial/contact-us-bg.jpg') center;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
1
|
+
@use 'variables/landing-page-new-variables' as *;
|
|
2
|
+
@use 'common/landing-page-b/landing-page-style-2' as *;
|
|
3
|
+
@use 'public-pages/mixins/buttons' as *;
|
|
4
4
|
|
|
5
5
|
.product-explainer-section {
|
|
6
6
|
background-color: $bg-color-black-grey;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
1
|
+
@use 'variables/landing-page-new-variables' as *;
|
|
2
|
+
@use 'common/landing-page-b/landing-page-style-2' as *;
|
|
3
|
+
@use 'public-pages/mixins/buttons' as *;
|
|
4
4
|
|
|
5
5
|
.product-explainer-section {
|
|
6
6
|
background: $bg-color-blue;
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
1
|
+
@use 'variables/landing-page-new-variables' as *;
|
|
2
|
+
@use 'common/landing-page-b/landing-page-style-2' as *;
|
|
3
3
|
|
|
4
4
|
.navbar-custom-background {
|
|
5
5
|
background-color: rgb(0 0 0 / 50%);
|
|
6
6
|
box-shadow: 2px 2px 15px 2px rgb(0 0 0 / 12.2%);
|
|
7
|
-
transition:
|
|
7
|
+
transition:
|
|
8
|
+
width 2s,
|
|
9
|
+
height 2s,
|
|
10
|
+
-webkit-transform 2s;
|
|
8
11
|
|
|
9
12
|
/* Safari */
|
|
10
|
-
transition:
|
|
13
|
+
transition:
|
|
14
|
+
width 2s,
|
|
15
|
+
height 2s,
|
|
16
|
+
transform 2s background-color 0.5s ease;
|
|
11
17
|
z-index: 9999;
|
|
12
18
|
}
|
|
13
19
|
|