diff --git a/app/app.js b/app/app.js index b483df41a..48fcc4075 100644 --- a/app/app.js +++ b/app/app.js @@ -14,5 +14,5 @@ angular.module('dockerui', ['ngRoute', 'dockerui.services', 'dockerui.filters', // You need to set this to the api endpoint without the port i.e. http://192.168.1.9 .constant('DOCKER_ENDPOINT', '/dockerapi') .constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. If you have a port, prefix it with a ':' i.e. :4243 - .constant('UI_VERSION', 'v0.4') - .constant('DOCKER_API_VERSION', 'v1.8'); + .constant('UI_VERSION', 'v0.5') + .constant('DOCKER_API_VERSION', 'v1.15'); diff --git a/app/components/footer/statusbar.html b/app/components/footer/statusbar.html index fbf6fa27a..42c7efb6a 100644 --- a/app/components/footer/statusbar.html +++ b/app/components/footer/statusbar.html @@ -1,3 +1,3 @@ -
+ diff --git a/app/components/masthead/masthead.html b/app/components/masthead/masthead.html index 26f804e3b..13029eded 100644 --- a/app/components/masthead/masthead.html +++ b/app/components/masthead/masthead.html @@ -1,15 +1,9 @@
Endpoint: {{ endpoint }}
diff --git a/assets/css/app.css b/assets/css/app.css
index 9e227ff84..281b45f61 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -1,6 +1,5 @@
body {
padding-top: 20px;
- padding-bottom: 60px;
}
.container > hr {
@@ -35,33 +34,33 @@ body {
margin-top: 28px;
}
-.navbar .navbar-inner {
- padding: 0;
-}
-
-.navbar .nav {
+.masthead .nav {
margin: 0;
width: 100%;
}
-.navbar .nav li {
+.masthead .nav.well {
+ padding: 0;
+}
+
+.masthead .nav li {
display: table-cell;
width: 1%;
float: none;
}
-.navbar .nav li a {
+.masthead .nav li a {
font-weight: bold;
text-align: center;
border-left: 1px solid rgba(255,255,255,.75);
border-right: 1px solid rgba(0,0,0,.1);
}
-.navbar .nav li:first-child a {
+.masthead .nav li:first-child a {
border-left: 0;
border-radius: 3px 0 0 3px;
}
-.navbar .nav li:last-child a {
+.masthead .nav li:last-child a {
border-right: 0;
border-radius: 0 3px 3px 0;
}
@@ -76,7 +75,7 @@ body {
}
.center {
- width: 80%;
+ width: 100%;
margin: 0 auto;
}
@@ -93,8 +92,8 @@ body {
height: 50px;
}
-.footer {
- max-height:6px;
+.well {
+ padding: 10px 15px 0 15px;
}
#response {
diff --git a/index.html b/index.html
index b529c6167..6307d2771 100644
--- a/index.html
+++ b/index.html
@@ -58,7 +58,7 @@