mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-02-12 06:54:28 +01:00
Fixes #436
This commit is contained in:
parent
550a79c75c
commit
6bb5ab8a9d
@ -802,6 +802,8 @@ tbody tr.contact.active, tbody tr.contact:hover {
|
|||||||
float: left;
|
float: left;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
margin: 3px;
|
||||||
|
margin-left: 0px;
|
||||||
overflow: hidden; text-overflow: ellipsis; text-align: bottom; white-space: nowrap;
|
overflow: hidden; text-overflow: ellipsis; text-align: bottom; white-space: nowrap;
|
||||||
}
|
}
|
||||||
#contact span.adr:hover { /*overflow: inherit;*/ /*white-space: pre-wrap;*/ }
|
#contact span.adr:hover { /*overflow: inherit;*/ /*white-space: pre-wrap;*/ }
|
||||||
|
@ -1354,11 +1354,21 @@ OC.Contacts = OC.Contacts || {};
|
|||||||
var $list = self.$fullelem.find('ul.' + name);
|
var $list = self.$fullelem.find('ul.' + name);
|
||||||
$list.removeClass('hidden');
|
$list.removeClass('hidden');
|
||||||
var $property = self.renderStandardProperty(name);
|
var $property = self.renderStandardProperty(name);
|
||||||
|
$property.find('select[name="parameters[TYPE][]"]')
|
||||||
|
.combobox({
|
||||||
|
singleclick: true,
|
||||||
|
classes: ['propertytype', 'float', 'label']
|
||||||
|
});
|
||||||
$list.append($property);
|
$list.append($property);
|
||||||
});
|
});
|
||||||
var $list = self.$fullelem.find('ul.adr');
|
var $list = self.$fullelem.find('ul.adr');
|
||||||
$list.removeClass('hidden');
|
$list.removeClass('hidden');
|
||||||
var $property = self.renderAddressProperty(name);
|
var $property = self.renderAddressProperty(name);
|
||||||
|
$property.find('select[name="parameters[TYPE][]"]')
|
||||||
|
.combobox({
|
||||||
|
singleclick: true,
|
||||||
|
classes: ['propertytype', 'float', 'label']
|
||||||
|
});
|
||||||
$list.append($property);
|
$list.append($property);
|
||||||
|
|
||||||
// Hide some of the values
|
// Hide some of the values
|
||||||
|
Loading…
x
Reference in New Issue
Block a user