Hello,
When adding more settings to my theme, it started to become apparent Discourse was ignoring them.
Code:
#main-outlet-wrapper .sidebar-wrapper {
@if $Full_Width == true {
left: 10px;
}
}
@if $Full_Width == true {
:root {
--d-max-width: 95%;
}
#main-outlet {
max-width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 5px;
margin-bottom: 50px;
}
}
This code doesn’t do anything, no matter the value of the setting.
However, if I remove == true
, it’ll always be enabled no matter what.
This also seems to be the issue with any other bool? I read the sass docs and my code matches and it still does not work.
div#main-outlet.wrap.not-found-container,
#main-outlet-wrapper {
#main-outlet,
.sidebar-wrapper {
@if $Is_Background_Blurred {
backdrop-filter: blur(3rem) !important;
background-color: #0a0a0aa6 !important;
input[type],
.select-kit.combo-box .select-kit-header,
.d-editor-textarea-wrapper,
div.ac-wrap {
background: transparent;
}
}
@else {
backdrop-filter: none !important;
background-color: var(--secondary) !important;
input[type],
.select-kit.combo-box .select-kit-header,
.d-editor-textarea-wrapper,
div.ac-wrap {
background: transparent;
}
}
}
}
Thanks for any help.