Fix for input focus indication being cut off.
This commit is contained in:
@@ -18,14 +18,14 @@
|
|||||||
{foreach $category.items as $item}
|
{foreach $category.items as $item}
|
||||||
{if $item.guessedInput}
|
{if $item.guessedInput}
|
||||||
{if $item.type == 'bool'}
|
{if $item.type == 'bool'}
|
||||||
<fieldset>
|
<fieldset class="clearfix">
|
||||||
<legend><span>{$item.title} <span>{$item.description}</span></span></legend>
|
<legend><span>{$item.title} <span>{$item.description}</span></span></legend>
|
||||||
<div class="clearfix">
|
<div class="clearfix">
|
||||||
{$item.guessedInput}
|
{$item.guessedInput}
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{else}
|
{else}
|
||||||
<div class="form_{if $item.type == 'list'}select{elseif $item.type == 'multilist'}multiselect{elseif $item.type == 'textarea'}area{else}field{/if}">
|
<div class="clearfix form_{if $item.type == 'list'}select{elseif $item.type == 'multilist'}multiselect{elseif $item.type == 'textarea'}area{else}field{/if}">
|
||||||
<label for="{$item.var}">{$item.title}<span>{$item.description}</span></label>
|
<label for="{$item.var}">{$item.title}<span>{$item.description}</span></label>
|
||||||
{$item.guessedInput}
|
{$item.guessedInput}
|
||||||
</div>
|
</div>
|
||||||
|
@@ -41,13 +41,13 @@
|
|||||||
{else}
|
{else}
|
||||||
<h3>{$CONST.CREATE}</h3>
|
<h3>{$CONST.CREATE}</h3>
|
||||||
{/if}
|
{/if}
|
||||||
<div class="form_field">
|
<div class="clearfix form_field">
|
||||||
<label for="group_name">{$CONST.NAME}</label>
|
<label for="group_name">{$CONST.NAME}</label>
|
||||||
{* BUG: Doesn't pull the group name; this doesn't work in 1.7, either. *}
|
{* BUG: Doesn't pull the group name; this doesn't work in 1.7, either. *}
|
||||||
<input id="group_name" name="serendipity[name]" type="text" value="{$from.name|escape:"html"}">
|
<input id="group_name" name="serendipity[name]" type="text" value="{$from.name|escape:"html"}">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form_select">
|
<div class="clearfix form_select">
|
||||||
<label for="group_members">{$CONST.USERCONF_GROUPS}</label>
|
<label for="group_members">{$CONST.USERCONF_GROUPS}</label>
|
||||||
<select id="group_members" name="serendipity[members][]" multiple size="5">
|
<select id="group_members" name="serendipity[members][]" multiple size="5">
|
||||||
{foreach $allusers as $user}
|
{foreach $allusers as $user}
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
{if $enablePluginACL}
|
{if $enablePluginACL}
|
||||||
<div class="form_select">
|
<div class="clearfix form_select">
|
||||||
<label for="forbidden_plugins">{$CONST.PERMISSION_FORBIDDEN_PLUGINS}</label>
|
<label for="forbidden_plugins">{$CONST.PERMISSION_FORBIDDEN_PLUGINS}</label>
|
||||||
<select id="forbidden_plugins" name="serendipity[forbidden_plugins][]" multiple size="5">
|
<select id="forbidden_plugins" name="serendipity[forbidden_plugins][]" multiple size="5">
|
||||||
{foreach $allplugins as $plugin}
|
{foreach $allplugins as $plugin}
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form_select">
|
<div class="clearfix form_select">
|
||||||
<label for="forbidden_hooks">{$CONST.PERMISSION_FORBIDDEN_HOOKS}</label>
|
<label for="forbidden_hooks">{$CONST.PERMISSION_FORBIDDEN_HOOKS}</label>
|
||||||
<select name="serendipity[forbidden_hooks][]" multiple size="5">
|
<select name="serendipity[forbidden_hooks][]" multiple size="5">
|
||||||
{foreach $allhooks as $hook}
|
{foreach $allhooks as $hook}
|
||||||
|
@@ -1876,13 +1876,7 @@ input[name="serendipity[filter][fileCategory]"] {
|
|||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.configuration_group .form_select,
|
#serendipityScaleImg {
|
||||||
.configuration_group .form_multiselect,
|
|
||||||
.configuration_group .form_field,
|
|
||||||
.configuration_group .form_area,
|
|
||||||
.configuration_group fieldset > fieldset,
|
|
||||||
#serendipityScaleImg,
|
|
||||||
.media_file header {
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user