@posiwise/core-styles 1.0.0 → 1.0.2

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 (33) hide show
  1. package/app.scss +45 -0
  2. package/css/google-fonts.css +4 -1
  3. package/css/hopscotch.css +1 -1
  4. package/package.json +3 -3
  5. package/scss/_dashboard.scss +1 -1
  6. package/scss/_dynamic-styles.scss +873 -7
  7. package/scss/common/landing-page-a/landing-page-style-1.scss +7 -7
  8. package/scss/common/landing-page-b/banner.scss +8 -8
  9. package/scss/common/landing-page-b/contact-us.scss +4 -4
  10. package/scss/common/landing-page-b/explainer.scss +6 -6
  11. package/scss/common/landing-page-b/explainer2.scss +1 -1
  12. package/scss/common/landing-page-b/landing-page-style-2.scss +4 -3
  13. package/scss/custom-bootstrap/_badge.scss +35 -25
  14. package/scss/custom-bootstrap/_type.scss +7 -1
  15. package/scss/dashboard/_bootstrap-social.scss +25 -25
  16. package/scss/dashboard/_coming-soon.scss +1 -1
  17. package/scss/dashboard/_components.scss +1 -1
  18. package/scss/dashboard/_email.scss +7 -7
  19. package/scss/dashboard/_helper.scss +17 -7
  20. package/scss/dashboard/_icons.scss +7 -0
  21. package/scss/dashboard/_misc.scss +1 -1
  22. package/scss/dashboard/_palette.scss +284 -125
  23. package/scss/dashboard/_profile.scss +1 -1
  24. package/scss/dashboard/_tabs.scss +18 -0
  25. package/scss/dashboard/mixins/_utilities.scss +1 -1
  26. package/scss/dashboard/mixins/_vendor-prefixes.scss +2 -2
  27. package/scss/plugins/perfect-scrollbar/_variables.scss +1 -1
  28. package/scss/public-pages/_layout.scss +8 -1
  29. package/scss/shared/_prime-ng.scss +278 -180
  30. package/scss/variables/_app-colors-variables.scss +7 -1
  31. package/scss/variables/_branding-variables.scss +9 -7
  32. package/scss/variables/_generic-variables.scss +5 -5
  33. package/scss/variables/_primeng-variables.scss +38 -38
@@ -13,7 +13,7 @@ $black-color: (
13
13
 
14
14
  //////////////////////////////////////////////////////////////////
15
15
  // Main branding colors
16
- // Thse are the only ones that should be used in the dashboard
16
+ // These are the only ones that should be used in the dashboard
17
17
  //////////////////////////////////////////////////////////////////
18
18
 
19
19
  $primary: (
@@ -491,6 +491,12 @@ $colors: (
491
491
  'blue-grey': $blue-grey
492
492
  );
493
493
 
494
+ $branding-colors: (
495
+ 'branding-1': var(--first),
496
+ 'branding-2': var(--second),
497
+ 'branding-3': var(--third)
498
+ );
499
+
494
500
  // Map variable
495
501
  $gradient-colors: (
496
502
  gradient-indigo-light-blue: (
@@ -4,6 +4,7 @@
4
4
  --third: rgb(255 171 0);
5
5
  --text: rgb(34 34 34);
6
6
  --tabs_bg: rgb(23 105 225);
7
+ --tabs_sub_bg: rgb(70, 136, 236);
7
8
  --tabs_text: rgb(255 255 255);
8
9
  --titles: rgb(34 34 34);
9
10
  --sidebar_bg: rgb(0, 48, 63);
@@ -17,15 +18,15 @@
17
18
 
18
19
  // TO DO: We need to make sure that we use the same (then only one) font all over the public pages.
19
20
  // There are too many family definitions.
20
- // So, in css we should use someting like '$mainFontFamily' everywhere, so that when we change the $mainFontFamily here it will be updated all over the public pages.
21
+ // So, in css we should use something like '$mainFontFamily' everywhere, so that when we change the $mainFontFamily here it will be updated all over the public pages.
21
22
 
22
23
  $mainFontFamily: 'Roboto', sans-serif;
23
24
 
24
25
  // Following are unused but left as a reminder
25
- $familyLato: 'Lato', 'Helvetica Neue', arial, sans-serif;
26
- $familyRubkik: 'Rubik', 'Segoe UI', 'Roboto', 'Helvetica Neue', arial, sans-serif;
27
- $familyHelvetica: 'Helvetica Neue', helvetica, arial, sans-serif;
28
- $familyMontserrat: 'Montserrat', sans-serif;
26
+ $family-lato: 'Lato', 'Helvetica Neue', arial, sans-serif;
27
+ $family-rubkik: 'Rubik', 'Segoe UI', 'Roboto', 'Helvetica Neue', arial, sans-serif;
28
+ $family-helvetica: 'Helvetica Neue', helvetica, arial, sans-serif;
29
+ $family-montserrat: 'Montserrat', sans-serif;
29
30
  $familyRoboto: 'Roboto', sans-serif;
30
31
 
31
32
  //////////////////////////////////////////
@@ -73,16 +74,17 @@ $register-btn-color: rgb(46 50 56);
73
74
  /* DIVs styling begin here */
74
75
  //////////////////////////////////////////
75
76
 
76
- // Div backgrounds colros
77
+ // Div backgrounds colors
77
78
  $bg-color-lightest: rgb(255 255 255);
78
79
  $bg-color-light: rgb(248 248 248);
79
80
  $bg-color-main: rgb(248 248 248);
80
81
  $bg-color-dark: rgb(48 48 48);
81
82
  $bg-color-darkest: rgb(24 24 24);
82
- $bg-color-hilight: rgb(255 171 0);
83
+ $bg-color-highlight: rgb(255 171 0);
83
84
 
84
85
  /* tabs */
85
86
  $tabs-bg: var(--tabs_bg);
87
+ $tabs-sub-bg: var(--tabs_sub_bg);
86
88
  $tabs-text: var(--tabs_text);
87
89
 
88
90
  /* titles */
@@ -14,7 +14,7 @@ $social-behance: rgb(23 105 255);
14
14
 
15
15
  // New variables for social
16
16
  $reddit: rgb(239 247 255);
17
- $soundColoud: rgb(255 85 0);
17
+ $soundCloud: rgb(255 85 0);
18
18
  $tumblr: rgb(44 71 98);
19
19
  $vimeo: rgb(26 183 234);
20
20
  $vkFlat: rgb(88 126 163);
@@ -23,11 +23,11 @@ $btn-adn: rgb(216 122 104);
23
23
  $bitbucket: rgb(32 80 129);
24
24
  $dropBox: rgb(16 135 221);
25
25
  $flicker: rgb(255 0 132);
26
- $fourSquare: rgb(249 72 119);
26
+ $four-square: rgb(249 72 119);
27
27
  $github: rgb(68 68 68);
28
- $instaGram: rgb(63 114 155);
28
+ $instagram: rgb(63 114 155);
29
29
  $linkedIn: rgb(0 123 182);
30
- $micrSoft: rgb(38 114 236);
30
+ $microsoft: rgb(38 114 236);
31
31
  $odnoklassniki: rgb(244 115 28);
32
- $openId: rgb(247 147 30);
32
+ $open-id: rgb(247 147 30);
33
33
  $pinterest: rgb(203 32 39);
@@ -9,23 +9,23 @@ $anchorHover: rgb(26 81 168);
9
9
  $anchorActive: rgb(20 64 134);
10
10
 
11
11
  /* Prime page input field border color */
12
- $uiinputText: rgb(196 196 196);
12
+ $ui-input-text: rgb(196 196 196);
13
13
 
14
- /* Prime autocomplete tocken background color & color */
14
+ /* Prime autocomplete token background color & color */
15
15
  $tabColor: rgb(241 241 241);
16
- $autoCompletebk: rgb(246 246 246);
16
+ $auto-complete-bk: rgb(246 246 246);
17
17
 
18
18
  /* color */
19
19
  $autoColor: rgb(101 101 101);
20
20
 
21
- /* Prime autocomplete tocken icon background color */
22
- $autoCompleteicon: rgb(160 157 157);
21
+ /* Prime autocomplete token icon background color */
22
+ $autoCompleteIcon: rgb(160 157 157);
23
23
 
24
- /* Prime page error message backgroundm color , border color and color */
25
- $growlerrorMsg: rgb(255 132 116);
24
+ /* Prime page error message background color , border color and color */
25
+ $growl-error-msg: rgb(255 132 116);
26
26
 
27
27
  /* border */
28
- $growlerrorMsgbdr: rgb(255 51 24);
28
+ $growl-error-msg-bdr: rgb(255 51 24);
29
29
 
30
30
  /* color */
31
31
  $growlColor: rgb(55 9 9);
@@ -40,22 +40,22 @@ $toastIconClose: rgb(77 59 10);
40
40
  $toastIcon2: rgb(218 25 0);
41
41
 
42
42
  /* prime success message color and background color */
43
- $toastmsgSuccess: rgb(33 33 33);
43
+ $toast-msg-success: rgb(33 33 33);
44
44
 
45
45
  /* background-color */
46
- $toastmsgScessbg: map-get($primary, base);
46
+ $toast-msg-success-bg: map-get($primary, base);
47
47
 
48
48
  /* prime warning message color and border color */
49
- $toastmsgWarning: rgb(255 240 210);
49
+ $toast-msg-warning: rgb(255 240 210);
50
50
 
51
51
  /* border */
52
- $toastmsgWarnbdr: rgb(255 214 107);
52
+ $toast-msg-Warn-bdr: rgb(255 214 107);
53
53
 
54
54
  /* prime tabview icons, close button */
55
55
  $titleBarIcon: rgb(111 111 111);
56
56
 
57
57
  /* Prime page button border and carousel link */
58
- $carouselPagelink: rgb(50 50 50);
58
+ $carousel-page-link: rgb(50 50 50);
59
59
 
60
60
  /* Prime page tab view */
61
61
  $tabView: rgb(209 209 209);
@@ -64,7 +64,7 @@ $tabView: rgb(209 209 209);
64
64
  $paginationHover: rgb(234 234 234);
65
65
 
66
66
  /* Prime add on button background color */
67
- $inputGroundaddon: rgb(244 244 244);
67
+ $input-ground-addon: rgb(244 244 244);
68
68
 
69
69
  /* Placeholder Color */
70
70
  $placeHolder: rgb(102 102 102);
@@ -88,16 +88,16 @@ $datePickerBorder: rgb(166 166 166);
88
88
  $invalidInput: rgb(168 0 0);
89
89
 
90
90
  /* Auto complete input field background color */
91
- $autoCompletegrp: rgb(216 218 226);
91
+ $auto-complete-grp: rgb(216 218 226);
92
92
 
93
- /* Today's date and hightlight column */
93
+ /* Today's date and highlight column */
94
94
  $dateHighLight: rgb(208 208 208);
95
95
 
96
96
  /* Switch slider focus background-color and background and hove color */
97
97
  $enabledFocus: rgb(37 110 197);
98
98
 
99
99
  /* background and hover color */
100
- $inputSwitchSldr: rgb(66 136 220);
100
+ $input-switch-sldr: rgb(66 136 220);
101
101
 
102
102
  /* Warning button background-color and border-color */
103
103
  $buttonWarning: rgb(255 186 1);
@@ -109,16 +109,16 @@ $buttonSetColor: rgb(52 168 53);
109
109
  $buttonInfo: rgb(0 91 159);
110
110
 
111
111
  /* Focus */
112
- $buttonInfofocus: rgb(0 136 243);
112
+ $button-info-focus: rgb(0 136 243);
113
113
 
114
114
  /* Hover */
115
- $buttonInfohover: rgb(17 111 191);
115
+ $button-info-hover: rgb(17 111 191);
116
116
 
117
117
  /* State Default button color */
118
118
  $buttonState: rgb(0 122 217);
119
119
 
120
120
  /* switch slider, data table background-color and image rounded border-color */
121
- $inputswitchSlider: rgb(230 230 230);
121
+ $input-switch-slider: rgb(230 230 230);
122
122
 
123
123
  /* Rating start color */
124
124
  $piStart: rgb(255 140 0);
@@ -139,52 +139,52 @@ $toastInfo: rgb(7 26 56);
139
139
  $toastIconInfo: rgb(96 176 255);
140
140
 
141
141
  /* Prime toast success icon color */
142
- $toastIconSuccess: rgb(86 160 86);
142
+ $toast-icon-success: rgb(86 160 86);
143
143
 
144
- /* Breadcrum, multi item step number, galleries nav previous and next and pagination text color */
145
- $galleriaNavText: rgb(115 115 115);
144
+ /* Breadcrumb, multi item step number, galleries nav previous and next and pagination text color */
145
+ $galleria-nav-text: rgb(115 115 115);
146
146
 
147
147
  /* Prime sub-header border right color */
148
- $primeSeprator: rgb(226 229 236);
148
+ $prime-separator: rgb(226 229 236);
149
149
 
150
150
  /* Bar hover and also is being used in default theme function */
151
- $barHover: rgb(153 153 153);
151
+ $bar-hover: rgb(153 153 153);
152
152
 
153
- /* Prime sceondary button background and border color */
153
+ /* Prime secondary button background and border color */
154
154
  $primeSecondaryButton: rgb(243 243 243);
155
155
 
156
- /* Prime success button hover effect, focus and active backgroud color */
156
+ /* Prime success button hover effect, focus and active background color */
157
157
  $primeStateButtonSuccess: rgb(16 125 17);
158
158
 
159
159
  /* focus */
160
- $primeStateButtonfocus: rgb(58 187 59);
160
+ $prime-state-button-focus: rgb(58 187 59);
161
161
 
162
162
  /* active */
163
- $primeStateButtonactive: rgb(12 107 13);
163
+ $prime-state-button-active: rgb(12 107 13);
164
164
 
165
- /* Prime warning button hover effect, focus and active backgroud color */
166
- $primeStateButtonwarning: rgb(237 153 11);
165
+ /* Prime warning button hover effect, focus and active background color */
166
+ $prime-state-button-warning: rgb(237 153 11);
167
167
 
168
168
  /* focus */
169
- $primeButtonwarningFocus: rgb(255 193 27);
169
+ $prime-button-warning-focus: rgb(255 193 27);
170
170
 
171
171
  /* active */
172
- $primeButtonwarningactive: rgb(211 139 16);
172
+ $prime-button-warning-active: rgb(211 139 16);
173
173
 
174
- /* Prime Danger button hover effect, focus and active backgroud color */
175
- $primeButtonDangeractive: rgb(233 18 36);
174
+ /* Prime Danger button hover effect, focus and active background color */
175
+ $prime-button-danger-active: rgb(233 18 36);
176
176
 
177
177
  /* hover */
178
- $primeButtonSethover: rgb(192 17 32);
178
+ $prime-button-set-hover: rgb(192 17 32);
179
179
 
180
180
  /* Active */
181
- $primeButtonSetactive: rgb(169 0 0);
181
+ $prime-button-set-active: rgb(169 0 0);
182
182
 
183
183
  /* focus */
184
184
  $primeButtonSetFocus: rgb(238 38 55);
185
185
 
186
186
  /* Hover background-color color for not selected and highlight columns of tree-table */
187
- $satetHover: rgb(224 224 224);
187
+ $satet-hover: rgb(224 224 224);
188
188
 
189
189
  /* Prime toggle icon color */
190
190
  $nodeToggle: rgb(13 38 69);