diff --git a/codepot/src/codepot/views/login.php b/codepot/src/codepot/views/login.php index 6073c9d7..616900e9 100644 --- a/codepot/src/codepot/views/login.php +++ b/codepot/src/codepot/views/login.php @@ -20,15 +20,15 @@
diff --git a/codepot/src/codepot/views/project_map.php b/codepot/src/codepot/views/project_map.php index 8fcfa417..90191f82 100644 --- a/codepot/src/codepot/views/project_map.php +++ b/codepot/src/codepot/views/project_map.php @@ -283,7 +283,7 @@ var GraphApp = (function() { if (this.graph !== null) { - // make it low so that the footer gets places at the right place. + // make it small so that the footer gets places at the right place. this.graph.setSize (300, 300); var hoff = this.header.offset(); diff --git a/codepot/src/codepot/views/taskbar.php b/codepot/src/codepot/views/taskbar.php index ab0afcac..3d1d2ec3 100644 --- a/codepot/src/codepot/views/taskbar.php +++ b/codepot/src/codepot/views/taskbar.php @@ -5,6 +5,26 @@ function show_taskbar ($con, $login) print ' '; } diff --git a/codepot/src/css/common.css b/codepot/src/css/common.css index ecfb9225..b9f0e0a9 100644 --- a/codepot/src/css/common.css +++ b/codepot/src/css/common.css @@ -132,15 +132,46 @@ pre, code, tt { line-height: 2em; vertical-align: middle; + + display: -webkit-flex; + display: -moz-flex; + display: flex; + + -webkit-flex-wrap: nowrap; + -moz-flex-wrap: nowrap; + flex-wrap: nowrap; + + -webkit-justify-content: space-between; + -moz-justify-content: space-between; + justify-content: space-between; } .content .taskbar .boxa { - /*vertical-align: bottom;*/ - float: none; + display: -webkit-flex; + display: -moz-flex; + display: flex; + + -webkit-flex: 0 0 auto; + -moz-flex: 0 0 auto; + flex: 0 0 auto; + + -webkit-justify-content: flex-start; + -moz-justify-content: flex-start; + justify-content: flex-start; } .content .taskbar .boxb { - float: right; + display: -webkit-flex; + display: -moz-flex; + display: flex; + + -webkit-flex: 0 0 auto; + -moz-flex: 0 0 auto; + flex: 0 0 auto; + + -webkit-justify-content: flex-end; + -moz-justify-content: flex-end; + justify-content: flex-end; } .content .taskbar .boxa a {