@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
package/app.scss ADDED
@@ -0,0 +1,45 @@
1
+ ////////////////////////////
2
+ // Font styling
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
+ ////////////////////////////
9
+ // Main Styling files
10
+ ///////////////////////////
11
+
12
+ // Bootstrap modules => This loads the main Bootstrap module
13
+ @import 'scss/custom-bootstrap/bootstrap_variables'; // This is to override custom bootstrap variables such as theme-colors. NOT USED FOR NOW.
14
+ @import 'scss/bootstrap_modules';
15
+
16
+ // Custom variables
17
+ @import 'scss/variables'; // Here we have the branding and dashboard variables
18
+
19
+ // Public Pages styling
20
+ @import 'scss/public-pages';
21
+
22
+ // Dashboard styling
23
+ @import 'scss/dashboard';
24
+ @import 'scss/custom-bootstrap'; // Many bootstrap commands have been modified for the dashboard
25
+
26
+ // Shared/generic
27
+ @import 'scss/shared';
28
+
29
+ // Plugins scss => Here we load the styles for the loaded plugins
30
+ @import 'scss/plugins';
31
+
32
+ ////////////////////////////
33
+ // Other
34
+ ///////////////////////////
35
+
36
+ // Loading quill
37
+ @import 'quill/dist/quill.core.css';
38
+ @import 'quill/dist/quill.bubble.css';
39
+ @import 'quill/dist/quill.snow.css';
40
+
41
+ // Loading ui-switch
42
+ @import 'ngx-ui-switch/ui-switch.component';
43
+
44
+ // dynamic stylesheet
45
+ @import 'scss/dynamic-styles';
@@ -2,10 +2,13 @@
2
2
  font-family: Rubik;
3
3
  font-style: normal;
4
4
  font-weight: 500;
5
+ font-display: swap;
5
6
  src: url('/assets/fonts/rubik-v7-latin/rubik-v7-latin-500.eot');
6
7
 
7
8
  /* IE9 Compat Modes */
8
- src: local('Rubik Medium'), local('Rubik-Medium'),
9
+ src:
10
+ local('Rubik Medium'),
11
+ local('Rubik-Medium'),
9
12
  url('/assets/fonts/rubik-v7-latin/fonts/rubik-v7-latin-500.eot?#iefix')
10
13
  format('embedded-opentype'),
11
14
  url('/assets/fonts/rubik-v7-latin/rubik-v7-latin-500.woff2') format('woff2'),
package/css/hopscotch.css CHANGED
@@ -401,7 +401,7 @@ div.hopscotch-bubble.no-number .hopscotch-bubble-content {
401
401
 
402
402
  div.hopscotch-bubble .hopscotch-bubble-close {
403
403
  appearance: none;
404
- background: url(../../img/dashboard/tour/sprite-green.png) no-repeat -199px -99px;
404
+ background: url(../../core-images/dashboard/tour/sprite-green.png) no-repeat -199px -99px;
405
405
  border: 0;
406
406
  color: rgb(0 0 0);
407
407
  display: block;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "1.0.0",
4
- "description": "",
3
+ "version": "1.0.2",
5
4
  "main": "index.js",
6
5
  "scripts": {
7
6
  "test": "echo \"Error: no test specified\" && exit 1"
8
7
  },
9
8
  "author": "",
10
- "license": "ISC"
9
+ "license": "ISC",
10
+ "description": ""
11
11
  }
@@ -6,7 +6,7 @@
6
6
  @import 'dashboard/mixins/shadows';
7
7
  @import 'dashboard/mixins/vendor-prefixes';
8
8
 
9
- // Doashboard scss modules
9
+ // Dashboard scss modules
10
10
  @import 'dashboard/components';
11
11
  @import 'dashboard/icons';
12
12
  @import 'dashboard/ui-switch';