Skip to content

Commit 7854181

Browse files
committed
Build 1.0.3
1 parent e23cfc1 commit 7854181

38 files changed

+27389
-21758
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ npm-debug.log
66
test.css
77
test.css.map
88
test.html
9+
test*.html
910
test.sass
1011
test.scss
1112
test.css

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
- Fix #3842: restore use of `$easing`, `$radius-rounded` and `$speed` Sass variables
88
- Fix #3920: migrate code to avoid Sass 1.80 deprecation warning of global built-in functions
9+
- Fix #3822: Non-minified version of bulma-prefixed was missing
10+
- Fix #3805: helper classes were missing prefix
911

1012
### Documentation Fixes
1113

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bulma",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"homepage": "https://bulma.io",
55
"authors": ["jgthms <[email protected]>"],
66
"description": "Modern CSS framework based on Flexbox",

bulma.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@charset "utf-8";
22

3-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
3+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
44
@use "sass";

css/bulma.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "UTF-8";
2-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
2+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
33
/* Bulma Utilities */
44
:root {
55
--bulma-control-radius: var(--bulma-radius);
@@ -3784,6 +3784,10 @@ a.box:active {
37843784
--bulma-button-border-width: max(2px, 0.125em);
37853785
--bulma-button-outer-shadow-alpha: 1;
37863786
}
3787+
.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
3788+
background-color: transparent;
3789+
box-shadow: none;
3790+
}
37873791
.button.is-inverted {
37883792
background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
37893793
color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));

css/bulma.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-dark-mode.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "UTF-8";
2-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
2+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
33
/* Bulma Utilities */
44
:root {
55
--bulma-control-radius: var(--bulma-radius);
@@ -981,6 +981,10 @@ a.box:active {
981981
--bulma-button-border-width: max(2px, 0.125em);
982982
--bulma-button-outer-shadow-alpha: 1;
983983
}
984+
.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
985+
background-color: transparent;
986+
box-shadow: none;
987+
}
984988
.button.is-inverted {
985989
background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
986990
color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));

css/versions/bulma-no-dark-mode.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-dark-mode.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)