Wednesday, 30 August 2017

Odoo: Show Notification message(red color window) before wizard popup window and Show help view window on field in wizard popup.

Create a new css file in static-> css folder and add below code.

/* Show notification message at first level (above the existing popup window) - Nivas*/
/* Existing module file path: /web/static/src/less/notification.less */
.o_notification_manager {
    z-index: 5000 !important;  // above the modals. Fixme: expose a variable
}
/* Showing developer mode view in wizard option.  */
.tooltip {
z-index: 6000 !important;
}
/* End */