fixes #165 2b and 4a and 4b

This commit is contained in:
Ian 2014-05-21 11:45:13 +02:00
parent 734217e0da
commit 69fc1a5b73
3 changed files with 9 additions and 5 deletions

View File

@ -2791,6 +2791,10 @@ img.mfp-img {
margin-bottom: 2em;
}
#template_select .current_backend_template {
margin: 0px 0px 2em 0px;
}
#mediaPropertyForm .media_file {
float: none;
margin: 1.5em 0;

View File

@ -28,7 +28,7 @@
<h2>{$CONST.CURRENT_TEMPLATE}</h2>
<article class="clearfix current_template">
<h3>{$CONST.FRONTEND}: {$cur_tpl.info.name|truncate:30}</h3>
<h3>{$CONST.FRONTEND}: {$cur_tpl.info.name|truncate:25:"&hellip;"}</h3>
<div class="clearfix equal_heights template_wrap">
<div class="template_preview">
@ -62,8 +62,8 @@
</article>
{if $cur_template_backend}
<article class="clearfix current_template">
<h3>{$CONST.BACKEND}: {$cur_tpl_backend.info.name|truncate:30}</h3>
<article class="clearfix current_backend_template">
<h3>{$CONST.BACKEND}: {$cur_tpl_backend.info.name|truncate:25:"&hellip;"}</h3>
<div class="clearfix equal_heights template_wrap">
<div class="template_preview">
@ -95,8 +95,8 @@
<ul class="plainList clearfix">
{foreach $templates as $template=>$info}
<li><article class="clearfix {cycle values="odd,even"}">
<h3>{$info.info.name}</h3>
<li><article class="clearfix">
<h3>{$info.info.name|truncate:25:"&hellip;"}</h3>
<div class="clearfix equal_heights template_wrap">
<div class="template_preview">
{if $info.fullsize_preview || $info.preview}

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB