Fix flexbox on celltoolbar and safari.

cf https://github.com/jupyter/nbgrader/issues/394

Cannot fix in flexbox.less cf above issue.
This commit is contained in:
Matthias Bussonnier 2015-08-31 19:15:05 +02:00
parent 474a3bb04e
commit 453bd03ae0

View File

@ -12,6 +12,10 @@
padding-right: 4px;
.hbox();
.end();
// safari fix, we cannot use -webkit-flex on hbox
// and vbox either or all css get borked
// cf https://github.com/jupyter/nbgrader/issues/394
display: -webkit-flex;
@media print{
display: none;
}