From 9f72601a0d25ac9bb0a7973a64c48e442d974d46 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Wed, 5 Aug 2020 13:08:01 -0500 Subject: [PATCH] LP: Fix style about impress #3427 --- app/Resources/public/css/base.css | 7 ++++++- main/lp/lp_impress.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app/Resources/public/css/base.css b/app/Resources/public/css/base.css index 93ac528fd0..a81b1d17aa 100644 --- a/app/Resources/public/css/base.css +++ b/app/Resources/public/css/base.css @@ -598,7 +598,7 @@ input[type=checkbox], input[type=radio] { .impress-content { position: relative; width: 100%; - height: 600px; + height: 618px; } .impress-title { @@ -609,6 +609,11 @@ input[type=checkbox], input[type=radio] { width: 100%; } +.impress-content iframe { + width: 100%; + height: 582px; +} + .impress-title h1 { font-size: 35px; } diff --git a/main/lp/lp_impress.php b/main/lp/lp_impress.php index 953edda814..a54bde558d 100755 --- a/main/lp/lp_impress.php +++ b/main/lp/lp_impress.php @@ -76,7 +76,7 @@ foreach ($list as $toc) { if ($toc['type'] !== 'dir') { //just showing the src in a iframe ... $html .= '

'.$toc['title'].'

'; - $html .= ''; + $html .= ''; } else { $html .= "
"; $html .= '

'.$toc['title'].'

';