Fix CSS variable name typo.
parent
b90ed72ef6
commit
53e9b3f9f7
|
|
@ -127,8 +127,8 @@
|
||||||
|
|
||||||
.admin-interface #branding h1 img.logo,
|
.admin-interface #branding h1 img.logo,
|
||||||
.admin-interface.login #header #branding h1 img.logo {
|
.admin-interface.login #header #branding h1 img.logo {
|
||||||
max-width: var(--admin-interface-log-max-width);
|
max-width: var(--admin-interface-logo-max-width);
|
||||||
max-height: var(--admin-interface-log-max-height);
|
max-height: var(--admin-interface-logo-max-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface #header #user-tools a {
|
.admin-interface #header #user-tools a {
|
||||||
|
|
|
||||||
|
|
@ -44,15 +44,15 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if theme.logo_max_width > 0 %}
|
{% if theme.logo_max_width > 0 %}
|
||||||
--admin-interface-log-max-width: min({{ theme.logo_max_width }}px, 100%);
|
--admin-interface-logo-max-width: min({{ theme.logo_max_width }}px, 100%);
|
||||||
{% else %}
|
{% else %}
|
||||||
--admin-interface-log-max-width: 100%;
|
--admin-interface-logo-max-width: 100%;
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if theme.logo_max_height > 0 %}
|
{% if theme.logo_max_height > 0 %}
|
||||||
--admin-interface-log-max-height: {{ theme.logo_max_height }}px;
|
--admin-interface-logo-max-height: {{ theme.logo_max_height }}px;
|
||||||
{% else %}
|
{% else %}
|
||||||
--admin-interface-log-max-height: unset;
|
--admin-interface-logo-max-height: unset;
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if theme.related_modal_rounded_corners %}
|
{% if theme.related_modal_rounded_corners %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue