You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a Sass issue: I'm using version 1.47.0
I am sure this issue is not a duplicate?
Description
All variables in bulma/sass/utilites/derived-variables.sass that use bulmaToRGB are not set correctly because the bulmaToRGB function is missing (not imported) from the bulma/shared/functions.sass file.
The bulmaToRGB is only defined in the bulma/sass/utilites/functions.sass.
Possible solution would be to import shared/functions.sass into utilities/functions.sass or just to duplicate the bulmaToRGB function from bulma/shared/functions.sass into utilities/functions.sass.
Steps to Reproduce
As you can see in this jsbin, the bulma delete button is invisible because its background-color is missing caused by missing bulmaToRGB sass function.
This is about Bulma.
It's a bug in the library.
Overview of the problem
This is about the Bulma CSS framework
This is a Sass issue: I'm using version 1.47.0
I am sure this issue is not a duplicate?
Description
All variables in
bulma/sass/utilites/derived-variables.sass
that usebulmaToRGB
are not set correctly because thebulmaToRGB
function is missing (not imported) from thebulma/shared/functions.sass
file.The
bulmaToRGB
is only defined in thebulma/sass/utilites/functions.sass
.Possible solution would be to import
shared/functions.sass
intoutilities/functions.sass
or just to duplicate thebulmaToRGB
function frombulma/shared/functions.sass
intoutilities/functions.sass
.Steps to Reproduce
As you can see in this jsbin, the bulma delete button is invisible because its background-color is missing caused by missing bulmaToRGB sass function.
https://jsbin.com/lekikor/1/edit?html,output
Expected behavior
The RGB colors in
derived-variables.sass
should be transformed to their actual values.Actual behavior
The RGB colors in
derived-variables.sass
have invalid values likebackground-color: rgba(var(--scheme-invert-rgb, bulmaToRGB(#0a0a0a)), 0.2);
The text was updated successfully, but these errors were encountered: