summaryrefslogtreecommitdiff
path: root/src/leap/bitmask_js/app/components/wizard/wizard.less
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-09-05 17:34:11 -0700
committerelijah <elijah@riseup.net>2016-09-05 17:39:32 -0700
commit141702748572a977133ae60ea8b39ce76342d7ce (patch)
treea3d8b7f4a18f95ac8c0855158876bb7cf7800721 /src/leap/bitmask_js/app/components/wizard/wizard.less
parentec52670d15742aad146b061c28bbe02ac7d93da3 (diff)
webkit support: get the js and css working in older webkit enginesfeature/js-ui
Diffstat (limited to 'src/leap/bitmask_js/app/components/wizard/wizard.less')
-rw-r--r--src/leap/bitmask_js/app/components/wizard/wizard.less8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/leap/bitmask_js/app/components/wizard/wizard.less b/src/leap/bitmask_js/app/components/wizard/wizard.less
index 3336ffb8..29efc20e 100644
--- a/src/leap/bitmask_js/app/components/wizard/wizard.less
+++ b/src/leap/bitmask_js/app/components/wizard/wizard.less
@@ -3,12 +3,16 @@
height: 100%;
width: 100%;
+ display: -webkit-flex;
display: flex;
+ -webkit-flex-direction: column;
flex-direction: column;
+ -webkit-flex: 1;
flex: 1;
}
.wizard .stage .footer {
+ -webkit-flex: 0 0 auto;
flex: 0 0 auto;
background-color: #ddd;
padding: 20px;
@@ -16,6 +20,7 @@
}
.wizard .stage .header {
+ -webkit-flex: 0 0 auto;
flex: 0 0 auto;
padding: 20px;
background-color: #333;
@@ -28,9 +33,12 @@
}
.wizard .stage .body {
+ -webkit-flex: 1 1 auto;
flex: 1 1 auto;
padding: 20px;
overflow: auto;
+ display: -webkit-flex;
display: flex;
+ -webkit-flex-direction: column;
flex-direction: column;
} \ No newline at end of file