29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-28 08:03:40 +00:00

[4.0] Cleanup cassiopeia chromes and rename "default" to "card" (#30729)

* Renaming the "default" chrome to "card" as it isn't a default chrome at all.

* There is no "xhtml" chrome anymore
This commit is contained in:
Thomas Hunziker 2020-09-23 07:50:10 +02:00 committed by GitHub
parent 034a61d5c3
commit 7a91649c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -103,7 +103,7 @@ $this->setMetaData('viewport', 'width=device-width, initial-scale=1');
</nav>
<?php if ($this->countModules('banner')) : ?>
<div class="grid-child container-banner">
<jdoc:include type="modules" name="banner" style="xhtml" />
<jdoc:include type="modules" name="banner" style="html5" />
</div>
<?php endif; ?>
</header>
@ -124,7 +124,7 @@ $this->setMetaData('viewport', 'width=device-width, initial-scale=1');
<?php if ($this->countModules('sidebar-left')) : ?>
<div class="container-sidebar-left">
<jdoc:include type="modules" name="sidebar-left" style="default" />
<jdoc:include type="modules" name="sidebar-left" style="card" />
</div>
<?php endif; ?>
@ -174,7 +174,7 @@ $this->setMetaData('viewport', 'width=device-width, initial-scale=1');
<?php if ($this->countModules('sidebar-right')) : ?>
<div class="container-sidebar-right">
<jdoc:include type="modules" name="sidebar-right" style="default" />
<jdoc:include type="modules" name="sidebar-right" style="card" />
</div>
<?php endif; ?>

View File

@ -141,7 +141,7 @@ $stickyHeader = $this->params->get('stickyHeader') ? 'position-sticky sticky-top
<?php if ($this->countModules('sidebar-left')) : ?>
<div class="grid-child container-sidebar-left">
<jdoc:include type="modules" name="sidebar-left" style="default" />
<jdoc:include type="modules" name="sidebar-left" style="card" />
</div>
<?php endif; ?>
@ -157,7 +157,7 @@ $stickyHeader = $this->params->get('stickyHeader') ? 'position-sticky sticky-top
<?php if ($this->countModules('sidebar-right')) : ?>
<div class="grid-child container-sidebar-right">
<jdoc:include type="modules" name="sidebar-right" style="default" />
<jdoc:include type="modules" name="sidebar-right" style="card" />
</div>
<?php endif; ?>