Minor UI consistency fixes.

This commit is contained in:
Matthias Mees 2013-06-21 11:19:39 +02:00
parent 487f71bd0b
commit 5798ca100f
4 changed files with 5 additions and 4 deletions

View File

@ -113,7 +113,7 @@
<dt>IP:</dt>
<dd>{if empty($comment.ip)}N/A{else}{$comment.ip|escape}{/if} {$comment.action_ip}</dd>
<dt>URL:</dt>
<dd>{if empty($comment.url)}N/A{else}<a class="icon_link" href="{$comment.url|escape}" title="{$comment.url|escape}"><span class="icon-link"></span> {$comment.url|escape|truncate:40:"&hellip;"}</a> {/if} {$comment.action_url}</dd>
<dd>{if empty($comment.url)}N/A{else}<a href="{$comment.url|escape}" title="{$comment.url|escape}">{$comment.url|escape|truncate:40:"&hellip;"}</a> {/if} {$comment.action_url}</dd>
<dt>{$CONST.REFERER}:</dt>
<dd>{if empty($comment.referer)}N/A{else}<a href="{$comment.referer|escape}" title="{$comment.referer|escape}">{$comment.referer|escape|truncate:40:"&hellip;"}</a>{/if} {$comment.action_referer}</dd>
</dl>

View File

@ -14,7 +14,7 @@
<h3>{if $allowToggle}<a id="optionel{$category@iteration}" class="show_config_option" href="#el{$category@index}" title="{$CONST.TOGGLE_OPTION}"><span class="icon-minus"></span> {$category.title}</a>{else}{$category.title}{/if}</h3>
{/if}
<fieldset id="el{$category@index}" class="config_optiongroup{if $config_groupkeys@last} config_optiongroup_last{/if} additional_info">
<legend><span>{$category.description}</span></legend>
<legend class="visuallyhidden">{$category.description}</legend>
{foreach $category.items as $item}
{if $item.guessedInput}
{if $item.type == 'bool'}

View File

@ -790,7 +790,7 @@ function highlightComment(id, checkvalue) {
var $catIcon = $('body').has('#category_icon');
if($catIcon.size() > 0) {
$('<input id="insert_image" name="insImage" type="button" value="{$CONST.IMAGE}">').insertAfter('#category_icon');
$('<a id="insert_image" class="button_link" name="insImage" href="#" title="{$CONST.MEDIA_LIBRARY}"><span class="icon-picture"></span><span class="visuallyhidden"> {$CONST.MEDIA_LIBRARY}</span></a>').insertAfter('#category_icon');
}
$('#insert_image').click(function(e) {

View File

@ -860,7 +860,8 @@ input[type=radio] + label,
font-weight: normal;
}
input[type=checkbox] {
input[type=checkbox],
#category_icon {
margin-right: .4em;
}