|
Server : LiteSpeed System : Linux srv45672493.ultasrv.net 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64 User : dewab7604 ( 1100) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/dewabet138.net/public_html/wp-content/themes/merah/inc/dynamic-css/ |
Upload File : |
<?php
/**
* Container Layout - Dynamic CSS
*
* @package astra
* @since 3.3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Container Layout - Dynamic CSS.
*
* @since 3.3.0
*/
function astra_container_layout_css() {
$container_layout = astra_get_content_layout();
$page_container_css = '';
if ( 'page-builder' === $container_layout ) {
$page_container_css = '
.ast-page-builder-template .hentry {
margin: 0;
}
.ast-page-builder-template .site-content > .ast-container {
max-width: 100%;
padding: 0;
}
.ast-page-builder-template .site-content #primary {
padding: 0;
margin: 0;
}
.ast-page-builder-template .no-results {
text-align: center;
margin: 4em auto;
}
.ast-page-builder-template .ast-pagination {
padding: 2em;
}
.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail {
margin-top: 0;
}
.ast-page-builder-template .entry-header.ast-header-without-markup {
margin-top: 0;
margin-bottom: 0;
}
.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta {
margin-bottom: 0;
}
.ast-page-builder-template.single .post-navigation {
padding-bottom: 2em;
}
.ast-page-builder-template.single-post .site-content > .ast-container {
max-width: 100%;
}';
if ( is_rtl() ) {
$page_container_css .= '
.ast-page-builder-template .entry-header {
margin-top: 4em;
margin-right: auto;
margin-left: auto;
padding-right: 20px;
padding-left: 20px;
}
.ast-page-builder-template .ast-archive-description {
margin-top: 4em;
margin-right: auto;
margin-left: auto;
padding-right: 20px;
padding-left: 20px;
}
.single.ast-page-builder-template .entry-header {
padding-right: 20px;
padding-left: 20px;
}';
} else {
$page_container_css .= '
.ast-page-builder-template .entry-header {
margin-top: 4em;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}
.ast-page-builder-template .ast-archive-description {
margin-top: 4em;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}
.single.ast-page-builder-template .entry-header {
padding-left: 20px;
padding-right: 20px;
}';
}
/** @psalm-suppress InvalidScalarArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
if ( false === astra_get_option( 'improve-gb-editor-ui', true ) ) {
/** @psalm-suppress InvalidScalarArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
$page_container_css .= '.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
margin-left: 0;
margin-right: 0;
}';
}
return Astra_Enqueue_Scripts::trim_css( $page_container_css );
}
return $page_container_css;
}