bulma-clean-theme 0.14.0 → 1.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/_includes/callouts.html +12 -5
  4. data/_includes/cookie-banner.html +1 -1
  5. data/_includes/hero.html +5 -3
  6. data/_includes/showcase.html +8 -6
  7. data/_layouts/default.html +1 -0
  8. data/_layouts/post.html +7 -3
  9. data/_sass/_block-list.scss +130 -0
  10. data/_sass/_main.scss +3 -2
  11. data/node_modules/.package-lock.json +204 -9
  12. data/node_modules/bulma/LICENSE +1 -1
  13. data/node_modules/bulma/README.md +56 -52
  14. data/node_modules/bulma/bulma.scss +4 -0
  15. data/node_modules/bulma/css/bulma.css +19282 -8696
  16. data/node_modules/bulma/css/bulma.css.map +1 -1
  17. data/node_modules/bulma/css/bulma.min.css +3 -1
  18. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  19. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +1 -0
  20. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  21. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +1 -0
  22. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  23. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +1 -0
  24. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +3 -0
  25. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  26. data/node_modules/bulma/package.json +25 -20
  27. data/node_modules/bulma/sass/_index.scss +10 -0
  28. data/node_modules/bulma/sass/base/_index.scss +6 -0
  29. data/node_modules/bulma/sass/base/animations.scss +15 -0
  30. data/node_modules/bulma/sass/base/generic.scss +239 -0
  31. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  32. data/node_modules/bulma/sass/base/skeleton.scss +126 -0
  33. data/node_modules/bulma/sass/components/_index.scss +13 -0
  34. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  35. data/node_modules/bulma/sass/components/card.scss +162 -0
  36. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  37. data/node_modules/bulma/sass/components/menu.scss +165 -0
  38. data/node_modules/bulma/sass/components/message.scss +183 -0
  39. data/node_modules/bulma/sass/components/modal.scss +164 -0
  40. data/node_modules/bulma/sass/components/navbar.scss +788 -0
  41. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  42. data/node_modules/bulma/sass/components/panel.scss +218 -0
  43. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  44. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  45. data/node_modules/bulma/sass/elements/block.scss +6 -0
  46. data/node_modules/bulma/sass/elements/box.scss +59 -0
  47. data/node_modules/bulma/sass/elements/button.scss +640 -0
  48. data/node_modules/bulma/sass/elements/content.scss +283 -0
  49. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  50. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  51. data/node_modules/bulma/sass/elements/image.scss +62 -0
  52. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  53. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  54. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  55. data/node_modules/bulma/sass/elements/table.scss +261 -0
  56. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  57. data/node_modules/bulma/sass/elements/title.scss +128 -0
  58. data/node_modules/bulma/sass/form/_index.scss +9 -0
  59. data/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
  60. data/node_modules/bulma/sass/form/file.scss +330 -0
  61. data/node_modules/bulma/sass/form/input-textarea.scss +123 -0
  62. data/node_modules/bulma/sass/form/select.scss +143 -0
  63. data/node_modules/bulma/sass/form/shared.scss +172 -0
  64. data/node_modules/bulma/sass/form/tools.scss +341 -0
  65. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  66. data/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
  67. data/node_modules/bulma/sass/grid/columns.scss +877 -0
  68. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  69. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  70. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  71. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  72. data/node_modules/bulma/sass/helpers/color.scss +364 -0
  73. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  74. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  75. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  76. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  77. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  78. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  79. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  80. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  81. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  82. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  83. data/node_modules/bulma/sass/layout/container.scss +51 -0
  84. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  85. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  86. data/node_modules/bulma/sass/layout/level.scss +107 -0
  87. data/node_modules/bulma/sass/layout/media.scss +106 -0
  88. data/node_modules/bulma/sass/layout/section.scss +34 -0
  89. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  90. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  91. data/node_modules/bulma/sass/themes/light.scss +145 -0
  92. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  93. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  94. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  95. data/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
  96. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  97. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  98. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  99. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  100. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  101. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +19 -0
  102. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  103. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  104. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  105. data/package-lock.json +338 -18
  106. data/package.json +1 -2
  107. metadata +94 -90
  108. data/node_modules/bulma/bulma.sass +0 -10
  109. data/node_modules/bulma/css/bulma-rtl.css +0 -11851
  110. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  111. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  112. data/node_modules/bulma/sass/base/_all.sass +0 -6
  113. data/node_modules/bulma/sass/base/animations.sass +0 -5
  114. data/node_modules/bulma/sass/base/generic.sass +0 -145
  115. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  116. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  117. data/node_modules/bulma/sass/components/_all.sass +0 -15
  118. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  119. data/node_modules/bulma/sass/components/card.sass +0 -103
  120. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  121. data/node_modules/bulma/sass/components/level.sass +0 -79
  122. data/node_modules/bulma/sass/components/media.sass +0 -59
  123. data/node_modules/bulma/sass/components/menu.sass +0 -59
  124. data/node_modules/bulma/sass/components/message.sass +0 -101
  125. data/node_modules/bulma/sass/components/modal.sass +0 -117
  126. data/node_modules/bulma/sass/components/navbar.sass +0 -446
  127. data/node_modules/bulma/sass/components/pagination.sass +0 -167
  128. data/node_modules/bulma/sass/components/panel.sass +0 -121
  129. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  130. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  131. data/node_modules/bulma/sass/elements/box.sass +0 -26
  132. data/node_modules/bulma/sass/elements/button.sass +0 -357
  133. data/node_modules/bulma/sass/elements/container.sass +0 -29
  134. data/node_modules/bulma/sass/elements/content.sass +0 -162
  135. data/node_modules/bulma/sass/elements/form.sass +0 -1
  136. data/node_modules/bulma/sass/elements/icon.sass +0 -46
  137. data/node_modules/bulma/sass/elements/image.sass +0 -73
  138. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  139. data/node_modules/bulma/sass/elements/other.sass +0 -31
  140. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  141. data/node_modules/bulma/sass/elements/table.sass +0 -134
  142. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  143. data/node_modules/bulma/sass/elements/title.sass +0 -70
  144. data/node_modules/bulma/sass/form/_all.sass +0 -9
  145. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  146. data/node_modules/bulma/sass/form/file.sass +0 -184
  147. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  148. data/node_modules/bulma/sass/form/select.sass +0 -88
  149. data/node_modules/bulma/sass/form/shared.sass +0 -60
  150. data/node_modules/bulma/sass/form/tools.sass +0 -215
  151. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  152. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  153. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  154. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  155. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  156. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  157. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  158. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  159. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  160. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  161. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  162. data/node_modules/bulma/sass/helpers/typography.sass +0 -103
  163. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  164. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  165. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  166. data/node_modules/bulma/sass/layout/hero.sass +0 -153
  167. data/node_modules/bulma/sass/layout/section.sass +0 -17
  168. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  169. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  170. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  171. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -114
  172. data/node_modules/bulma/sass/utilities/extends.sass +0 -25
  173. data/node_modules/bulma/sass/utilities/functions.sass +0 -135
  174. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -79
  175. data/node_modules/bulma/sass/utilities/mixins.sass +0 -303
  176. data/node_modules/bulma-block-list/.editorconfig +0 -15
  177. data/node_modules/bulma-block-list/.github/FUNDING.yml +0 -12
  178. data/node_modules/bulma-block-list/LICENSE.txt +0 -21
  179. data/node_modules/bulma-block-list/README.md +0 -32
  180. data/node_modules/bulma-block-list/changelog.txt +0 -20
  181. data/node_modules/bulma-block-list/docs/Gemfile +0 -3
  182. data/node_modules/bulma-block-list/docs/_config.yml +0 -17
  183. data/node_modules/bulma-block-list/docs/_data/menu.yaml +0 -24
  184. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +0 -156
  185. data/node_modules/bulma-block-list/docs/_sass/_main.scss +0 -20
  186. data/node_modules/bulma-block-list/docs/assets/css/app.scss +0 -7
  187. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  188. data/node_modules/bulma-block-list/docs/index.html +0 -359
  189. data/node_modules/bulma-block-list/package.json +0 -22
  190. data/node_modules/bulma-block-list/src/block-list.scss +0 -156
  191. data/node_modules/bulma-block-list/src/demo.scss +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ee2c200e9a0fcf1fc20182dcc907a20b87aab5f7faddb7b332cceaf03a1d537
4
- data.tar.gz: 1e5da6fa3bd166ebca0bff7c1b7ff81d0d5ae781fcc6be25809cad5c07c8ae63
3
+ metadata.gz: 4a46a4e1e4a6f1702c7540775ce65d2660a267c03ebc24e743421277f743a9bb
4
+ data.tar.gz: d55cb347898ec45a1ef2c5aa0cde5abfd0c57b032c476cb0e8303c9d5d4e9845
5
5
  SHA512:
6
- metadata.gz: 148735fb9e0485a36b267e805b59d4e97086668ad7b7522698eb641537922f3acc6cb5f4fbad6f8e4cf341190cd81ca95fb3c2e1d52bf40cee1de19dade62ee4
7
- data.tar.gz: c67de5acd9ff350fb38ef312d6f9f3d39ef7be7e8c3ec44af5603c23eb997ed99b2904909853a2a07d493cd3294e0bfefc39f4f297d14fffe5c10dc8f2719ae7
6
+ metadata.gz: 65bc09b7d4497057ada2777d0bdcea9f0222987c34f7d00c2f4219a4fd1ea6af94d042a9e03525fb2d7a96128cb3f59cd128c99c3b2b553155ebac67b7558f1a
7
+ data.tar.gz: 5b99d3cbd722edbaa6cfa4b38866d08955133c57200599085d26888cfb59f4c091b137915475e8de677c78411496f15f7dc8838edd7fb1c7eb4e8ee061e73854
data/README.md CHANGED
@@ -11,6 +11,7 @@ The theme uses [Alpine.js](https://github.com/alpinejs/alpine) for its interacti
11
11
 
12
12
  * [Installation](#installation)
13
13
  * [Documentation](#documentation)
14
+ * [Upgrading to v1](#upgrading-to-v1)
14
15
  * [Contributing](#contributing)
15
16
  * [Development](#development)
16
17
  * [Licence](#licence)
@@ -49,6 +50,10 @@ Or install it yourself as:
49
50
 
50
51
  Check out the demo site for the [Documentation](https://www.csrhymes.com/bulma-clean-theme/docs/)
51
52
 
53
+ ## Upgrading to v1
54
+
55
+ There are several breaking changes for v1. Please read the [upgrade guide](https://www.csrhymes.com/bulma-clean-theme/docs/upgrading-to-v1/) for more information.
56
+
52
57
  ## Contributing
53
58
 
54
59
  Bug reports and pull requests are welcome on GitHub at https://github.com/chrisrhymes/bulma-clean-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -19,15 +19,22 @@
19
19
  <p class="subtitle is-5">{{ callout.subtitle }}</p>
20
20
 
21
21
  {% if callout.description %}
22
- <div class="content">
23
- <p>{{ callout.description | newline_to_br }}</p>
22
+ <div class="my-4">
23
+ <div class="content">
24
+ <p>{{ callout.description | newline_to_br }}</p>
25
+ </div>
24
26
  </div>
25
27
  {% endif %}
26
28
 
27
29
  {% if callout.call_to_action_name %}
28
- <a href="{{ callout.call_to_action_link | relative_url }}" class="button is-primary">
29
- {{ callout.call_to_action_name }}
30
- </a>
30
+ <div class="my-4">
31
+ <a
32
+ href="{{ callout.call_to_action_link | relative_url }}"
33
+ class="button is-primary"
34
+ >
35
+ {{ callout.call_to_action_name }}
36
+ </a>
37
+ </div>
31
38
  {% endif %}
32
39
  </div>
33
40
  {% endfor %}
@@ -14,7 +14,7 @@
14
14
  </p>
15
15
  </div>
16
16
 
17
- <div class="buttons">
17
+ <div class="buttons mt-4">
18
18
  <button class="button is-primary" onclick="acceptCookies()">Accept all cookies</button>
19
19
  <button class="button is-primary" onclick="rejectCookies()">Reject all cookies</button>
20
20
  </div>
data/_includes/hero.html CHANGED
@@ -9,9 +9,11 @@
9
9
  <h1 class="title is-2">{{ page.title }}</h1>
10
10
  <p class="subtitle is-3">{{ page.subtitle }}</p>
11
11
  {% if page.hero_link %}
12
- <a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">
13
- {{- page.hero_link_text -}}
14
- </a>
12
+ <div class="my-4">
13
+ <a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">
14
+ {{- page.hero_link_text -}}
15
+ </a>
16
+ </div>
15
17
  {% endif %}
16
18
  </div>
17
19
  </div>
@@ -17,7 +17,7 @@
17
17
  <p class="subtitle">{{ item.subtitle }}</p>
18
18
 
19
19
  {% if item.github %}
20
- <div class="buttons is-centered">
20
+ <div class="buttons is-centered my-4">
21
21
  <a
22
22
  href="https://github.com/{{ item.github }}/stargazers"
23
23
  class="button is-white is-small"
@@ -53,7 +53,7 @@
53
53
  </div>
54
54
 
55
55
  {% if item.features %}
56
- <ul class="block-list {{ item.features_styles }}">
56
+ <ul class="block-list is-dark {{ item.features_styles }}">
57
57
  {% for feature in item.features %}
58
58
  <li>{{ feature }}</li>
59
59
  {% endfor %}
@@ -62,16 +62,18 @@
62
62
 
63
63
  {% if item.tags %}
64
64
  {% assign tags = item.tags | split: ',' %}
65
- <div class="tags is-centered">
65
+ <div class="tags is-centered my-4">
66
66
  {% for tag in tags %}
67
67
  {% include tag.html tag=tag style="is-dark" %}
68
68
  {% endfor %}
69
69
  </div>
70
70
  {% endif %}
71
71
 
72
- <a href="{{ item.link }}" class="button is-primary">
73
- {{ item.link_text }}
74
- </a>
72
+ <div class="my-4">
73
+ <a href="{{ item.link }}" class="button is-primary">
74
+ {{ item.link_text }}
75
+ </a>
76
+ </div>
75
77
  </div>
76
78
  </div>
77
79
  </div>
@@ -17,6 +17,7 @@
17
17
  {% if site.fixed_navbar %}
18
18
  class="has-navbar-fixed-{{ site.fixed_navbar }}"
19
19
  {% endif %}
20
+ class="theme-light"
20
21
  >
21
22
  {% include head.html %}
22
23
  <body>
data/_layouts/post.html CHANGED
@@ -11,16 +11,20 @@ layout: default
11
11
  {{ content }}
12
12
  </div>
13
13
 
14
- <div class="tags">
14
+ <div class="tags my-4">
15
15
  {% for tag in page.tags %}
16
16
  {% include tag.html tag=tag %}
17
17
  {% endfor %}
18
18
  </div>
19
19
 
20
20
  {% unless site.hide_share_buttons %}
21
- {% include share-buttons.html %}
21
+ <div class="my-4">
22
+ {% include share-buttons.html %}
23
+ </div>
22
24
  {% endunless %}
23
25
 
24
26
  {% if site.disqus.shortname %}
25
- {% include disqus.html %}
27
+ <div class="my-4">
28
+ {% include disqus.html %}
29
+ </div>
26
30
  {% endif %}
@@ -0,0 +1,130 @@
1
+ @charset "utf-8";
2
+
3
+ @use 'sass:math';
4
+
5
+ @import '../node_modules/bulma/sass/utilities/initial-variables';
6
+ @import '../node_modules/bulma/sass/utilities/derived-variables';
7
+
8
+ $block-list-separator: 0.25rem !default;
9
+ $block-list-highlight-width: 5px !default;
10
+
11
+ .content {
12
+ ul.block-list {
13
+ list-style: none;
14
+ margin-left: 0;
15
+ }
16
+ }
17
+
18
+ .block-list {
19
+ list-style: none;
20
+
21
+ li {
22
+ padding: math.div($gap, 2);
23
+ background: var(--bulma-body-background-color);
24
+ margin-bottom: $block-list-separator;
25
+ }
26
+
27
+ li.is-left,
28
+ &.is-left > li {
29
+ text-align: left;
30
+ }
31
+
32
+ li.is-centered,
33
+ &.is-centered > li {
34
+ text-align: center;
35
+ }
36
+
37
+ li.is-right,
38
+ &.is-right > li {
39
+ text-align: right;
40
+ }
41
+
42
+ li.is-small,
43
+ &.is-small > li {
44
+ font-size: $size-7;
45
+ padding: math.div($gap, 3);
46
+ }
47
+
48
+ li.is-normal,
49
+ &.is-normal > li {
50
+ font-size: $size-6;
51
+ }
52
+
53
+ li.is-large,
54
+ &.is-large > li {
55
+ font-size: $size-5;
56
+ }
57
+
58
+ li.has-radius,
59
+ &.has-radius > li {
60
+ border-radius: $radius;
61
+ }
62
+
63
+ li.is-highlighted,
64
+ &.is-highlighted > li {
65
+ border-left: $block-list-highlight-width var(--bulma-dark) solid;
66
+ }
67
+
68
+ @mixin outlined($color) {
69
+ background: transparent;
70
+ color: var(--bulma-#{$color});
71
+ border: 1px solid var(--bulma-#{$color});
72
+ }
73
+
74
+ li.is-outlined,
75
+ &.is-outlined > li {
76
+ @include outlined('light');
77
+ }
78
+
79
+ li.has-icon {
80
+ display: flex;
81
+
82
+ .icon {
83
+ flex-grow: 0;
84
+ flex-shrink: 0;
85
+ flex-basis: auto;
86
+ margin-right: 1em;
87
+ }
88
+
89
+ span {
90
+ flex-grow: 1;
91
+ }
92
+
93
+ &.is-right {
94
+ .icon {
95
+ margin-right: 0;
96
+ margin-left: 1em;
97
+ }
98
+ }
99
+ }
100
+
101
+ @each $name, $pair in $colors {
102
+ li.is-#{$name},
103
+ &.is-#{$name} > li {
104
+ background: var(--bulma-#{$name});
105
+ color: var(--bulma-#{$name}-invert);
106
+ }
107
+
108
+ li.is-#{$name}.is-outlined {
109
+ @include outlined($name);
110
+ }
111
+
112
+ li.is-#{$name}.is-highlighted {
113
+ @include outlined($name);
114
+ border-left: $block-list-highlight-width var(--bulma-#{$name}) solid;
115
+ }
116
+
117
+ &.is-#{$name} {
118
+ li.is-outlined,
119
+ &.is-outlined > li {
120
+ @include outlined($name);
121
+ }
122
+
123
+ li.is-highlighted,
124
+ &.is-highlighted > li {
125
+ @include outlined($name);
126
+ border-left: $block-list-highlight-width var(--bulma-#{$name}) solid;
127
+ }
128
+ }
129
+ }
130
+ }
data/_sass/_main.scss CHANGED
@@ -9,13 +9,14 @@ $tabs-link-active-border-bottom-color: $primary;
9
9
 
10
10
  $modal-content-width: 800px;
11
11
 
12
- @import "../node_modules/bulma/bulma.sass";
12
+ @import "../node_modules/bulma/sass";
13
+ @import "../node_modules/bulma/sass/utilities/mixins";
13
14
  $hero-darken: $dark !default;
14
15
 
15
16
  @import "layout";
16
17
  @import "syntax";
17
18
  @import "showcase";
18
- @import "../node_modules/bulma-block-list/src/block-list.scss";
19
+ @import "block-list";
19
20
 
20
21
  .gh-sponsor {
21
22
  color: #ea4aaa;
@@ -1,20 +1,215 @@
1
1
  {
2
2
  "name": "bulma-clean-theme",
3
3
  "version": "1.0.0",
4
- "lockfileVersion": 2,
4
+ "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
+ "node_modules/anymatch": {
8
+ "version": "3.1.3",
9
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
10
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
11
+ "dependencies": {
12
+ "normalize-path": "^3.0.0",
13
+ "picomatch": "^2.0.4"
14
+ },
15
+ "engines": {
16
+ "node": ">= 8"
17
+ }
18
+ },
19
+ "node_modules/binary-extensions": {
20
+ "version": "2.3.0",
21
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
22
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
23
+ "engines": {
24
+ "node": ">=8"
25
+ },
26
+ "funding": {
27
+ "url": "https://github.com/sponsors/sindresorhus"
28
+ }
29
+ },
30
+ "node_modules/braces": {
31
+ "version": "3.0.2",
32
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
33
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
34
+ "dependencies": {
35
+ "fill-range": "^7.0.1"
36
+ },
37
+ "engines": {
38
+ "node": ">=8"
39
+ }
40
+ },
7
41
  "node_modules/bulma": {
8
- "version": "0.9.4",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
10
- "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
42
+ "version": "1.0.0",
43
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.0.tgz",
44
+ "integrity": "sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==",
45
+ "dependencies": {
46
+ "sass": "^1.71.1"
47
+ }
48
+ },
49
+ "node_modules/chokidar": {
50
+ "version": "3.6.0",
51
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
52
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
53
+ "dependencies": {
54
+ "anymatch": "~3.1.2",
55
+ "braces": "~3.0.2",
56
+ "glob-parent": "~5.1.2",
57
+ "is-binary-path": "~2.1.0",
58
+ "is-glob": "~4.0.1",
59
+ "normalize-path": "~3.0.0",
60
+ "readdirp": "~3.6.0"
61
+ },
62
+ "engines": {
63
+ "node": ">= 8.10.0"
64
+ },
65
+ "funding": {
66
+ "url": "https://paulmillr.com/funding/"
67
+ },
68
+ "optionalDependencies": {
69
+ "fsevents": "~2.3.2"
70
+ }
71
+ },
72
+ "node_modules/fill-range": {
73
+ "version": "7.0.1",
74
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
75
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
76
+ "dependencies": {
77
+ "to-regex-range": "^5.0.1"
78
+ },
79
+ "engines": {
80
+ "node": ">=8"
81
+ }
82
+ },
83
+ "node_modules/fsevents": {
84
+ "version": "2.3.3",
85
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
86
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
87
+ "hasInstallScript": true,
88
+ "optional": true,
89
+ "os": [
90
+ "darwin"
91
+ ],
92
+ "engines": {
93
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
94
+ }
95
+ },
96
+ "node_modules/glob-parent": {
97
+ "version": "5.1.2",
98
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
99
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
100
+ "dependencies": {
101
+ "is-glob": "^4.0.1"
102
+ },
103
+ "engines": {
104
+ "node": ">= 6"
105
+ }
106
+ },
107
+ "node_modules/immutable": {
108
+ "version": "4.3.5",
109
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
110
+ "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
111
+ },
112
+ "node_modules/is-binary-path": {
113
+ "version": "2.1.0",
114
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
115
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
116
+ "dependencies": {
117
+ "binary-extensions": "^2.0.0"
118
+ },
119
+ "engines": {
120
+ "node": ">=8"
121
+ }
122
+ },
123
+ "node_modules/is-extglob": {
124
+ "version": "2.1.1",
125
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
126
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
127
+ "engines": {
128
+ "node": ">=0.10.0"
129
+ }
130
+ },
131
+ "node_modules/is-glob": {
132
+ "version": "4.0.3",
133
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
134
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
135
+ "dependencies": {
136
+ "is-extglob": "^2.1.1"
137
+ },
138
+ "engines": {
139
+ "node": ">=0.10.0"
140
+ }
141
+ },
142
+ "node_modules/is-number": {
143
+ "version": "7.0.0",
144
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
145
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
146
+ "engines": {
147
+ "node": ">=0.12.0"
148
+ }
149
+ },
150
+ "node_modules/normalize-path": {
151
+ "version": "3.0.0",
152
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
153
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
154
+ "engines": {
155
+ "node": ">=0.10.0"
156
+ }
157
+ },
158
+ "node_modules/picomatch": {
159
+ "version": "2.3.1",
160
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
161
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
162
+ "engines": {
163
+ "node": ">=8.6"
164
+ },
165
+ "funding": {
166
+ "url": "https://github.com/sponsors/jonschlinkert"
167
+ }
168
+ },
169
+ "node_modules/readdirp": {
170
+ "version": "3.6.0",
171
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
172
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
173
+ "dependencies": {
174
+ "picomatch": "^2.2.1"
175
+ },
176
+ "engines": {
177
+ "node": ">=8.10.0"
178
+ }
179
+ },
180
+ "node_modules/sass": {
181
+ "version": "1.76.0",
182
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
183
+ "integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
184
+ "dependencies": {
185
+ "chokidar": ">=3.0.0 <4.0.0",
186
+ "immutable": "^4.0.0",
187
+ "source-map-js": ">=0.6.2 <2.0.0"
188
+ },
189
+ "bin": {
190
+ "sass": "sass.js"
191
+ },
192
+ "engines": {
193
+ "node": ">=14.0.0"
194
+ }
195
+ },
196
+ "node_modules/source-map-js": {
197
+ "version": "1.2.0",
198
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
199
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
200
+ "engines": {
201
+ "node": ">=0.10.0"
202
+ }
11
203
  },
12
- "node_modules/bulma-block-list": {
13
- "version": "0.7.0",
14
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
15
- "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
204
+ "node_modules/to-regex-range": {
205
+ "version": "5.0.1",
206
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
207
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
16
208
  "dependencies": {
17
- "bulma": "^0.9.3"
209
+ "is-number": "^7.0.0"
210
+ },
211
+ "engines": {
212
+ "node": ">=8.0"
18
213
  }
19
214
  }
20
215
  }
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Jeremy Thomas
3
+ Copyright (c) 2023 Jeremy Thomas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal