From 48b6f1a9db0d1688d29ed6050509cbfed80165d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 7 Jun 2022 15:14:35 +0200 Subject: [PATCH] Add dedicated button background class to simplify theming --- .../ep_theme/Configuration/RTE/Default.yaml | 4 +- .../Assets/scss/components/_buttons.scss | 28 ++- .../Private/Partials/City/Teaser.html | 2 +- .../Private/Partials/ContactForm/Error.html | 2 +- .../Private/Partials/ContactForm/Full.html | 91 --------- .../Private/Partials/ContactForm/Simple.html | 60 ------ .../Private/Partials/ContactForm/Success.html | 2 +- .../Private/Partials/Disrupter/Large.html | 2 +- .../Private/Partials/Disrupter/Small.html | 2 +- .../Private/Partials/Disturber/Large.html | 2 +- .../Private/Partials/Disturber/Small.html | 2 +- .../Private/Partials/EventDisturber.html | 2 +- .../Partials/Form/Form/Navigation.html | 6 +- .../Private/Partials/HeaderSlider.html | 4 +- .../Private/Partials/HeaderSliderSmall.html | 2 +- .../Private/Partials/Hotel/Details.html | 4 +- .../Private/Partials/Hotel/Teaser.html | 2 +- .../Partials/Hotel/TeaserExtended.html | 32 ---- .../Private/Partials/Hotel/TeaserSimple.html | 30 --- .../Private/Partials/Hotel/TeaserWide.html | 173 ------------------ .../Private/Partials/Menu/Type-3.html | 24 --- .../Resources/Private/Partials/Mobilenav.html | 6 +- .../Private/Partials/News/List/Item.html | 2 +- .../Private/Partials/Pricetable.html | 2 +- .../Private/Partials/Product/Details.html | 2 +- .../Partials/Product/HeaderDetail.html | 2 +- .../Private/Partials/Product/Teaser.html | 2 +- .../Private/Partials/Region/Details.html | 2 +- .../Private/Partials/Region/Teaser.html | 2 +- .../Private/Partials/Search/Main.html | 2 +- .../Private/Partials/Teaser/OneColumn.html | 2 +- .../Private/Partials/Teaser/TwoColumn.html | 2 +- .../Templates/AjaxFilterPanel/Index.html | 2 +- .../Templates/AjaxTable/Pricetable.html | 6 +- .../Private/Templates/City/Detail.html | 6 +- .../Private/Templates/Concept/Detail.html | 4 +- .../Private/Templates/Country/Detail.html | 6 +- .../Templates/FluidStyledContent/Button.html | 2 +- .../FluidStyledContent/MenuSection.html | 2 +- .../FluidStyledContent/MenuSectionPages.html | 4 +- .../FluidStyledContent/MenuSubpages.html | 2 +- .../FluidStyledContent/TeaserCountry.html | 2 +- .../Private/Templates/Hotel/Detail.html | 4 +- .../Private/Templates/News/News/Detail.html | 2 +- .../ViewHelpers/Widget/Paginate/Index.html | 16 +- .../Private/Templates/Product/Detail.html | 28 +-- .../Templates/Product/Teasergroup.html | 2 +- .../Private/Templates/Region/Detail.html | 4 +- .../Private/Templates/Searchbar/Index.html | 8 +- .../Private/Templates/Team/Show.html | 2 +- 50 files changed, 101 insertions(+), 503 deletions(-) delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Full.html delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Simple.html delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/Hotel/TeaserExtended.html delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/Hotel/TeaserSimple.html delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/Hotel/TeaserWide.html delete mode 100644 public/typo3conf/ext/ep_theme/Resources/Private/Partials/Menu/Type-3.html diff --git a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml index 5c17d12e..0e2433e1 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml +++ b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml @@ -10,8 +10,8 @@ editor: - "EXT:ep_theme/Resources/Public/css/rte.css?v=2020.02-01" stylesSet: - - { name: "Button", element: "a", attributes: { 'class': 'button' } } - - { name: "Button (volle Breite)", element: "a", attributes: { 'class': 'button button--full' } } + - { name: "Button", element: "a", attributes: { 'class': 'button bg-button' } } + - { name: "Button (volle Breite)", element: "a", attributes: { 'class': 'button bg-button button--full' } } toolbarGroups: - { name: styles, groups: [ format, styles ] } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss index b8e9ebaa..89939a49 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/components/_buttons.scss @@ -2,12 +2,23 @@ @apply inline-flex items-center justify-center space-x-2 px-4 py-2 md:px-8 cursor-pointer; @apply uppercase leading-none text-center; @apply transition-colors outline-none focus:outline-none; + + &--small { + @apply px-2 py-1 md:px-4 text-xs sm:text-sm; + } + + &--full { + @apply block w-full; + } +} + +.bg-button { @apply bg-ep-primary-light text-white; @apply sbw:bg-sbw-secondary; @apply snz:bg-snz-secondary; @apply uch:bg-uch-secondary; @apply ser:bg-ser-secondary; - @apply hover:bg-ep-primary-dark group-hover:bg-ep-primary-dark; + @apply hover:bg-ep-secondary group-hover:bg-ep-secondary; @apply sbw:hover:bg-sbw-primary-dark sbw:group-hover:bg-sbw-primary-dark; @apply snz:hover:bg-snz-primary-dark snz:group-hover:bg-snz-primary-dark; @apply uch:hover:bg-uch-primary-dark uch:group-hover:bg-uch-primary-dark; @@ -19,13 +30,18 @@ @apply sbw:bg-sbw-primary; @apply snz:bg-snz-primary; @apply uch:bg-uch-primary; - @apply ser:bg-ser-primary; + @apply ser:bg-ser-secondary; } &--muted { @apply bg-gray-300 hover:bg-gray-300; } + &--dark { + @apply bg-ep-primary-dark; + @apply ser:bg-ser-primary; + } + &--light { @apply bg-white border-2; @apply font-bold; @@ -45,12 +61,4 @@ @apply ser:bg-white ser:border-ser-secondary ser:text-ser-secondary; } } - - &--small { - @apply px-2 py-1 md:px-4 text-xs sm:text-sm; - } - - &--full { - @apply block w-full; - } } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/City/Teaser.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/City/Teaser.html index d42b5a3b..80e9aedb 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/City/Teaser.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/City/Teaser.html @@ -41,7 +41,7 @@ {city.teaser -> f:format.crop(maxCharacters: settings.teaserTextMaxChars) -> f:format.html()} + class="button bg-button w-full"> {f:translate(key: 'tx_eptheme.label.teaserbutton.default', extensionName: 'ep_theme')} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Error.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Error.html index 721ffac6..be31d827 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Error.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Error.html @@ -8,7 +8,7 @@
Neue Anfrage diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Full.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Full.html deleted file mode 100644 index c323a4fa..00000000 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Full.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - Betreff* - - - - Name* - - - - - Vorname* - - - - - Gender* - - - - - Firma/Verein* - - - - - E-Mail* - - - - - Telefon/Fax* - - - - - Zeitraum - - - - - Aufenthaltsdauer - - - - - Anzahl der Personen - - - - - Durchschnittsalter - - - - - - - Kinder (ja/nein) - - - - (Zusatz-) Wünsche - - - - - Ich habe die Datenschutzbestimmungen gelesen und akzeptiert. - - - - Jetzt anfragen - - - - - diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Simple.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Simple.html deleted file mode 100644 index ab6b9995..00000000 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Simple.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - Betreff* - - - - Gender* - - - - - Name* - - - - - Vorname* - - - - - E-Mail* - - - - - Telefon/Fax* - - - - - (Zusatz-) Wünsche - - - - - Ich habe die Datenschutzbestimmungen gelesen und akzeptiert. - - - - Jetzt anfragen - - - - - diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Success.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Success.html index f74b0183..570d878a 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Success.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/ContactForm/Success.html @@ -9,7 +9,7 @@
Neue Anfrage diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html index 550f6848..cfe248c5 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Disrupter/Large.html @@ -50,7 +50,7 @@
- {product.region.name} | {product.name} -
{item.hotel.name -> f:format.nl2br()}
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Concept/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Concept/Detail.html index 541188cc..cca24c21 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Concept/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Concept/Detail.html @@ -65,7 +65,7 @@ - Alle anzeigen @@ -88,7 +88,7 @@ + class="button bg-button {f:if(condition: '{data.pid} == {page.uid}', then: 'bg-button--active', else: 'bg-button--light')} w-full"> {page.title} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Country/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Country/Detail.html index 16227230..47cd5988 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Country/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Country/Detail.html @@ -14,7 +14,7 @@ @@ -76,7 +76,7 @@ - Alle anzeigen @@ -99,7 +99,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html index 10b22f6a..70d20835 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html @@ -7,7 +7,7 @@ - + {data.header} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html index 1a52f6d9..a032b664 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html @@ -15,7 +15,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html index 75bebd7c..ca807062 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html @@ -11,14 +11,14 @@ - + {page.title} - + {element.data.header} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html index 46d3bd23..eaa4848d 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html @@ -8,7 +8,7 @@ + class="button w-full bg-button {f:if(condition: '{page.active}', then: 'bg-button--active', else: 'bg-button--light')}"> {page.data.title} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html index 3e80528f..388a8d23 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html @@ -27,7 +27,7 @@ {country.teaser -> f:format.crop(maxCharacters: settings.teaserTextMaxChars) -> f:format.html()} + class="button bg-button w-full"> {data.button -> v:or(alternative: 'Details')} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html index b67b342b..1b42adf8 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html @@ -13,7 +13,7 @@ @@ -32,7 +32,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html index bd72a691..d98cc654 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html @@ -84,7 +84,7 @@ - + diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html index 0bce8471..34a0f6f1 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html @@ -28,17 +28,17 @@ - « + « - « + « - 1 + 1 @@ -47,16 +47,16 @@ - {page.number} + {page.number} - {page.number} + {page.number} - {page.number} + {page.number} @@ -68,12 +68,12 @@ - {pagination.numberOfPages} + {pagination.numberOfPages} - » + » diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html index 65bd6934..ed76f69a 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html @@ -25,8 +25,8 @@ arguments="{layout: 8, subheader: '{product.region.name} / {product.name}', header: product.headline}"/> @@ -45,14 +45,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="hotel" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Unterkunft + class="col-span-2 py-2 uppercase bg-button bg-button--dark"> Termine/Preise @@ -61,14 +61,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="dates" - class="col-span-2 py-2 uppercase bg-ep-primary-dark"> + class="col-span-2 py-2 uppercase bg-button bg-button--dark"> Termine/Preise + class="py-2 uppercase bg-button bg-button--dark"> Unterkunft @@ -77,14 +77,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="region" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Gebiet + class="py-2 uppercase bg-button bg-button--dark"> Ort @@ -92,7 +92,7 @@ data-action="tabs#select" data-tabs-target="button" data-tab="journey" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Anreise @@ -152,7 +152,7 @@ - + @@ -297,7 +297,7 @@ - + - Alle anzeigen diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html index a2e2e00d..aad5efa7 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html @@ -14,7 +14,7 @@ @@ -32,7 +32,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html index cb34bb7f..3bf21e02 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html @@ -64,7 +64,7 @@ @@ -76,12 +76,12 @@ schließen zurücksetzen @@ -198,7 +198,7 @@ zurücksetzen diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html index 04d5c04d..80fc84e0 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html @@ -46,7 +46,7 @@ action: 'list', extensionName: 'epproducts', pluginName: 'teammembers' - )}" class="button button-danger"> + )}" class="button bg-button"> zurück
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html index 10b22f6a..70d20835 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/Button.html @@ -7,7 +7,7 @@ - + {data.header} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html index 1a52f6d9..a032b664 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSection.html @@ -15,7 +15,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html index 75bebd7c..ca807062 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSectionPages.html @@ -11,14 +11,14 @@ - + {page.title} - + {element.data.header} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html index 46d3bd23..eaa4848d 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/MenuSubpages.html @@ -8,7 +8,7 @@ + class="button w-full bg-button {f:if(condition: '{page.active}', then: 'bg-button--active', else: 'bg-button--light')}"> {page.data.title} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html index 3e80528f..388a8d23 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/FluidStyledContent/TeaserCountry.html @@ -27,7 +27,7 @@ {country.teaser -> f:format.crop(maxCharacters: settings.teaserTextMaxChars) -> f:format.html()} + class="button bg-button w-full"> {data.button -> v:or(alternative: 'Details')} diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html index b67b342b..1b42adf8 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/Detail.html @@ -13,7 +13,7 @@ @@ -32,7 +32,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html index bd72a691..d98cc654 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html @@ -84,7 +84,7 @@ - + diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html index 0bce8471..34a0f6f1 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/ViewHelpers/Widget/Paginate/Index.html @@ -28,17 +28,17 @@ - « + « - « + « - 1 + 1 @@ -47,16 +47,16 @@ - {page.number} + {page.number} - {page.number} + {page.number} - {page.number} + {page.number} @@ -68,12 +68,12 @@ - {pagination.numberOfPages} + {pagination.numberOfPages} - » + » diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html index 65bd6934..ed76f69a 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html @@ -25,8 +25,8 @@ arguments="{layout: 8, subheader: '{product.region.name} / {product.name}', header: product.headline}"/> @@ -45,14 +45,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="hotel" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Unterkunft + class="col-span-2 py-2 uppercase bg-button bg-button--dark"> Termine/Preise @@ -61,14 +61,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="dates" - class="col-span-2 py-2 uppercase bg-ep-primary-dark"> + class="col-span-2 py-2 uppercase bg-button bg-button--dark"> Termine/Preise + class="py-2 uppercase bg-button bg-button--dark"> Unterkunft @@ -77,14 +77,14 @@ data-action="tabs#select" data-tabs-target="button" data-tab="region" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Gebiet + class="py-2 uppercase bg-button bg-button--dark"> Ort @@ -92,7 +92,7 @@ data-action="tabs#select" data-tabs-target="button" data-tab="journey" - class="py-2 uppercase bg-ep-primary-dark"> + class="py-2 uppercase bg-button bg-button--dark"> Anreise @@ -152,7 +152,7 @@ - + @@ -297,7 +297,7 @@ - + - Alle anzeigen diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html index a2e2e00d..aad5efa7 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Region/Detail.html @@ -14,7 +14,7 @@ @@ -32,7 +32,7 @@ diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html index cb34bb7f..3bf21e02 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html @@ -64,7 +64,7 @@ @@ -76,12 +76,12 @@ schließen zurücksetzen @@ -198,7 +198,7 @@ zurücksetzen diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html index 04d5c04d..80fc84e0 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html @@ -46,7 +46,7 @@ action: 'list', extensionName: 'epproducts', pluginName: 'teammembers' - )}" class="button button-danger"> + )}" class="button bg-button"> zurück
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html index bd72a691..d98cc654 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/News/News/Detail.html @@ -84,7 +84,7 @@
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html index cb34bb7f..3bf21e02 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Searchbar/Index.html @@ -64,7 +64,7 @@ @@ -76,12 +76,12 @@ schließen zurücksetzen @@ -198,7 +198,7 @@ zurücksetzen diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html index 04d5c04d..80fc84e0 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Team/Show.html @@ -46,7 +46,7 @@ action: 'list', extensionName: 'epproducts', pluginName: 'teammembers' - )}" class="button button-danger"> + )}" class="button bg-button"> zurück