Browse Source

fix: Email Dialog 'To' field is not full width (#16603)

version-14
Shariq Ansari 3 years ago
committed by GitHub
parent
commit
9c0223650c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 13 deletions
  1. +10
    -13
      frappe/public/scss/common/modal.scss

+ 10
- 13
frappe/public/scss/common/modal.scss View File

@@ -211,21 +211,18 @@ body.modal-open[style^="padding-right"] {
display: flex;
align-items: center;

.frappe-control {
.frappe-control:first-child {
&[data-fieldname="sender"] {
flex: 1;
margin-bottom: 0px;
margin-right: 10px;
}
&[data-fieldname="recipients"] {
margin-left: 10px;
}
&[data-fieldname="option_toggle_button"] {
margin-left: 10px;
margin-bottom: -24px;
button {
// same as form-control input
height: calc(1.5em + .75rem + 2px);
}
flex: 1;
}
.frappe-control:last-child {
margin-left: 10px;
margin-bottom: -24px;
button {
// same as form-control input
height: calc(1.5em + .75rem + 2px);
}
}
}


Loading…
Cancel
Save