Merge branch 'release/2019.09-08'
This commit is contained in:
Generated
+5
-5
@@ -4981,16 +4981,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "typo3fluid/fluid",
|
"name": "typo3fluid/fluid",
|
||||||
"version": "2.6.3",
|
"version": "2.6.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/TYPO3/Fluid.git",
|
"url": "https://github.com/TYPO3/Fluid.git",
|
||||||
"reference": "7e80658487eed78a7b67ac79e534ef76400a7d87"
|
"reference": "75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/TYPO3/Fluid/zipball/7e80658487eed78a7b67ac79e534ef76400a7d87",
|
"url": "https://api.github.com/repos/TYPO3/Fluid/zipball/75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80",
|
||||||
"reference": "7e80658487eed78a7b67ac79e534ef76400a7d87",
|
"reference": "75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -5016,7 +5016,7 @@
|
|||||||
"LGPL-3.0-or-later"
|
"LGPL-3.0-or-later"
|
||||||
],
|
],
|
||||||
"description": "The TYPO3 Fluid template rendering engine",
|
"description": "The TYPO3 Fluid template rendering engine",
|
||||||
"time": "2019-09-12T11:36:15+00:00"
|
"time": "2019-09-13T09:38:15+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "wazum/pagetree-resizable",
|
"name": "wazum/pagetree-resizable",
|
||||||
|
|||||||
+17
-1
@@ -67,7 +67,7 @@ mod {
|
|||||||
config {
|
config {
|
||||||
backend_layout {
|
backend_layout {
|
||||||
colCount = 1
|
colCount = 1
|
||||||
rowCount = 2
|
rowCount = 4
|
||||||
rows {
|
rows {
|
||||||
1 {
|
1 {
|
||||||
columns {
|
columns {
|
||||||
@@ -85,6 +85,22 @@ mod {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3 {
|
||||||
|
columns {
|
||||||
|
1 {
|
||||||
|
name = Content volle Breite
|
||||||
|
colPos = 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
4 {
|
||||||
|
columns {
|
||||||
|
1 {
|
||||||
|
name = Content
|
||||||
|
colPos = 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,12 +9,11 @@
|
|||||||
<f:render partial="PageHeader" arguments="{_all}" />
|
<f:render partial="PageHeader" arguments="{_all}" />
|
||||||
<main>
|
<main>
|
||||||
<f:render section="Header" />
|
<f:render section="Header" />
|
||||||
|
<!--TYPO3SEARCH_begin-->
|
||||||
<div class="content content--has-sidebar">
|
<div class="content content--has-sidebar">
|
||||||
<div class="content__inner">
|
<div class="content__inner">
|
||||||
<div class="content__main">
|
<div class="content__main">
|
||||||
<!--TYPO3SEARCH_begin-->
|
|
||||||
<f:render section="Content" />
|
<f:render section="Content" />
|
||||||
<!--TYPO3SEARCH_end-->
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content__sidebar desktop-only">
|
<div class="content__sidebar desktop-only">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
@@ -43,6 +42,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<f:render section="FullWidthContent"/>
|
||||||
|
<f:render section="SubContent"/>
|
||||||
|
<!--TYPO3SEARCH_end-->
|
||||||
</main>
|
</main>
|
||||||
<f:render partial="PageFooter" />
|
<f:render partial="PageFooter" />
|
||||||
<f:render partial="MobileNav" arguments="{_all}" />
|
<f:render partial="MobileNav" arguments="{_all}" />
|
||||||
|
|||||||
@@ -13,4 +13,18 @@
|
|||||||
<v:content.render column="0"/>
|
<v:content.render column="0"/>
|
||||||
</f:section>
|
</f:section>
|
||||||
|
|
||||||
|
<f:section name="FullWidthContent">
|
||||||
|
<v:content.render column="4"/>
|
||||||
|
</f:section>
|
||||||
|
|
||||||
|
<f:section name="SubContent">
|
||||||
|
<f:if condition="{v:content.get(column: 2)}">
|
||||||
|
<div class="content content--sub">
|
||||||
|
<div class="content__inner">
|
||||||
|
<v:content.render column="2"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</f:if>
|
||||||
|
</f:section>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -51,6 +51,10 @@ a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s {
|
||||||
|
opacity: 0.75;
|
||||||
|
}
|
||||||
|
|
||||||
// Block elements
|
// Block elements
|
||||||
ul {
|
ul {
|
||||||
padding: 0 0 0 18px;
|
padding: 0 0 0 18px;
|
||||||
|
|||||||
@@ -29,7 +29,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
& .pricetable__section td {
|
& .pricetable__section td {
|
||||||
background-color: $color-grey-lighter;
|
background-color: $color-brand-primary;
|
||||||
|
color: white;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<f:section name="Main">
|
<f:section name="Main">
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-striped pricetable">
|
<table class="table table-bordered table-hover pricetable">
|
||||||
<f:for each="{categories}" as="category" key="categoryKey">
|
<f:for each="{categories}" as="category" key="categoryKey">
|
||||||
<f:if condition="{v:variable.get(name: 'pricetable.{categoryKey}', useRawKeys: 1) -> f:count()} > 0">
|
<f:if condition="{v:variable.get(name: 'pricetable.{categoryKey}', useRawKeys: 1) -> f:count()} > 0">
|
||||||
<tr class="pricetable__section">
|
<tr class="pricetable__section">
|
||||||
|
|||||||
Reference in New Issue
Block a user