[FIX] point_of_sale: deal with Chrome 50's new height inheritance

Chrome 50 treats percent-height divs inside of auto-height cells as
auto [1]. So from now on it's important that an explicit 'height: 100%' CSS
property is set on parent tds, otherwise you'll end up with elements
with a height of 0.

DO NOT FORWARD-PORT!

[1] 8876584335
This commit is contained in:
Joren Van Onder 2016-04-18 16:42:09 +02:00
parent 605b94e64c
commit 09a9e4aeb5
1 changed files with 1 additions and 0 deletions

View File

@ -683,6 +683,7 @@
}
.point-of-sale .screen .content-cell{
width:100%;
height:100%;
}
.point-of-sale .screen .content-cell .content-container{
height:100%;