Introducing CrudHunt:Open-source Full-stack CRUDs for Next.js by KeenThemes
Browse CrudHunt

Start Html Pro theme SCSS bugs


Hello,

we detected over 50 errors in the .scss files of the StartPro theme. These errors are caused by missing variables in the components\_variables.scss file causing mixins functions to return empty values resulting in css like this:


.text-inverse-muted {
color: !important; /* ERROR */
}
.text-hover-inverse-muted:hover {
transition: color 0.2s ease, background-color 0.2s ease;
color: !important; /* ERROR */
}
.text-hover-inverse-muted:hover i {
transition: color 0.2s ease, background-color 0.2s ease;
color: !important; /* ERROR */
}


You defined text colors that are not available in other variables:


$theme-text-colors: (
"white": $white,
"primary": $primary,
"secondary": $secondary,
"light": $light,
"success": $success,
"info": $info,
"warning": $warning,
"danger": $danger,
"dark": $dark,
"muted": $text-muted,
"gray-100": $gray-100,
"gray-200": $gray-200,
"gray-300": $gray-300,
"gray-400": $gray-400,
"gray-500": $gray-500,
"gray-600": $gray-600,
"gray-700": $gray-700,
"gray-800": $gray-800,
"gray-900": $gray-900
) !default; // Custom variable

$theme-inverse-colors: (
"white": $white-inverse,
"primary": $primary-inverse,
"secondary": $secondary-inverse,
"light": $light-inverse,
"success": $success-inverse,
"info": $info-inverse,
"warning": $warning-inverse,
"danger": $danger-inverse,
"dark": $dark-inverse
) !default; // Custom variable


As you can see, since the variables "muted" and "gray-xxx" are not present in the $theme-inverse-colors, $theme-active-colors or $theme-light-colors we get multiple errors when compiling. It's strange you haven't noticed since a compiler will warn about these errors.

We could fix this by hand of course, but it is important that you fix this so that we can update the theme in the future without having to worry about updating _variables.scss everytime.

What do you suggest?

Regards


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (0)