From 2191b29ba5b7354b1b02311a59d48ed0a8d46890 Mon Sep 17 00:00:00 2001 From: Nicolas Lempereur Date: Sat, 4 Apr 2015 14:23:12 +0200 Subject: [PATCH] [FIX] kanban: wrong rotate of folded column in IE9 In IE9 the title of a folded column is rotated two times. The writing mode "tb-rl" already rotate the bloc then the "-ms-transform:rotate(90d)" rotates it a second time. This fix set the writing mode to the initial IE9 value (with a CSS hack so it doesn't impact other browser). --- addons/web_kanban/static/src/css/kanban.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/web_kanban/static/src/css/kanban.css b/addons/web_kanban/static/src/css/kanban.css index fbda6d3e4c5..664fb8ef55f 100644 --- a/addons/web_kanban/static/src/css/kanban.css +++ b/addons/web_kanban/static/src/css/kanban.css @@ -204,6 +204,9 @@ opacity: 0.75; top: 26px; } +:root .openerp .oe_kanban_view .oe_kanban_group_title_vertical { + writing-mode: lr-tb\9; +} .openerp .oe_kanban_view .oe_kanban_add, .openerp .oe_kanban_view .oe_kanban_header .oe_dropdown_toggle { margin-left: 4px; cursor: pointer;