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

BUGFIX: Workspace module: Tweak UX for collapsed rows in rewiew #5013

Merged
merged 1 commit into from May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -16,7 +16,7 @@
<table class="neos-table">
<thead>
<tr>
<th class="check neos-priority1">
<th class="check neos-priority1" style="width: 30px">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello inline ;)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello joker

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i hate css :D so fine with me :D

<label for="check-all" class="neos-checkbox">
<input type="checkbox" id="check-all" /><span></span>
</label>
Expand All @@ -30,17 +30,10 @@
<f:for each="{site.documents}" key="dimension" as="dimensions">
<f:for each="{dimensions}" key="documentPath" as="document">
<tr class="neos-document" data-nodepath="{document.documentNode.path}" data-ismoved="{f:if(condition: document.isMoved, then: 'true', else: 'false')}" data-isnew="{f:if(condition: document.isNew, then: 'true', else: 'false')}">
<f:if condition="{document.changes -> f:count()} > 1">
<f:then>
<td class="check neos-priority1">
<label for="check-document-{document.documentNode.identifier}" class="neos-checkbox"><f:form.checkbox id="check-document-{document.documentNode.identifier}" class="neos-check-document" value="{document.documentNode.identifier}"/><span></span></label>
</td>
<td class="neos-priority1 path-caption">
</f:then>
<f:else>
<td colspan="2" class="neos-priority1 path-caption">
</f:else>
</f:if>
<td class="check neos-priority1">
<label for="check-document-{document.documentNode.identifier}" class="neos-checkbox"><f:form.checkbox id="check-document-{document.documentNode.identifier}" class="neos-check-document" value="{document.documentNode.identifier}"/><span></span></label>
</td>
<td class="neos-priority1 path-caption">
<div class="neos-row-fluid">
<div class="neos-span2">
{neos:backend.translate(id: 'pathCaption', source: 'Main', package: 'Neos.Neos')}:
Expand Down