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

UI fixes #404

Merged
merged 6 commits into from
May 13, 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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
Infobox styling
* [PR-405](https://github.com/itk-dev/hoeringsportal/pull/405)
Add paragraph for files
* [PR-404](https://github.com/itk-dev/hoeringsportal/pull/404)
UI fixes after project release

## [4.3.0] - 2024-04-29

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
display: inline-block;
}

p {
p, ul, ol {
font-size: 1.1rem;
line-height: 1.65;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{% set content_state = content.field_content_state['#items'].value %}
{% set type = content.field_type[0]['#plain_text'] %}
{% set project = content.field_project_reference[0]['#plain_text'] %}
<a href="{{ url }}" class="activity-teaser-inner activity-teaser-link-wrap">
<a href="{{ url }}" class="activity-teaser-inner activity-teaser-link-wrap text-decoration-none">

{# When deadline field exists add splash. #}
{% if (content.field_first_meeting_time) %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
<div class="d-none d-md-block">
<a aria-hidden="true" class="btn btn-secondary btn-sm" href="{{ path('hoeringsportal_citizen_proposal.support', {'node': content['#node'].id}) }}">{{ 'Support the proposal'|t }}</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
{{ right }}
</{{ right_wrapper }}>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{{ left }}
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
{{ right }}
</{{ right_wrapper }}>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
{{ right }}
</{{ right_wrapper }}>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
<h3>{{ 'Project info'|t }}</h3>
{{ right }}
</{{ right_wrapper }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
{{ right }}
</{{ right_wrapper }}>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</div>
</{{ left_wrapper }}>

<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4') }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right col-md-4 py-3') }}>
{{ right }}
</{{ right_wrapper }}>
</div>
Expand Down
Loading