[FIX] Calendar navigation bar overlaps dropdown menus
authorFabien Meghazi <fme@openerp.com>
Mon, 26 Nov 2012 10:43:42 +0000 (11:43 +0100)
committerFabien Meghazi <fme@openerp.com>
Mon, 26 Nov 2012 10:43:42 +0000 (11:43 +0100)
lp bug: https://launchpad.net/bugs/1082194 fixed

bzr revid: fme@openerp.com-20121126104342-z4f0ndh68r3zikj0

addons/web_calendar/static/src/css/web_calendar.css
addons/web_calendar/static/src/css/web_calendar.sass

index e477a88..96651bd 100644 (file)
@@ -27,6 +27,9 @@
 .openerp .oe_calendar .dhx_cal_select_menu .dhx_menu_icon.icon_edit {
   display: none;
 }
+.openerp .oe_calendar .dhx_cal_navline {
+  z-index: auto;
+}
 .openerp .oe_calendar.oe_cal_month .dhx_cal_data {
   overflow-y: hidden;
 }
index 0dc3bfb..d383841 100644 (file)
         // Dhtmlx Scheduler css overrides
         .dhx_cal_select_menu .dhx_menu_icon.icon_edit
             display: none
+        .dhx_cal_navline
+            // dhtmlx sets the index to 3 (in glossy theme)
+            // I didn't found the reason yet but it overlaps the
+            // dropdown menus and I want to avoid a z-index war.
+            z-index: auto
 
         &.oe_cal_month .dhx_cal_data
             overflow-y: hidden