mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Some more width for custom field textboxes so they're not so small
This commit is contained in:
parent
da610b8e9a
commit
fb4482afe6
@ -176,7 +176,11 @@ var et2_textbox = et2_inputWidget.extend(
|
||||
* @param _size Rather arbitrary size units, approximately characters
|
||||
*/
|
||||
set_size: function(_size) {
|
||||
if (typeof _size != 'undefined' && _size != this.input.attr("size"))
|
||||
if (this.options.multiline || this.options.rows > 1 || this.options.cols > 1)
|
||||
{
|
||||
this.input.css('width', _size + "em");
|
||||
}
|
||||
else if (typeof _size != 'undefined' && _size != this.input.attr("size"))
|
||||
{
|
||||
this.size = _size;
|
||||
this.input.attr("size", this.size);
|
||||
|
@ -440,7 +440,7 @@ action buttons, left aligned for "extra" controls
|
||||
.et2_customfield_list {
|
||||
width: 100%;
|
||||
}
|
||||
.et2_customfield_list input {
|
||||
.et2_customfield_list input, .et2_customfield_list textarea {
|
||||
max-width: 100ex;
|
||||
}
|
||||
/* Custom field list inside nextmatch rows gets an icon for each row */
|
||||
|
Loading…
Reference in New Issue
Block a user