forked from extern/egroupware
Fix taglist jumps into second line in mail compose
This commit is contained in:
parent
d95a6f82ab
commit
f1e1d061cd
@ -4474,6 +4474,9 @@ app.classes.mail = AppJS.extend(
|
||||
*/
|
||||
revert: function (){
|
||||
this.parent().find('.ms-sel-item').css('position','relative');
|
||||
var $input = this.parent().children('input');
|
||||
// Make sure input field not getting into second line after revert
|
||||
$input.width($input.width()-10);
|
||||
return true;
|
||||
},
|
||||
/**
|
||||
|
@ -1080,9 +1080,7 @@ body {
|
||||
#mail-compose .mailComposeHeadersSection span.ms-close-btn,
|
||||
#mail-compose .mailComposeHeaders span.ms-edit-btn,
|
||||
#mail-compose .mailComposeHeadersSection span.ms-edit-btn {
|
||||
width: auto;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 8px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
#mail-compose .mailComposeHeaders div,
|
||||
#mail-compose .mailComposeHeadersSection div {
|
||||
|
@ -1068,9 +1068,7 @@ body {
|
||||
#mail-compose .mailComposeHeadersSection span.ms-close-btn,
|
||||
#mail-compose .mailComposeHeaders span.ms-edit-btn,
|
||||
#mail-compose .mailComposeHeadersSection span.ms-edit-btn {
|
||||
width: auto;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 8px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
#mail-compose .mailComposeHeaders div,
|
||||
#mail-compose .mailComposeHeadersSection div {
|
||||
|
@ -333,9 +333,7 @@ body {
|
||||
}
|
||||
|
||||
span.ms-close-btn, span.ms-edit-btn{
|
||||
width: auto;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 8px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
div{ max-width: 770px; }
|
||||
|
Loading…
Reference in New Issue
Block a user