Initial commit
This commit is contained in:
11
typo3conf/ext/if_access_buttons/Resources/Private/.htaccess
Normal file
11
typo3conf/ext/if_access_buttons/Resources/Private/.htaccess
Normal file
@@ -0,0 +1,11 @@
|
||||
# Apache < 2.3
|
||||
<IfModule !mod_authz_core.c>
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</IfModule>
|
||||
|
||||
# Apache >= 2.3
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<xliff version="1.0">
|
||||
<file source-language="en" target-language="de" datatype="plaintext" original="messages" date="2016-02-08T08:24:20Z" product-name="if_access_buttons">
|
||||
<header/>
|
||||
<body>
|
||||
<trans-unit id="tx_ifaccessbuttons_domain_model_accessibilitybuttons">
|
||||
<source>Accessibility Buttons</source>
|
||||
<target>Barrierefreiheit Buttons</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="contrast_on">
|
||||
<source>Switch contrast view on</source>
|
||||
<target>Kontrastansicht einschalten</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="contrast_off">
|
||||
<source>Switch contrast view off</source>
|
||||
<target>Kontrastansicht ausschalten</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fonts_larger">
|
||||
<source>Increase font size</source>
|
||||
<target>Größere Schrift</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fonts_normal">
|
||||
<source>Normal font size</source>
|
||||
<target>Normale Schriftgröße</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="const.settings.cssFileKontrast">
|
||||
<source>Path to CSS file for contrast view</source>
|
||||
<target>Pfad zur CSS-Datei für Kontrastansicht</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="const.settings.cssFileFontsize">
|
||||
<source>Path to CSS file for fontsize</source>
|
||||
<target>Pfad zur CSS-Datei für größere Schrift</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<xliff version="1.0">
|
||||
<file source-language="en" datatype="plaintext" original="messages" date="2016-02-08T08:24:20Z" product-name="if_access_buttons">
|
||||
<header/>
|
||||
<body>
|
||||
<trans-unit id="tx_ifaccessbuttons_domain_model_accessibilitybuttons">
|
||||
<source>Accessibility Buttons</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="contrast_on">
|
||||
<source>Switch contrast view on</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="contrast_off">
|
||||
<source>Switch contrast view off</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="fonts_larger">
|
||||
<source>Increase font size</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="fonts_normal">
|
||||
<source>Normal font size</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="const.settings.cssFileKontrast">
|
||||
<source>Path to CSS file for contrast view</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="const.settings.cssFileFontsize">
|
||||
<source>Path to CSS file for fontsize</source>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<xliff version="1.0">
|
||||
<file source-language="en" datatype="plaintext" original="messages" date="2016-02-08T08:24:20Z" product-name="if_access_buttons">
|
||||
<header/>
|
||||
<body>
|
||||
<trans-unit id="tx_ifaccessbuttons_domain_model_accessibilitybuttons">
|
||||
<source>Accessibility Buttons</source>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
<f:render section="main" />
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
<i class="fa fa-text-height" id="schrift_toggle" title="{f:translate(key: '{accessibilityButtons.fontsize_title}')}"></i>
|
||||
<i class="fa fa-adjust" id="kontrast_toggle" title="{f:translate(key: '{accessibilityButtons.contrast_title}')}"></i>
|
||||
@@ -0,0 +1,18 @@
|
||||
|
||||
<f:layout name="Default" />
|
||||
|
||||
This Template is responsible for displaying a single view for a domain object
|
||||
|
||||
If you modify this template, do not forget to change the overwrite settings
|
||||
in /Configuration/ExtensionBuilder/settings.yaml:
|
||||
Resources:
|
||||
Private:
|
||||
Templates:
|
||||
Show.html: keep
|
||||
|
||||
Otherwise your changes will be overwritten the next time you save the extension in the extension builder
|
||||
|
||||
<f:section name="main">
|
||||
<f:flashMessages renderMode="div" />
|
||||
<f:render partial="AccessibilityButtons/Properties" arguments="{accessibilityButtons:accessibilityButtons}" />
|
||||
</f:section>
|
||||
@@ -0,0 +1,118 @@
|
||||
#header .name, #header .name a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#header .nav,
|
||||
#header .nav > li > ul,
|
||||
#header .navbutton,
|
||||
.fortschritt li.hier span:before {
|
||||
background: #333;
|
||||
}
|
||||
|
||||
#header .nav,
|
||||
#header .nav > li > ul {
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
#header .navbutton:hover {
|
||||
background: #fff;
|
||||
color: #333;
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
#header .nav > li a,
|
||||
#header .nav > li > ul > li a {
|
||||
border-color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#header .nav > li:hover,
|
||||
#header .nav > li > ul > li:hover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#header .nav > li:hover a,
|
||||
#header .nav > li > ul > li:hover a,
|
||||
#header .nav > li.hatsub > ul > li:hover a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#header .nav > li.hatsub > ul > li a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#planer .blau th,
|
||||
#planer .orange th,
|
||||
#planer .gelb th,
|
||||
#planer .gruen th,
|
||||
select.blau, .blau option,
|
||||
select.orange, .orange option,
|
||||
select.gelb, .gelb option,
|
||||
select.gruen, .gruen option {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#planer .blau td,
|
||||
#planer .orange td,
|
||||
#planer .gelb td,
|
||||
#planer .gruen td {
|
||||
background: #eee;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.planer-info {
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#planer tfoot td.ergebnis-text.fehler,
|
||||
#planer #add_profilfach .fa-plus-circle,
|
||||
#planer tr .entfernen {
|
||||
color: #333 !important;
|
||||
}
|
||||
|
||||
.weiter {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.rueck {
|
||||
background-color: #fff;
|
||||
border: 2px solid #333;
|
||||
padding: 3px 8px;
|
||||
}
|
||||
|
||||
.fortschritt li.ok, .fortschritt li.hier {
|
||||
border-color: #000;
|
||||
}
|
||||
|
||||
select {
|
||||
background-color: #fff;
|
||||
border: 2px solid #333;
|
||||
padding: 3px 8px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#inhalt .indexbox h2,
|
||||
.indexbox a.button {
|
||||
background: #333 !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
#inhalt .indexbox h2:after {
|
||||
border-color: #333 transparent transparent #333 !important;
|
||||
}
|
||||
|
||||
|
||||
#header .nav:after {
|
||||
right: -28px;
|
||||
border-color: #333 transparent transparent #333;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
body {
|
||||
font-size: 18px;
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 233 B |
Binary file not shown.
|
After Width: | Height: | Size: 533 B |
Reference in New Issue
Block a user