Fix taglist jumps into second line in mail compose

This commit is contained in:
Hadi Nategh 2016-06-22 18:39:00 +02:00
parent d95a6f82ab
commit f1e1d061cd
4 changed files with 7 additions and 10 deletions

View File

@ -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;
},
/**

View File

@ -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 {

View File

@ -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 {

View File

@ -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; }