Skip to content

Commit 0421e22

Browse files
authored
Merge pull request #10 from punktDe/FixToggleIcon
[TASK] Add own icons for toggle button
2 parents 1cc656e + 0e2751d commit 0421e22

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

Classes/Backend/PageLayoutHeader.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PunktDe\Quickedit\Backend;
66

77
/**
8-
* (c) 2020 https://punkt.de GmbH - Karlsruhe, Germany - https://punkt.de
8+
* (c) 2022 https://punkt.de GmbH - Karlsruhe, Germany - https://punkt.de
99
* All rights reserved.
1010
*/
1111

Classes/ViewHelpers/Be/EditRecordViewHelper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PunktDe\Quickedit\ViewHelpers\Be;
66

77
/**
8-
* (c) 2020 https://punkt.de GmbH - Karlsruhe, Germany - https://punkt.de
8+
* (c) 2022 https://punkt.de GmbH - Karlsruhe, Germany - https://punkt.de
99
* All rights reserved.
1010
*/
1111

Documentation/Changelog/Index.rst

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
Change log
77
==========
88

9+
Version 0.2.1
10+
-------------
11+
- Fix missing extension icon issue (https://github.com/punktDe/quickedit/issues/7)
12+
- Fix missing collapse/hide icons in TYPO3 10 (https://github.com/punktDe/quickedit/issues/8)
13+
914
Version 0.2.0
1015
-------------
1116

Documentation/Settings.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ project = Quickedit
2525
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
2626
# .................................................................................
2727

28-
release = 0.2.0
28+
release = 0.2.1
2929

3030
# .................................................................................
3131
# ... (recommended) displayed in footer
3232
# .................................................................................
3333

34-
copyright = by punkt.de 2020
34+
copyright = by punkt.de 2022
3535

3636
[html_theme_options]
3737

Resources/Public/Backend/Css/quickedit.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@
3535
border-top: 1px solid #bbb;
3636
}
3737

38-
.quickedit__toggle-button {
38+
.btn-default.quickedit__toggle-button {
3939
margin-top: -1px;
4040
border-top: none;
4141
width: 4rem;
4242
height: 2.5rem;
43-
background-image: url(../../../../../../../typo3/sysext/core/Resources/Public/Icons/T3Icons/actions/actions-view-list-collapse.svg);
43+
background-image: url(../../../../../../../typo3conf/ext/quickedit/Resources/Public/Icons/angle-up-solid.svg);
4444
background-position: center;
4545
background-repeat: no-repeat;
4646
background-size: 2rem 2rem;
4747
}
4848

49-
.quickedit__toggle-button.collapsed {
50-
background-image: url(../../../../../../../typo3/sysext/core/Resources/Public/Icons/T3Icons/actions/actions-view-list-expand.svg);
49+
.btn-default.quickedit__toggle-button.collapsed {
50+
background-image: url(../../../../../../../typo3conf/ext/quickedit/Resources/Public/Icons/angle-down-solid.svg);
5151
}
Loading
Loading

ext_emconf.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$EM_CONF[$_EXTKEY] = [
33
'title' => 'Toolbar for editing page properties',
44
'description' => 'This extension provides a configurable toolbar for editing page properties.',
5-
'version' => '0.2.0',
5+
'version' => '0.2.1',
66
'category' => 'be',
77
'constraints' => [
88
'depends' => [

0 commit comments

Comments
 (0)