aboutsummaryrefslogtreecommitdiff
path: root/doc/style.css
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2014-12-01 22:22:11 +0000
committerSimon McVittie <smcv@debian.org>2014-12-01 22:22:11 +0000
commitcfbf8f07252b13143412413e753c3849efa5153c (patch)
tree1a9bb3860dc043d2f2ebe0e01ed05fa581eec1b4 /doc/style.css
parente14e9aa642f19c5fa37ac76dad75a569b4c5ee43 (diff)
downloadikiwiki-cfbf8f07252b13143412413e753c3849efa5153c.tar
ikiwiki-cfbf8f07252b13143412413e753c3849efa5153c.tar.gz
yet more variants of CSS flex
Diffstat (limited to 'doc/style.css')
-rw-r--r--doc/style.css12
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/style.css b/doc/style.css
index a875969f1..fe1eb903d 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -563,25 +563,29 @@ a.openid_large_btn:focus {
.page {
display: -webkit-box;
display: -webkit-flexbox;
- display: -ms-flexbox;
display: -webkit-flex;
+ display: -moz-box;
+ display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
- -ms-flex-direction: column;
-webkit-flex-direction: tb;
-webkit-flex-direction: column;
+ -webkit-flex-flow: column;
+ -ms-flex-direction: column;
flex-direction: column;
}
#pageheader {
-webkit-box-ordinal-group: -1;
- -ms-flex-order: -1;
-webkit-order: -1;
+ -ms-box-ordinal-group: -1;
+ -ms-flex-order: -1;
order: -1;
}
.sidebar, #footer {
-webkit-box-ordinal-group: 1;
- -ms-flex-order: 1;
-webkit-order: 1;
+ -ms-box-ordinal-group: 1;
+ -ms-flex-order: 1;
order: 1;
}