bulma-clean-theme 1.0.3 → 1.0.4

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 (45) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/cookie-banner.html +3 -3
  3. data/_includes/tiktok.html +6 -0
  4. data/_layouts/product-category.html +5 -1
  5. data/node_modules/.package-lock.json +3 -3
  6. data/node_modules/bulma/README.md +3 -1
  7. data/node_modules/bulma/bulma.scss +1 -1
  8. data/node_modules/bulma/css/bulma.css +1897 -2791
  9. data/node_modules/bulma/css/bulma.css.map +1 -1
  10. data/node_modules/bulma/css/bulma.min.css +2 -2
  11. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +1887 -2781
  12. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -1
  13. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +2 -2
  14. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +612 -96
  15. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -1
  16. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +2 -2
  17. data/node_modules/bulma/css/versions/bulma-no-helpers.css +612 -96
  18. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -1
  19. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +2 -2
  20. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +1897 -2791
  21. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -1
  22. data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +2 -2
  23. data/node_modules/bulma/package.json +6 -5
  24. data/node_modules/bulma/sass/components/navbar.scss +41 -30
  25. data/node_modules/bulma/sass/components/panel.scss +2 -2
  26. data/node_modules/bulma/sass/elements/content.scss +8 -2
  27. data/node_modules/bulma/sass/form/checkbox-radio.scss +7 -3
  28. data/node_modules/bulma/sass/form/input-textarea.scss +0 -10
  29. data/node_modules/bulma/sass/form/shared.scss +4 -0
  30. data/node_modules/bulma/sass/form/tools.scss +23 -12
  31. data/node_modules/bulma/sass/grid/columns.scss +109 -25
  32. data/node_modules/bulma/sass/grid/grid.scss +1 -1
  33. data/node_modules/bulma/sass/helpers/color.scss +166 -186
  34. data/node_modules/bulma/sass/layout/container.scss +16 -8
  35. data/node_modules/bulma/sass/layout/section.scss +4 -0
  36. data/node_modules/bulma/sass/utilities/css-variables.scss +3 -2
  37. data/node_modules/bulma/sass/utilities/functions.scss +2 -2
  38. data/node_modules/bulma/sass/utilities/initial-variables.scss +4 -4
  39. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +1 -1
  40. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
  41. data/node_modules/bulma/versions/bulma-no-helpers.scss +1 -1
  42. data/node_modules/bulma/versions/bulma-prefixed.scss +1 -1
  43. data/package-lock.json +6 -6
  44. metadata +3 -3
  45. data/node_modules/bulma/sass/grid/columns-v2.scss +0 -957
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7c85946ad678d685276e16150d66a0f37c524756b3f02534a9b4a6a0645b89c
4
- data.tar.gz: 880b6e9acc9092d0e1171a7346cc084d8f20f1590cd052c7b3e9e0c459600b44
3
+ metadata.gz: b6c905d58056c0dfc0de81708874e6aa097d2db641e86021f82040f14e400f36
4
+ data.tar.gz: 66f45fe696f79c466ef1f46cc6366294ce2d5139160799b627aba46c782c703d
5
5
  SHA512:
6
- metadata.gz: de270ec1158e58117258dfa537f98a69ff076763c39a1f0a28983d1925e920dcaf04139bbe7872b96b32222e4420d0d907856e43c15a999f383c1f44c1dd449f
7
- data.tar.gz: 2acb2dd77e4f2584a8e7478dd9618d43cc14a0f0966d2b0691f8d1a0cc234d3361b8f31a2a373f8584e65c5f6e4c6e669d04ba32e85c558697bb64e849a98f88
6
+ metadata.gz: 3683d887217304a6fd70ff6a179c9a26d38bfc597aef62aae156aef8311109dd2d833031120601503535419f1e2e0ed76d60f06610e4a4dd85d016b56bb92361
7
+ data.tar.gz: 5c6de3bd7969086649282f6c6f062759a900503214ec2d6283aff25f2bc6569dfbe23e49f8ad135e3565bf5833ec5944d22db9d05028b6cf9947207b07d9ed04
@@ -23,13 +23,13 @@
23
23
  {% if site.google_analytics %}
24
24
  consentGrantedAdStorage();
25
25
  {% endif %}
26
- Cookies.set('showCookieBanner', 'false', { expires: 7, path: '/' });
27
- Cookies.set('cookiesAccepted', 'true', {expires: 7, path: '/'});
26
+ Cookies.set('showCookieBanner', 'false', { expires: 365, path: '/' });
27
+ Cookies.set('cookiesAccepted', 'true', {expires: 365, path: '/'});
28
28
  toggleCookieBanner();
29
29
  }
30
30
 
31
31
  function rejectCookies() {
32
- Cookies.set('showCookieBanner', 'false', { expires: 7, path: '/' });
32
+ Cookies.set('showCookieBanner', 'false', { expires: 365, path: '/' });
33
33
  toggleCookieBanner();
34
34
  }
35
35
 
@@ -0,0 +1,6 @@
1
+ <figure class="image is-16by9">
2
+ <iframe
3
+ src="https://www.tiktok.com/player/v1/{{ include.video }}?controls=1&rel=0&autoplay=0"
4
+ class="has-ratio"
5
+ ></iframe>
6
+ </figure>
@@ -7,7 +7,11 @@ show_sidebar: false
7
7
  {{ page.content }}
8
8
  </div>
9
9
 
10
- {% assign sorted_products = site.products | sort: page.sort %}
10
+ {% if page.collection %}
11
+ {% assign sorted_products = site.[page.collection] | sort: page.sort %}
12
+ {% else %}
13
+ {% assign sorted_products = site.products | sort: page.sort %}
14
+ {% endif %}
11
15
 
12
16
  {% for product in sorted_products %}
13
17
  <div class="column is-4-desktop is-6-tablet">
@@ -5,9 +5,9 @@
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "node_modules/bulma": {
8
- "version": "1.0.1",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.1.tgz",
10
- "integrity": "sha512-+xv/BIAEQakHkR0QVz+s+RjNqfC53Mx9ZYexyaFNFo9wx5i76HXArNdwW7bccyJxa5mgV/T5DcVGqsAB19nBJQ=="
8
+ "version": "1.0.2",
9
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
10
+ "integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
11
11
  }
12
12
  }
13
13
  }
@@ -54,7 +54,7 @@ Feel free to raise an issue or submit a pull request.
54
54
 
55
55
  Bulma is a **CSS** framework. As such, the sole output is a single CSS file: [bulma.css](https://github.com/jgthms/bulma/blob/master/css/bulma.css)
56
56
 
57
- You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/overview/variables/).
57
+ You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/customize/#docsNav).
58
58
 
59
59
  There is **no** JavaScript included. People generally want to use their own JS implementation (and usually already have one). Bulma can be considered "environment agnostic": it's just the style layer on top of the logic.
60
60
 
@@ -134,6 +134,8 @@ Browse the [online documentation here.](https://bulma.io/documentation/start/ove
134
134
  | [CASE](https://case.app) | CASE is Lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
135
135
  | [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
136
136
 
137
+ <p>Browser testing via <a href="https://www.lambdatest.com/" target="_blank"><img src="https://www.lambdatest.com/resources/images/logo-white.svg" style="vertical-align: middle;margin-left:5px" width="147" height="26" /></a></p>
138
+
137
139
  ## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
138
140
 
139
141
  Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
@@ -1,4 +1,4 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.1 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
4
  @use "sass";