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
In templates/partials/navigation.html.twig the theme variables are used inconsistently. For example at the top of the file there is
{% set navbar_style = theme_var('navbar_style') %}
{% set navbar_bgcolor = theme_var('navbar_bgcolor') %}
while another theme variable is used as:
config.themes.bootstrap4.dropdown.enabled
This creates problems when making inherited themes based on bootstrap4 because navbar_style and navbar_bgcolor are loaded from the inherited theme while config.themes.bootstrap4.dropdown.enabled is loaded from the parent bootstrap4 theme.
The text was updated successfully, but these errors were encountered:
In
templates/partials/navigation.html.twig
the theme variables are used inconsistently. For example at the top of the file there iswhile another theme variable is used as:
This creates problems when making inherited themes based on bootstrap4 because
navbar_style
andnavbar_bgcolor
are loaded from the inherited theme whileconfig.themes.bootstrap4.dropdown.enabled
is loaded from the parent bootstrap4 theme.The text was updated successfully, but these errors were encountered: