-
Notifications
You must be signed in to change notification settings - Fork 7
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
ELPP-3573 Resolve content header list wrapping #841
Conversation
I'll merge the latest |
@@ -121,13 +121,15 @@ | |||
<ol class="content-header__author_list"> | |||
{{#authors.list}} | |||
<li class="content-header__author_list_item"> | |||
<span class="content-header__author">{{#url}}<a href="{{url}}" data-behaviour="Popup" class="content-header__author_link">{{/url}}{{name}}{{#url}}</a>{{/url}}{{#isCorresponding}} | |||
<picture> | |||
<span class="content-header__author">{{#url}}<a href="{{url}}" data-behaviour="Popup" class="content-header__author_link">{{/url}}{{name}}{{#url}}</a>{{/url}}{{#isCorresponding}} {{! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can still recreate the original problem, looks like
doesn't fix non-text?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@giorgiosironi The S3 deploy doesn't seem to have the changes. I though #847 might solve the problem but apparently not. |
Seems that the problem is Lines 25 to 27 in 98748e5
|
This reverts commit 98748e5.
docker-compose.yml
Outdated
@@ -13,6 +13,8 @@ services: | |||
build: | |||
context: . | |||
dockerfile: Dockerfile | |||
args: | |||
commit: ${IMAGE_TAG} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@giorgiosironi This seems to be the fix (not setting means it always gets the latest
assets).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extracted into #849.
Main goal is to stop the corresponding author icon from wrapping:
But I've also spotted that the expander can wrap:
And the last-non-excess institution misses its separator:
Making the icon not wrap isn't hard, but the CSS-introduced comma is problematic. So, I'm thinking that it should be in the HTML (as ARIA hidden) and shown/displayed as appropriate.
(I've applied it to institutions as well even though they don't have the icon and can probably get away with it, for consistency.)