bulma-clean-theme 1.0.3 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/cookie-banner.html +3 -3
- data/_includes/follow.html +52 -0
- data/_includes/footer.html +2 -0
- data/_includes/head.html +7 -1
- 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 +4 -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: 5de750705252c0e660412ffe1e8277aca895ad1534da6568fe358c34ae31413f
|
4
|
+
data.tar.gz: fcc28b2d18a8098bb029aff5f710244b63a03d9c6a7f0189714f1115ba415ed8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8be467edc8af051b06d3f534f57e207c266c0c0f7ddfadbadb70b28d59d7c55f2223aba0f08c5cdbde611bdae662f0031e75d0b9fe06ed1231f39681ada5a15
|
7
|
+
data.tar.gz: 394ef89af2f189fc19288d35d204698622d8e90f4614e523b997bc21eb9220c810c8112d8fd442d73deb0137993c6ec4bea89cd940afcc8788fd70248cbbbf6f
|
@@ -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
|
|
@@ -0,0 +1,52 @@
|
|
1
|
+
{% if site.social %}
|
2
|
+
<div class="buttons is-centered mt-6 mb-6">
|
3
|
+
{% if site.social.facebook %}
|
4
|
+
<a href="{{ site.social.facebook }}" class="button is-medium">
|
5
|
+
<span class="icon is-medium">
|
6
|
+
<i class="fa-brands fa-facebook fa-xl"></i>
|
7
|
+
<span class="is-sr-only">Facebook</span>
|
8
|
+
</span>
|
9
|
+
</a>
|
10
|
+
{% endif %}
|
11
|
+
{% if site.social.instagram %}
|
12
|
+
<a href="{{ site.social.instagram }}" class="button is-medium">
|
13
|
+
<span class="icon is-medium">
|
14
|
+
<i class="fa-brands fa-instagram fa-xl"></i>
|
15
|
+
<span class="is-sr-only">Instagram</span>
|
16
|
+
</span>
|
17
|
+
</a>
|
18
|
+
{% endif %}
|
19
|
+
{% if site.social.threads %}
|
20
|
+
<a href="{{ site.social.threads }}" class="button is-medium">
|
21
|
+
<span class="icon is-medium">
|
22
|
+
<i class="fa-brands fa-threads fa-xl"></i>
|
23
|
+
<span class="is-sr-only">Threads</span>
|
24
|
+
</span>
|
25
|
+
</a>
|
26
|
+
{% endif %}
|
27
|
+
{% if site.social.tiktok %}
|
28
|
+
<a href="{{ site.social.tiktok }}" class="button is-medium">
|
29
|
+
<span class="icon is-medium">
|
30
|
+
<i class="fa-brands fa-tiktok fa-xl"></i>
|
31
|
+
<span class="is-sr-only">TikTok</span>
|
32
|
+
</span>
|
33
|
+
</a>
|
34
|
+
{% endif %}
|
35
|
+
{% if site.social.x %}
|
36
|
+
<a href="{{ site.social.x }}" class="button is-medium">
|
37
|
+
<span class="icon is-medium">
|
38
|
+
<i class="fa-brands fa-x-twitter fa-xl"></i>
|
39
|
+
<span class="is-sr-only">X/Twitter</span>
|
40
|
+
</span>
|
41
|
+
</a>
|
42
|
+
{% endif %}
|
43
|
+
{% if site.social.youtube %}
|
44
|
+
<a href="{{ site.social.youtube }}" class="button is-medium">
|
45
|
+
<span class="icon is-medium">
|
46
|
+
<i class="fa-brands fa-youtube fa-xl"></i>
|
47
|
+
<span class="is-sr-only">YouTube</span>
|
48
|
+
</span>
|
49
|
+
</a>
|
50
|
+
{% endif %}
|
51
|
+
</div>
|
52
|
+
{% endif %}
|
data/_includes/footer.html
CHANGED
data/_includes/head.html
CHANGED
@@ -16,7 +16,13 @@
|
|
16
16
|
<script
|
17
17
|
src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js"
|
18
18
|
></script>
|
19
|
-
<link
|
19
|
+
<link
|
20
|
+
rel="stylesheet"
|
21
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
|
22
|
+
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
|
23
|
+
crossorigin="anonymous"
|
24
|
+
referrerpolicy="no-referrer"
|
25
|
+
>
|
20
26
|
{% unless site.hide_share_buttons %}
|
21
27
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@1/bin/bulma-social.min.css">
|
22
28
|
{% endunless %}
|
@@ -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 ![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).
|