[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).
This commit is contained in:
Nicolas Lempereur 2015-04-04 14:23:12 +02:00
parent bbeca2ddb3
commit 2191b29ba5
1 changed files with 3 additions and 0 deletions

View File

@ -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;