bulma-clean-theme 0.13 → 0.13.2

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 (33) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +3 -0
  3. data/_includes/image-modal.html +5 -5
  4. data/_layouts/default.html +1 -0
  5. data/_sass/_layout.scss +4 -1
  6. data/node_modules/.package-lock.json +18 -18
  7. data/node_modules/bulma/LICENSE +1 -1
  8. data/node_modules/bulma/README.md +59 -54
  9. data/node_modules/bulma/bulma.sass +1 -1
  10. data/node_modules/bulma/css/bulma-rtl.css +55 -15
  11. data/node_modules/bulma/css/bulma-rtl.css.map +1 -1
  12. data/node_modules/bulma/css/bulma-rtl.min.css +1 -1
  13. data/node_modules/bulma/css/bulma.css +55 -15
  14. data/node_modules/bulma/css/bulma.css.map +1 -1
  15. data/node_modules/bulma/css/bulma.min.css +1 -1
  16. data/node_modules/bulma/package.json +5 -5
  17. data/node_modules/bulma/sass/components/pagination.sass +2 -1
  18. data/node_modules/bulma/sass/elements/button.sass +13 -1
  19. data/node_modules/bulma/sass/elements/content.sass +5 -2
  20. data/node_modules/bulma/sass/elements/table.sass +2 -1
  21. data/node_modules/bulma/sass/form/select.sass +2 -1
  22. data/node_modules/bulma/sass/utilities/functions.sass +2 -3
  23. data/node_modules/bulma/sass/utilities/initial-variables.sass +1 -0
  24. data/node_modules/bulma/sass/utilities/mixins.sass +24 -1
  25. data/node_modules/bulma-block-list/docs/Gemfile +1 -1
  26. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +33 -8
  27. data/node_modules/bulma-block-list/docs/_sass/_main.scss +4 -4
  28. data/node_modules/bulma-block-list/package.json +20 -20
  29. data/node_modules/bulma-block-list/src/block-list.scss +33 -8
  30. data/package-lock.json +42 -41
  31. data/package.json +14 -14
  32. metadata +2 -3
  33. data/node_modules/bulma/CHANGELOG.md +0 -1558
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61f5f47e2d67eacb651718cd616fb5cc57fe56a6c785bcf03d4efbf716a2a37e
4
- data.tar.gz: 444444ad7f41cac6ea53f2846b0741e0cb7ab9c596a1c6e3e82a53c24a36926c
3
+ metadata.gz: 3869f4e59861198fc7be645c044dc4c5d9cea581b508dff4dcb9fd5a3d2d339b
4
+ data.tar.gz: 3a3e9582d4d371bc4dbaff9b82371a12d10cc8153bd1a608997b8508147fcaf4
5
5
  SHA512:
6
- metadata.gz: 2b671bb0e97e049cc04e160987b716e26b82cd7f28de7d6b9546b4f1b5d185111c7ceb0c019fbc64155203fefef48e188b5725dd5cfeeaab2a76c8814e0d893c
7
- data.tar.gz: 4b6a9be3e387eb0c2f6182ea57d9f6a45ea4e3006ceb2ff8b56e21d00749ad60327a401ede5bd103328b689eaca04fe71f837ab69b51e9f7e896082691ed5e3c
6
+ metadata.gz: f7ab8a27a4547bf037d0efa5a9c0f9c542b8c50e6da551bef25494b8c7108c5b3e7fb813f6e5d3718e3c14abd3d23b9f269d014bb3f857fba54ead6e0b7389fa
7
+ data.tar.gz: a1506ddacf93f729d81e7ac2ebf6c37e67f8681880f351649a1cb29a89f18b4e018c85c7035fc61ac5343b1a6ddb0f6b304fa379c0213587d9393d3c455127e8
data/_includes/head.html CHANGED
@@ -12,6 +12,9 @@
12
12
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@1/bin/bulma-social.min.css">
13
13
  {% endunless %}
14
14
  {% seo %}
15
+ {% if site.feed %}
16
+ {% feed_meta %}
17
+ {% endif %}
15
18
  {%- if site.google_analytics -%}
16
19
  {%- include google-analytics.html -%}
17
20
  {%- endif -%}
@@ -1,11 +1,11 @@
1
- <div x-data="{ open: false }">
2
- <a @click="open = true" title="View large image">
1
+ <div x-data="{ open: false }" markdown="0">
2
+ <a x-on:click="open = true" title="View large image">
3
3
  <figure class="image {{ include.ratio | default: is-16by9 }}">
4
4
  <img src="{{ include.link | absolute_url }}" alt="{{ include.alt }}">
5
5
  </figure>
6
6
  </a>
7
- <div class="modal" :class="{ 'is-active': open }">
8
- <div class="modal-background" @click="open = false"></div>
7
+ <div class="modal" x-bind:class="open ? 'is-active' : ''" x-cloak>
8
+ <div class="modal-background" x-on:click="open = false"></div>
9
9
  <div class="modal-content">
10
10
  {% if include.large_link %}
11
11
  <img src="{{ include.large_link | absolute_url }}" alt="{{ include.alt }}">
@@ -13,6 +13,6 @@
13
13
  <img src="{{ include.link | absolute_url }}" alt="{{ include.alt }}">
14
14
  {% endif %}
15
15
  </div>
16
- <button class="modal-close is-large" aria-label="close" @click="open = false"></button>
16
+ <button class="modal-close is-large" aria-label="close" x-on:click="open = false"></button>
17
17
  </div>
18
18
  </div>
@@ -12,6 +12,7 @@
12
12
  {% endif %}
13
13
 
14
14
  <html
15
+ dir="{{ site.direction | default: 'ltr' }}"
15
16
  lang="{{ site.lang | default: 'en' }}"
16
17
  {% if site.fixed_navbar %}class="has-navbar-fixed-{{ site.fixed_navbar }}"{% endif %}>
17
18
  {% include head.html %}
data/_sass/_layout.scss CHANGED
@@ -34,4 +34,7 @@ div.highlight {
34
34
  height: 4rem;
35
35
  margin-bottom: 0.75rem;
36
36
  }
37
- }
37
+ }
38
+
39
+ // Alpine.js hide on initial load
40
+ [x-cloak] { display: none !important; }
@@ -1,21 +1,21 @@
1
1
  {
2
- "name": "bulma-clean-theme",
3
- "version": "1.0.0",
4
- "lockfileVersion": 2,
5
- "requires": true,
6
- "packages": {
7
- "node_modules/bulma": {
8
- "version": "0.9.3",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.3.tgz",
10
- "integrity": "sha512-0d7GNW1PY4ud8TWxdNcP6Cc8Bu7MxcntD/RRLGWuiw/s0a9P+XlH/6QoOIrmbj6o8WWJzJYhytiu9nFjTszk1g=="
11
- },
12
- "node_modules/bulma-block-list": {
13
- "version": "0.6.0",
14
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.6.0.tgz",
15
- "integrity": "sha512-Ub+5DS14YN1zTxfq2WbP7c3wfUKq2SpOTbFa8brhHUJe73WSfIgXQg02SYpbYWGalEkaflIRjzGKX35N4/jGOA==",
16
- "dependencies": {
17
- "bulma": "^0.9.3"
18
- }
2
+ "name": "bulma-clean-theme",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {
7
+ "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=="
11
+ },
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==",
16
+ "dependencies": {
17
+ "bulma": "^0.9.3"
18
+ }
19
+ }
19
20
  }
20
- }
21
21
  }
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Jeremy Thomas
3
+ Copyright (c) 2022 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
@@ -37,6 +37,7 @@ bower install bulma
37
37
  ```
38
38
 
39
39
  ### Import
40
+
40
41
  After installation, you can import the CSS file into your project using this snippet:
41
42
 
42
43
  ```sh
@@ -61,11 +62,11 @@ There is **no** JavaScript included. People generally want to use their own JS i
61
62
 
62
63
  Bulma uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](https://caniuse.com/#feat=flexbox), Bulma is compatible with **recent** versions of:
63
64
 
64
- * Chrome
65
- * Edge
66
- * Firefox
67
- * Opera
68
- * Safari
65
+ - Chrome
66
+ - Edge
67
+ - Firefox
68
+ - Opera
69
+ - Safari
69
70
 
70
71
  Internet Explorer (10+) is only partially supported.
71
72
 
@@ -77,58 +78,62 @@ Browse the [online documentation here.](https://bulma.io/documentation/overview/
77
78
 
78
79
  ## Related projects
79
80
 
80
- | Project | Description |
81
- |--------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
82
- | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
83
- | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
84
- | [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
85
- | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
86
- | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
87
- | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
88
- | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
89
- | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
90
- | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
91
- | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
92
- | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
93
- | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-* API |
94
- | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
95
- | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus
96
- | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
97
- | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
98
- | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
99
- | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
100
- | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
101
- | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
102
- | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
103
- | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
104
- | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
105
- | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
106
- | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
107
- | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
108
- | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
109
- | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
110
- | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
111
- | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
112
- | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
113
- | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
114
- | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
115
- | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
116
- | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
117
- | [Trunx](http://g14n.info/trunx) | Super Saiyan React components, son of awesome Bulma, implemented in TypeScript |
118
- | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
119
- | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
120
- | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
121
- | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
122
- | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
123
- | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
124
- | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
125
- | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
126
- | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
81
+ | Project | Description |
82
+ | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
83
+ | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
84
+ | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
85
+ | [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
86
+ | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
87
+ | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
88
+ | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
89
+ | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
90
+ | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
91
+ | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
92
+ | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
93
+ | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
94
+ | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-\* API |
95
+ | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
96
+ | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus |
97
+ | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
98
+ | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
99
+ | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
100
+ | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
101
+ | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
102
+ | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
103
+ | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
104
+ | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
105
+ | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
106
+ | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
107
+ | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
108
+ | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
109
+ | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
110
+ | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
111
+ | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
112
+ | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
113
+ | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
114
+ | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
115
+ | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
116
+ | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
117
+ | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
118
+ | [Trunx](http://g14n.info/trunx) | Super Saiyan React components, son of awesome Bulma, implemented in TypeScript |
119
+ | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
120
+ | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
121
+ | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
122
+ | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
123
+ | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
124
+ | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
125
+ | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
126
+ | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
127
+ | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
128
+ | [Blazorise](https://github.com/Megabit/Blazorise) | Blazor component library with the support for Bulma CSS framework |
129
+ | [Oruga-Bulma](https://github.com/oruga-ui/theme-bulma) | Bulma theme for [Oruga UI](https://oruga.io) |
130
+ | [@bulvar/bulma](https://github.com/daniil4udo/bulvar/tree/master/packages/bulma) | Bulma with [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) support |
131
+ | [@angular-bulma](https://quinnjr.github.io/angular-bulma) | [Angular](https://angular.io/) directives and components to use in your Bulma projects |
127
132
 
128
133
  ## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
129
134
 
130
- Code copyright 2021 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
135
+ Code copyright 2022 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
131
136
 
132
137
  [npm-link]: https://www.npmjs.com/package/bulma
133
- [awesome-link]: https://github.com/awesome-css-group/awesome-css
138
+ [awesome-link]: https://github.com/awesome-css-group/awesome-css
134
139
  [awesome-badge]: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
@@ -1,5 +1,5 @@
1
1
  @charset "utf-8"
2
- /*! bulma.io v0.9.3 | MIT License | github.com/jgthms/bulma */
2
+ /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
3
3
  @import "sass/utilities/_all"
4
4
  @import "sass/base/_all"
5
5
  @import "sass/elements/_all"
@@ -1,4 +1,4 @@
1
- /*! bulma.io v0.9.3 | MIT License | github.com/jgthms/bulma */
1
+ /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
2
2
  /* Bulma Utilities */
3
3
  .button, .input, .textarea, .select select, .file-cta,
4
4
  .file-name, .pagination-previous,
@@ -611,7 +611,7 @@ fieldset[disabled] .button.is-text {
611
611
  .button.is-white[disabled],
612
612
  fieldset[disabled] .button.is-white {
613
613
  background-color: white;
614
- border-color: transparent;
614
+ border-color: white;
615
615
  box-shadow: none;
616
616
  }
617
617
 
@@ -717,7 +717,7 @@ fieldset[disabled] .button.is-white.is-inverted.is-outlined {
717
717
  .button.is-black[disabled],
718
718
  fieldset[disabled] .button.is-black {
719
719
  background-color: #0a0a0a;
720
- border-color: transparent;
720
+ border-color: #0a0a0a;
721
721
  box-shadow: none;
722
722
  }
723
723
 
@@ -823,7 +823,7 @@ fieldset[disabled] .button.is-black.is-inverted.is-outlined {
823
823
  .button.is-light[disabled],
824
824
  fieldset[disabled] .button.is-light {
825
825
  background-color: whitesmoke;
826
- border-color: transparent;
826
+ border-color: whitesmoke;
827
827
  box-shadow: none;
828
828
  }
829
829
 
@@ -929,7 +929,7 @@ fieldset[disabled] .button.is-light.is-inverted.is-outlined {
929
929
  .button.is-dark[disabled],
930
930
  fieldset[disabled] .button.is-dark {
931
931
  background-color: #363636;
932
- border-color: transparent;
932
+ border-color: #363636;
933
933
  box-shadow: none;
934
934
  }
935
935
 
@@ -1035,7 +1035,7 @@ fieldset[disabled] .button.is-dark.is-inverted.is-outlined {
1035
1035
  .button.is-primary[disabled],
1036
1036
  fieldset[disabled] .button.is-primary {
1037
1037
  background-color: #00d1b2;
1038
- border-color: transparent;
1038
+ border-color: #00d1b2;
1039
1039
  box-shadow: none;
1040
1040
  }
1041
1041
 
@@ -1158,7 +1158,7 @@ fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
1158
1158
  .button.is-link[disabled],
1159
1159
  fieldset[disabled] .button.is-link {
1160
1160
  background-color: #485fc7;
1161
- border-color: transparent;
1161
+ border-color: #485fc7;
1162
1162
  box-shadow: none;
1163
1163
  }
1164
1164
 
@@ -1281,7 +1281,7 @@ fieldset[disabled] .button.is-link.is-inverted.is-outlined {
1281
1281
  .button.is-info[disabled],
1282
1282
  fieldset[disabled] .button.is-info {
1283
1283
  background-color: #3e8ed0;
1284
- border-color: transparent;
1284
+ border-color: #3e8ed0;
1285
1285
  box-shadow: none;
1286
1286
  }
1287
1287
 
@@ -1404,7 +1404,7 @@ fieldset[disabled] .button.is-info.is-inverted.is-outlined {
1404
1404
  .button.is-success[disabled],
1405
1405
  fieldset[disabled] .button.is-success {
1406
1406
  background-color: #48c78e;
1407
- border-color: transparent;
1407
+ border-color: #48c78e;
1408
1408
  box-shadow: none;
1409
1409
  }
1410
1410
 
@@ -1527,7 +1527,7 @@ fieldset[disabled] .button.is-success.is-inverted.is-outlined {
1527
1527
  .button.is-warning[disabled],
1528
1528
  fieldset[disabled] .button.is-warning {
1529
1529
  background-color: #ffe08a;
1530
- border-color: transparent;
1530
+ border-color: #ffe08a;
1531
1531
  box-shadow: none;
1532
1532
  }
1533
1533
 
@@ -1650,7 +1650,7 @@ fieldset[disabled] .button.is-warning.is-inverted.is-outlined {
1650
1650
  .button.is-danger[disabled],
1651
1651
  fieldset[disabled] .button.is-danger {
1652
1652
  background-color: #f14668;
1653
- border-color: transparent;
1653
+ border-color: #f14668;
1654
1654
  box-shadow: none;
1655
1655
  }
1656
1656
 
@@ -1891,6 +1891,38 @@ fieldset[disabled] .button {
1891
1891
  margin-right: 0.25rem;
1892
1892
  }
1893
1893
 
1894
+ @media screen and (max-width: 768px) {
1895
+ .button.is-responsive.is-small {
1896
+ font-size: 0.5625rem;
1897
+ }
1898
+ .button.is-responsive,
1899
+ .button.is-responsive.is-normal {
1900
+ font-size: 0.65625rem;
1901
+ }
1902
+ .button.is-responsive.is-medium {
1903
+ font-size: 0.75rem;
1904
+ }
1905
+ .button.is-responsive.is-large {
1906
+ font-size: 1rem;
1907
+ }
1908
+ }
1909
+
1910
+ @media screen and (min-width: 769px) and (max-width: 1023px) {
1911
+ .button.is-responsive.is-small {
1912
+ font-size: 0.65625rem;
1913
+ }
1914
+ .button.is-responsive,
1915
+ .button.is-responsive.is-normal {
1916
+ font-size: 0.75rem;
1917
+ }
1918
+ .button.is-responsive.is-medium {
1919
+ font-size: 1rem;
1920
+ }
1921
+ .button.is-responsive.is-large {
1922
+ font-size: 1.25rem;
1923
+ }
1924
+ }
1925
+
1894
1926
  .container {
1895
1927
  flex-grow: 1;
1896
1928
  margin: 0 auto;
@@ -2805,7 +2837,7 @@ div.icon-text {
2805
2837
  }
2806
2838
 
2807
2839
  .table th:not([align]) {
2808
- text-align: inherit;
2840
+ text-align: left;
2809
2841
  }
2810
2842
 
2811
2843
  .table tr.is-selected {
@@ -3753,7 +3785,8 @@ fieldset[disabled] .select select:hover {
3753
3785
  }
3754
3786
 
3755
3787
  .select.is-disabled::after {
3756
- border-color: #7a7a7a;
3788
+ border-color: #7a7a7a !important;
3789
+ opacity: 0.5;
3757
3790
  }
3758
3791
 
3759
3792
  .select.is-fullwidth {
@@ -6060,6 +6093,11 @@ body.has-navbar-fixed-bottom {
6060
6093
 
6061
6094
  .navbar-burger {
6062
6095
  color: #4a4a4a;
6096
+ -moz-appearance: none;
6097
+ -webkit-appearance: none;
6098
+ appearance: none;
6099
+ background: none;
6100
+ border: none;
6063
6101
  cursor: pointer;
6064
6102
  display: block;
6065
6103
  height: 3.25rem;
@@ -6524,9 +6562,11 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
6524
6562
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
6525
6563
  }
6526
6564
 
6527
- .pagination-previous[disabled],
6565
+ .pagination-previous[disabled], .pagination-previous.is-disabled,
6528
6566
  .pagination-next[disabled],
6529
- .pagination-link[disabled] {
6567
+ .pagination-next.is-disabled,
6568
+ .pagination-link[disabled],
6569
+ .pagination-link.is-disabled {
6530
6570
  background-color: #dbdbdb;
6531
6571
  border-color: #dbdbdb;
6532
6572
  box-shadow: none;