mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-08 04:53:26 +00:00
Merge pull request #52649 from aerele/fix-sales-funnel-layout
fix: ensure layout has Bootstrap row and column
(cherry picked from commit ae0be7f6ce)
This commit is contained in:
committed by
Mergify
parent
cf141045ba
commit
1dd471fb18
@@ -1,4 +1,4 @@
|
||||
.funnel-wrapper {
|
||||
margin: 15px;
|
||||
width: 100%;
|
||||
width: calc(100% - 30px);
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
@@ -8,6 +8,9 @@ frappe.pages["sales-funnel"].on_page_load = function (wrapper) {
|
||||
single_column: true,
|
||||
});
|
||||
|
||||
$(wrapper).find(".layout-main").addClass("row");
|
||||
$(wrapper).find(".layout-main-section-wrapper").addClass("col-md-12");
|
||||
|
||||
wrapper.sales_funnel = new erpnext.SalesFunnel(wrapper);
|
||||
|
||||
frappe.breadcrumbs.add("Selling");
|
||||
|
||||
Reference in New Issue
Block a user