hide by default hidden compose header-lines, to not show them briefly before hidden by app.js

also align To dropdown-button with the other labels
This commit is contained in:
ralf 2025-01-12 11:38:50 +01:00
parent 802398320b
commit 24087af242
2 changed files with 16 additions and 1 deletions

View File

@ -4714,6 +4714,10 @@ app.classes.mail = AppJS.extend(
widgets[expanderBtn].widget.set_disabled(false);
jQuery(widgets[widget].jQClass).hide();
}
else
{
jQuery(widgets[widget].jQClass).show();
}
}
},

View File

@ -1133,3 +1133,14 @@ table.et2_egw_action_ddHelper_row .innerContainer {
.et2_egw_action_ddHelper_row et2-vbox::part(base) {
gap: 1px;
}
/* hide by default hidden compose header-lines, to not show them briefly before hidden by app.js */
tr.mailComposeJQueryCc, tr.mailComposeJQueryBcc, tr.mailComposeJQueryFolder, tr.mailComposeJQueryReplyto {
display: none;
}
tr.mailComposeHeaders > td > et2-dropdown {
position: relative;
left: -1em;
width: 100%;
max-width: 100%;
}