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

TYPO3 v13 adjustments #38

Merged
merged 24 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
86090ee
fix: add trustedHostsPattern to init-typo3 command
maikschneider Sep 17, 2024
96480f9
fix: add v13 backend template with dark mode adjustments
maikschneider Sep 17, 2024
e497abb
fix: replace outline button with default button
maikschneider Sep 17, 2024
6291f5c
feat: re-add v13 tests
maikschneider Sep 17, 2024
15be048
fix: increase iframe height
maikschneider Sep 17, 2024
7889654
feat: sort messages by date desc
maikschneider Sep 17, 2024
0d44c37
fix: add context to codeception tests
maikschneider Sep 17, 2024
5747ca9
fix: replace outline buttons
maikschneider Sep 17, 2024
1422e5f
feat: re-build js
maikschneider Sep 17, 2024
f9f5b74
fix: simplify acceptance tests
maikschneider Sep 17, 2024
4de094b
fix: button style in delete modal
maikschneider Sep 17, 2024
f868c4c
feat: use firefox, increase window_size for acceptance tests
maikschneider Sep 17, 2024
e1e0b90
fix: retry command in github workflow
maikschneider Sep 17, 2024
753730a
fix: remove web-environment override for ddev
maikschneider Sep 18, 2024
d1d06b9
feat: run coverage in separate job
maikschneider Sep 18, 2024
4562744
fix: set XDEBUG_MODE to coverage
maikschneider Sep 18, 2024
82a6ec0
fix: install php8.3-pcov
maikschneider Sep 18, 2024
7265346
fix: create needed temp folder during @environment:prepare
maikschneider Sep 18, 2024
bdbf351
fix: install php8.3-pcov only in coverage job
maikschneider Sep 18, 2024
8a954bc
fix: add amOnPage('/') to all tests
maikschneider Sep 18, 2024
a3e5fcf
feat: add tests for highest and lowest dependencies
maikschneider Sep 18, 2024
b5f9abc
fix: remove lowest dependency install
maikschneider Sep 18, 2024
e20aa86
fix: remove retry command with only failed steps
maikschneider Sep 18, 2024
82c1795
fix: button style in v11
maikschneider Sep 18, 2024
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
Prev Previous commit
Next Next commit
fix: replace outline buttons
  • Loading branch information
maikschneider committed Sep 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5747ca909dc4b7b7e27ad42e528574cf08838f89
21 changes: 5 additions & 16 deletions Resources/Private/Templates/Backend/Index.html
Original file line number Diff line number Diff line change
@@ -9,14 +9,11 @@ <h1>Mail Log</h1>
<div class="row justify-content-md-center">
<div class="col">
<ul class="list-group">
<li class="list-group-item">Inbox (
<span class="message-count">{mails->f:count()}</span>
)
</li>
<li class="list-group-item">Inbox (<span class="message-count">{mails->f:count()}</span>)</li>
</ul>

<div class="text-center">
<button type="button" class="btn btn-outline-danger" id="delete-all-messages">
<button type="button" class="btn btn-danger" id="delete-all-messages">
<core:icon identifier="actions-delete" size="small" />
Delete all messages
</button>
@@ -81,15 +78,13 @@ <h1>Mail Log</h1>
</a>
</f:if>
<f:if condition="{mail.bodyHtml}">
<a class="btn {f:if(condition: mail.bodyPlain, then: 'btn-outline-primary', else: 'btn-primary')}"
<a class="btn {f:if(condition: mail.bodyPlain, then: 'btn-default', else: 'btn-primary')}"
data-content-type="html"
data-m-id="{i.cycle}">HTML
</a>
</f:if>
<f:if condition="{mail.attachments->f:count()}">
<a class="btn btn-outline-primary"
data-content-type="files"
data-m-id="{i.cycle}">Files
<a class="btn btn-default" data-content-type="files" data-m-id="{i.cycle}">Files
</a>
</f:if>
</div>
@@ -114,9 +109,7 @@ <h1>Mail Log</h1>
<div class="form-section hidden" data-content-type="files" data-m-id="{i.cycle}">
<f:for each="{mail.attachments}" as="file">{mail.publicPath}
<p>
<a href="{file.publicPath}"
class="btn btn-outline-primary"
download="{file.filename}">
<a href="{file.publicPath}" class="btn default" download="{file.filename}">
<core:icon identifier="actions-download" size="small" />
{file.filename} ({file.filesize->f:format.bytes()})
</a>
@@ -145,10 +138,6 @@ <h1>Mail Log</h1>
padding: 10px;
}

.btn-outline-primary:hover {
color: #fff;
}

.loading {
display: flex;
justify-content: center;
4 changes: 2 additions & 2 deletions Resources/Private/Templates/LegacyBackend/Index.html
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ <h1>Mail Log</h1>
</a>
</f:if>
<f:if condition="{mail.attachments->f:count()}">
<a class="btn btn-default btn-outline-default" data-content-type="files" data-m-id="{i.cycle}">Files
<a class="btn btn-default" data-content-type="files" data-m-id="{i.cycle}">Files
</a>
</f:if>
</div>
@@ -103,7 +103,7 @@ <h1>Mail Log</h1>
<div class="form-section hidden" data-content-type="files" data-m-id="{i.cycle}">
<f:for each="{mail.attachments}" as="file">{mail.publicPath}
<p>
<a href="{file.publicPath}" class="btn btn-default btn-outline-default" download="{file.filename}">
<a href="{file.publicPath}" class="btn btn-default" download="{file.filename}">
<core:icon identifier="actions-download" size="small"/>
{file.filename} ({file.filesize->f:format.bytes()})
</a>