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.
- checksums.yaml +4 -4
- data/_includes/cookie-banner.html +3 -3
- data/_includes/tiktok.html +6 -0
- data/_layouts/product-category.html +5 -1
- data/node_modules/.package-lock.json +3 -3
- data/node_modules/bulma/README.md +3 -1
- data/node_modules/bulma/bulma.scss +1 -1
- data/node_modules/bulma/css/bulma.css +1897 -2791
- data/node_modules/bulma/css/bulma.css.map +1 -1
- data/node_modules/bulma/css/bulma.min.css +2 -2
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +1887 -2781
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -1
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +2 -2
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +612 -96
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -1
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +2 -2
- data/node_modules/bulma/css/versions/bulma-no-helpers.css +612 -96
- data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -1
- data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +2 -2
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css +1897 -2791
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -1
- data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +2 -2
- data/node_modules/bulma/package.json +6 -5
- data/node_modules/bulma/sass/components/navbar.scss +41 -30
- data/node_modules/bulma/sass/components/panel.scss +2 -2
- data/node_modules/bulma/sass/elements/content.scss +8 -2
- data/node_modules/bulma/sass/form/checkbox-radio.scss +7 -3
- data/node_modules/bulma/sass/form/input-textarea.scss +0 -10
- data/node_modules/bulma/sass/form/shared.scss +4 -0
- data/node_modules/bulma/sass/form/tools.scss +23 -12
- data/node_modules/bulma/sass/grid/columns.scss +109 -25
- data/node_modules/bulma/sass/grid/grid.scss +1 -1
- data/node_modules/bulma/sass/helpers/color.scss +166 -186
- data/node_modules/bulma/sass/layout/container.scss +16 -8
- data/node_modules/bulma/sass/layout/section.scss +4 -0
- data/node_modules/bulma/sass/utilities/css-variables.scss +3 -2
- data/node_modules/bulma/sass/utilities/functions.scss +2 -2
- data/node_modules/bulma/sass/utilities/initial-variables.scss +4 -4
- data/node_modules/bulma/versions/bulma-no-dark-mode.scss +1 -1
- data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
- data/node_modules/bulma/versions/bulma-no-helpers.scss +1 -1
- data/node_modules/bulma/versions/bulma-prefixed.scss +1 -1
- data/package-lock.json +6 -6
- metadata +3 -3
- 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6c905d58056c0dfc0de81708874e6aa097d2db641e86021f82040f14e400f36
|
|
4
|
+
data.tar.gz: 66f45fe696f79c466ef1f46cc6366294ce2d5139160799b627aba46c782c703d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
|
27
|
-
Cookies.set('cookiesAccepted', 'true', {expires:
|
|
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:
|
|
32
|
+
Cookies.set('showCookieBanner', 'false', { expires: 365, path: '/' });
|
|
33
33
|
toggleCookieBanner();
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -7,7 +7,11 @@ show_sidebar: false
|
|
|
7
7
|
{{ page.content }}
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
{%
|
|
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.
|
|
9
|
-
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.
|
|
10
|
-
"integrity": "sha512
|
|
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/
|
|
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 
|
|
138
140
|
|
|
139
141
|
Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
|