s4

changeset 320:9735dd6c7bff

Workaround for chromium's not supporting visibility: collapse;
author HIROSE Yuuji <yuuji@gentei.org>
date Mon, 17 Oct 2016 09:50:48 +0859
parents a868f03970b5
children d8656d4c210e
files examples/common/default/default.css
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/examples/common/default/default.css	Mon Oct 17 09:11:05 2016 +0859
     1.2 +++ b/examples/common/default/default.css	Mon Oct 17 09:50:48 2016 +0859
     1.3 @@ -100,10 +100,11 @@
     1.4  table.mini td, table.mini th {padding: 1px 1ex; min-width: 1em;}
     1.5  table.mini {margin-left: 1em; border-left: 2px solid #686;}
     1.6  
     1.7 -div.noprofimg tr.profimg {visibility: collapse;}
     1.8 +/* "visibility: collapse" not working on chromium browser */
     1.9 +div.noprofimg tr.profimg {visibility: collapse; display: none;}
    1.10  div.noprofimg tr:hover + tr.profimg, div.noprofimg tr:active + tr.profimg,
    1.11  div.noprofimg tr.profimg:hover, div.noprofimg tr.profimg:active {
    1.12 -    visibility: visible;}
    1.13 +    visibility: visible; display: table-row;}
    1.14  
    1.15  p.profimg {float: left; max-width: 50%; max-height: 400px;
    1.16  	   overflow: hidden; margin: 0 1em 1ex;