Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 [#2544] Added quickfix for non-URL dependent tab panels #1249

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/open_inwoner/scss/components/TabPanel/TabPanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

// Styling for Benefits reports/Mijn uitkeringen
.form {
//max-width: var(--mobile-ms-width);
max-width: var(--mobile-ms-width);

.form__actions {
margin-top: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ <h1 class="utrecht-heading-1" id="title">
</ul>
{% if client.config.maandspecificatie_enabled is True %}
<div class="tabs__body">
<div id="maandspecificaties" class="tab__content active">
{# Note: Mijn uitkeringen tab-content styles need to be independent from the URL, unlike the Tabs of the Login page #}
{# URL-dependent styles would be coming from src/open_inwoner/js/components/tab-panels #}
{# Setting class to 'tab__contents' instead of 'tab__content' is a quick-fix #}
<div id="maandspecificaties" class="tab__contents active">
<p>
{% blocktrans with display_text=client.config.maandspecificatie_display_text %}
{{ display_text }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ <h1 class="utrecht-heading-1" id="title">

{% if client.config.jaaropgave_enabled is True %}
<div class="tabs__body">
<div id="jaaropgaven" class="tab__content active">
{# Note: Mijn uitkeringen tab-content styles need to be independent from the URL, unlike the Tabs of the Login page #}
{# URL-dependent styles would be coming from src/open_inwoner/js/components/tab-panels #}
{# Setting class to 'tab__contents' instead of 'tab__content' is a quick-fix #}
<div id="maandspecificaties" class="tab__contents active">
<p>
{% blocktrans with jaaropgave_text=client.config.jaaropgave_display_text %}
{{ jaaropgave_text }}
Expand Down
Loading