This commit is contained in:
gsinghpal
2026-04-30 00:21:08 -04:00
parent f990f29019
commit c5d21e0519
10 changed files with 105 additions and 44 deletions

View File

@@ -20,6 +20,30 @@ $fp-ql-panel: var(--fp-card-bg, #{$_fp_ql_panel_hex});
$fp-ql-border: var(--fp-border-color, #{$_fp_ql_border_hex});
$fp-ql-text: var(--fp-text, #{$_fp_ql_text_hex});
// Compress the info-button column on the embedded step list. Odoo
// gives button columns a generous min-width by default, leaving an
// awkward gap between the icon and the Name column. Belt + braces:
// the <button width="30"/> attribute does most of the work; these
// rules tighten the inner padding so the icon hugs the cell edges.
.o_list_view td:has(> button.o_fp_step_info_btn),
.o_list_view td:has(> .o_list_button_cell button.o_fp_step_info_btn) {
width: 32px !important;
max-width: 32px !important;
min-width: 32px !important;
padding-left: 2px !important;
padding-right: 2px !important;
}
button.o_fp_step_info_btn {
padding: 2px 6px !important;
margin: 0 !important;
min-width: 0 !important;
line-height: 1 !important;
}
button.o_fp_step_info_btn .fa,
button.o_fp_step_info_btn i {
margin: 0 !important;
}
// Container around the rich-text instructions inside the quick-look
// modal. Bordered + scrollable + readable in both light and dark modes.
.o_fp_quick_look_instructions {