bulma-clean-theme 1.2.0 → 1.2.1

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 (46) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/image-modal.html +7 -5
  3. data/_includes/post-card.html +3 -1
  4. data/_includes/skip-to-content.html +1 -0
  5. data/_layouts/default.html +3 -2
  6. data/_layouts/product-category.html +2 -2
  7. data/_sass/_category.scss +15 -0
  8. data/_sass/_layout.scss +12 -1
  9. data/_sass/_main.scss +2 -1
  10. data/node_modules/.package-lock.json +3 -3
  11. data/node_modules/bulma/bulma.scss +1 -1
  12. data/node_modules/bulma/css/bulma.css +6 -1
  13. data/node_modules/bulma/css/bulma.css.map +1 -1
  14. data/node_modules/bulma/css/bulma.min.css +2 -2
  15. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +6 -1
  16. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -1
  17. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +2 -2
  18. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +2 -1
  19. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -1
  20. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +2 -2
  21. data/node_modules/bulma/css/versions/bulma-no-helpers.css +2 -1
  22. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -1
  23. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +2 -2
  24. data/node_modules/bulma/css/versions/bulma-prefixed.css +6 -1
  25. data/node_modules/bulma/css/versions/bulma-prefixed.css.map +1 -1
  26. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +2 -2
  27. data/node_modules/bulma/package.json +5 -5
  28. data/node_modules/bulma/sass/base/generic.scss +2 -1
  29. data/node_modules/bulma/sass/base/skeleton.scss +1 -1
  30. data/node_modules/bulma/sass/components/navbar.scss +1 -1
  31. data/node_modules/bulma/sass/elements/button.scss +6 -0
  32. data/node_modules/bulma/sass/form/tools.scss +1 -1
  33. data/node_modules/bulma/sass/grid/columns.scss +1 -1
  34. data/node_modules/bulma/sass/helpers/typography.scss +4 -0
  35. data/node_modules/bulma/sass/layout/hero.scss +6 -6
  36. data/node_modules/bulma/sass/themes/_index.scss +2 -1
  37. data/node_modules/bulma/sass/themes/light.scss +1 -1
  38. data/node_modules/bulma/sass/utilities/controls.scss +1 -1
  39. data/node_modules/bulma/sass/utilities/css-variables.scss +1 -1
  40. data/node_modules/bulma/sass/utilities/initial-variables.scss +2 -0
  41. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +1 -1
  42. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
  43. data/node_modules/bulma/versions/bulma-no-helpers.scss +1 -1
  44. data/node_modules/bulma/versions/bulma-prefixed.scss +1 -1
  45. data/package-lock.json +3 -3
  46. metadata +4 -2
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bulma",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "homepage": "https://bulma.io",
5
5
  "author": {
6
6
  "name": "Jeremy Thomas",
@@ -30,10 +30,10 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "cssnano": "^7.0.6",
33
- "postcss-cli": "^11.0.0",
34
- "prettier": "^3.4.2",
33
+ "postcss-cli": "^11.0.1",
34
+ "prettier": "^3.5.3",
35
35
  "rimraf": "^6.0.1",
36
- "sass": "^1.83.0"
36
+ "sass": "^1.86.3"
37
37
  },
38
38
  "scripts": {
39
39
  "build-bulma": "sass --style=expanded --source-map bulma.scss css/bulma.css",
@@ -59,4 +59,4 @@
59
59
  "LICENSE",
60
60
  "README.md"
61
61
  ]
62
- }
62
+ }
@@ -1,3 +1,4 @@
1
+ @use "../utilities/initial-variables" as iv;
1
2
  @use "../utilities/css-variables.scss" as cv;
2
3
  @use "../utilities/mixins" as mx;
3
4
 
@@ -32,7 +33,7 @@ $pre-font-size: 0.875em !default;
32
33
  $pre-padding: 1.25rem 1.5rem !default;
33
34
  $pre-code-font-size: 1em !default;
34
35
 
35
- :root {
36
+ #{iv.$variables-host} {
36
37
  @include cv.register-vars(
37
38
  (
38
39
  "body-background-color": #{$body-background-color},
@@ -9,7 +9,7 @@ $skeleton-block-min-height: 4.5em !default;
9
9
  $skeleton-lines-gap: 0.75em !default;
10
10
  $skeleton-line-height: 0.75em !default;
11
11
 
12
- :root {
12
+ #{iv.$variables-host} {
13
13
  @include cv.register-vars(
14
14
  (
15
15
  "skeleton-background": #{$skeleton-background},
@@ -101,7 +101,7 @@ $navbar-colors: dv.$colors !default;
101
101
  z-index: cv.getVar("navbar-fixed-z");
102
102
  }
103
103
 
104
- :root {
104
+ #{iv.$variables-host} {
105
105
  @include cv.register-vars(
106
106
  (
107
107
  "navbar-height": #{$navbar-height},
@@ -383,6 +383,12 @@ $no-palette: ("white", "black", "light", "dark");
383
383
  @include cv.register-vars(
384
384
  (
385
385
  "button-border-width": max(1px, 0.0625em),
386
+ "loading-color":
387
+ hsl(
388
+ #{cv.getVar("button-h")},
389
+ #{cv.getVar("button-s")},
390
+ #{cv.getVar("button-l")}
391
+ ),
386
392
  )
387
393
  );
388
394
 
@@ -15,7 +15,7 @@ $label-colors: shared.$form-colors !default;
15
15
 
16
16
  $field-block-spacing: 0.75rem !default;
17
17
 
18
- :root {
18
+ #{iv.$variables-host} {
19
19
  @include cv.register-vars(
20
20
  (
21
21
  "label-color": #{$label-color},
@@ -7,7 +7,7 @@
7
7
 
8
8
  $column-gap: 0.75rem !default;
9
9
 
10
- :root {
10
+ #{iv.$variables-host} {
11
11
  @include cv.register-vars(
12
12
  (
13
13
  "column-gap": #{$column-gap},
@@ -149,6 +149,10 @@ $alignments: (
149
149
  font-weight: iv.$weight-bold !important;
150
150
  }
151
151
 
152
+ .#{iv.$class-prefix}#{iv.$helpers-has-prefix}text-weight-extrabold {
153
+ font-weight: iv.$weight-extrabold !important;
154
+ }
155
+
152
156
  .#{iv.$class-prefix}#{iv.$helpers-prefix}family-primary {
153
157
  font-family: dv.$family-primary !important;
154
158
  }
@@ -122,9 +122,9 @@ $hero-colors: dv.$colors !default;
122
122
  // Modifiers
123
123
  &.#{iv.$class-prefix}is-bold {
124
124
  $gradient-top-left: hsl(
125
- calc(#{cv.getVar("hero-h")} - $hero-gradient-h-offset),
126
- calc(#{cv.getVar("hero-s")} + $hero-gradient-s-offset),
127
- calc(#{cv.getVar("hero-background-l")} + $hero-gradient-l-offset)
125
+ calc(#{cv.getVar("hero-h")} - #{$hero-gradient-h-offset}),
126
+ calc(#{cv.getVar("hero-s")} + #{$hero-gradient-s-offset}),
127
+ calc(#{cv.getVar("hero-background-l")} + #{$hero-gradient-l-offset})
128
128
  );
129
129
  $gradient-middle: hsl(
130
130
  #{cv.getVar("hero-h")},
@@ -132,9 +132,9 @@ $hero-colors: dv.$colors !default;
132
132
  #{cv.getVar("hero-background-l")}
133
133
  );
134
134
  $gradient-bottom-right: hsl(
135
- calc(#{cv.getVar("hero-h")} + $hero-gradient-h-offset),
136
- calc(#{cv.getVar("hero-s")} - $hero-gradient-s-offset),
137
- calc(#{cv.getVar("hero-background-l")} - $hero-gradient-l-offset)
135
+ calc(#{cv.getVar("hero-h")} + #{$hero-gradient-h-offset}),
136
+ calc(#{cv.getVar("hero-s")} - #{$hero-gradient-s-offset}),
137
+ calc(#{cv.getVar("hero-background-l")} - #{$hero-gradient-l-offset})
138
138
  );
139
139
 
140
140
  background-image: linear-gradient(
@@ -1,13 +1,14 @@
1
1
  /* Bulma Themes */
2
2
  @charset "utf-8";
3
3
 
4
+ @use "../utilities/initial-variables" as iv;
4
5
  @use "../utilities/css-variables" as cv;
5
6
 
6
7
  @use "light";
7
8
  @use "dark";
8
9
  @use "setup";
9
10
 
10
- :root {
11
+ #{iv.$variables-host} {
11
12
  @include light.light-theme;
12
13
  @include setup.setup-theme;
13
14
  }
@@ -73,7 +73,7 @@ $scheme-main: hsl(iv.$scheme-h, iv.$scheme-s, $scheme-main-l);
73
73
 
74
74
  // Other
75
75
  "block-spacing": iv.$block-spacing,
76
- "duration": 294ms,
76
+ "duration": iv.$duration,
77
77
  "easing": iv.$easing,
78
78
  "radius-small": iv.$radius-small,
79
79
  "radius": iv.$radius,
@@ -16,7 +16,7 @@ $control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default;
16
16
 
17
17
  $control-focus-shadow-l: 50% !default;
18
18
 
19
- :root {
19
+ #{iv.$variables-host} {
20
20
  @include cv.register-vars(
21
21
  (
22
22
  "control-radius": #{$control-radius},
@@ -495,7 +495,7 @@
495
495
 
496
496
  @mixin system-theme($name) {
497
497
  @media (prefers-color-scheme: #{$name}) {
498
- :root {
498
+ #{iv.$variables-host} {
499
499
  @content;
500
500
  }
501
501
  }
@@ -134,6 +134,7 @@ $breakpoints: (
134
134
 
135
135
  // Miscellaneous
136
136
 
137
+ $duration: 294ms !default;
137
138
  $easing: ease-out !default;
138
139
  $radius-small: 0.25rem !default;
139
140
  $radius: 0.375rem !default;
@@ -153,3 +154,4 @@ $class-prefix: "" !default;
153
154
  $cssvars-prefix: "bulma-" !default;
154
155
  $helpers-prefix: "is-" !default;
155
156
  $helpers-has-prefix: "has-" !default;
157
+ $variables-host: ":root" !default;
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.4 | MIT License | github.com/jgthms/bulma */
4
4
  @forward "../sass/utilities";
5
5
  @forward "../sass/base";
6
6
  @forward "../sass/elements";
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.4 | MIT License | github.com/jgthms/bulma */
4
4
  @use "../sass/utilities" with (
5
5
  $class-prefix: "bulma-"
6
6
  );
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.4 | MIT License | github.com/jgthms/bulma */
4
4
  @forward "../sass/utilities";
5
5
  @forward "../sass/themes";
6
6
  @forward "../sass/base";
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.4 | MIT License | github.com/jgthms/bulma */
4
4
  @use "../sass" with (
5
5
  $class-prefix: "bulma-"
6
6
  );
data/package-lock.json CHANGED
@@ -14,9 +14,9 @@
14
14
  "devDependencies": {}
15
15
  },
16
16
  "node_modules/bulma": {
17
- "version": "1.0.3",
18
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.3.tgz",
19
- "integrity": "sha512-9eVXBrXwlU337XUXBjIIq7i88A+tRbJYAjXQjT/21lwam+5tpvKF0R7dCesre9N+HV9c6pzCNEPKrtgvBBes2g=="
17
+ "version": "1.0.4",
18
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.4.tgz",
19
+ "integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g=="
20
20
  }
21
21
  }
22
22
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-19 00:00:00.000000000 Z
11
+ date: 2025-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -161,6 +161,7 @@ files:
161
161
  - _includes/series.html
162
162
  - _includes/share-buttons.html
163
163
  - _includes/showcase.html
164
+ - _includes/skip-to-content.html
164
165
  - _includes/sponsors.html
165
166
  - _includes/subscribe.html
166
167
  - _includes/tabs.html
@@ -183,6 +184,7 @@ files:
183
184
  - _posts/2020-05-08-creating-a-docs-site-with-bulma-clean-theme.markdown
184
185
  - _posts/2021-10-30-creating-a-post-series.md
185
186
  - _sass/_block-list.scss
187
+ - _sass/_category.scss
186
188
  - _sass/_layout.scss
187
189
  - _sass/_main.scss
188
190
  - _sass/_promo-page.scss