diff --git a/nailgun/static/styles/main.less b/nailgun/static/styles/main.less index 19e171c809..45f5799951 100644 --- a/nailgun/static/styles/main.less +++ b/nailgun/static/styles/main.less @@ -318,9 +318,14 @@ button, .btn:not(.btn-link) {.font-semibold;} } } +.modal-open .modal { + overflow-x: auto; +} + .clamp { width: 100%; max-width: @page-width; + min-width: @page-width; margin-left: auto; margin-right: auto; height: auto !important; @@ -484,11 +489,12 @@ button, .btn:not(.btn-link) {.font-semibold;} height: 70px; background-color: @white; box-shadow: 0 0 10px @shadow-color; + min-width: @page-width; } .navigation-box { width: 100%; - height: 70px; + background-color: @white; } .navbar { @@ -503,9 +509,12 @@ button, .btn:not(.btn-link) {.font-semibold;} background-color: transparent; border-color: transparent; .navbar-nav { + margin: 0; margin-top: 18px; - height: 34px; li { + display: inline-block; + width: auto; + background-color: @white; a { font-family: 'bebas'; font-size: @base-font-size + 7; diff --git a/nailgun/static/views/cluster_page.jsx b/nailgun/static/views/cluster_page.jsx index e53cbfd9b1..31d57b8a02 100644 --- a/nailgun/static/views/cluster_page.jsx +++ b/nailgun/static/views/cluster_page.jsx @@ -293,7 +293,7 @@ function($, _, i18n, Backbone, React, utils, models, dispatcher, componentMixins render: function() { var cluster = this.props.cluster; return ( -
+

{cluster.get('name')} @@ -401,7 +401,7 @@ function($, _, i18n, Backbone, React, utils, models, dispatcher, componentMixins return node.get('pending_addition') && node.hasRole('virt'); }); return ( -
+
{task ? (
diff --git a/nailgun/static/views/layout.jsx b/nailgun/static/views/layout.jsx index 6099b9394a..5ad7309cfd 100644 --- a/nailgun/static/views/layout.jsx +++ b/nailgun/static/views/layout.jsx @@ -96,88 +96,90 @@ function($, _, i18n, Backbone, React, utils, models, controls, componentMixins, return (
-
-
); }