Skip to content

Commit

Permalink
Fix padding of input box
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 11, 2013
1 parent 71a33a7 commit 555c3e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion imp/js/prettyautocomplete.js
Expand Up @@ -36,7 +36,7 @@ var IMP_PrettyAutocompleter = Class.create({
listClassItem: 'hordeACListItem',
// input (created below)
// CSS class for real input field
growingInputClass: 'hordeACTrigger',
growingInputClass: 'hordeACTrigger impACTrigger',
removeClass: 'hordeACItemRemove',
// Allow for a function that filters the display value
// This function should *always* return escaped HTML
Expand Down
1 change: 1 addition & 0 deletions imp/lib/Ajax/Imple/AutoCompleter/Pretty.php
Expand Up @@ -39,6 +39,7 @@ public function __construct(array $params = array())
'boxClassFocus' => 'impACBoxFocus',
'deleteIcon' => strval(Horde_Themes::img('delete-small.png')),
'displayFilter' => 'new Function("t", "return t.sub(/<[^>]*>$/, \"\").strip().escapeHTML()")',
'growingInputClass' => 'hordeACTrigger impACTrigger',
'listClass' => 'hordeACList impACList',
'removeClass' => 'hordeACItemRemove impACItemRemove',
'triggerContainer' => strval(new Horde_Support_Randomid())
Expand Down
3 changes: 3 additions & 0 deletions imp/themes/default/screen.css
Expand Up @@ -560,3 +560,6 @@ span.mimePartInfoSize {
.impACItemRemove {
padding-left: 3px;
}
.impACTrigger {
padding: 0;
}

0 comments on commit 555c3e9

Please sign in to comment.