mirror of https://github.com/portainer/portainer
Misc. html/css tweaks, bumped version.
parent
012c8ed145
commit
57d8ae3e01
|
@ -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');
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<div class="footer center well">
|
||||
<p><small>Docker API Version: <strong>{{ apiVersion }}</strong> UI Version: <strong>{{ uiVersion }}</strong> <a style="float:right" href="https://github.com/crosbymichael/dockerui">dockerui</a></small></p>
|
||||
</div>
|
||||
<footer class="center well">
|
||||
<p><small>Docker API Version: <strong>{{ apiVersion }}</strong> UI Version: <strong>{{ uiVersion }}</strong> <a class="pull-right" href="https://github.com/crosbymichael/dockerui">dockerui</a></small></p>
|
||||
</footer>
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
<div class="masthead">
|
||||
<h3 class="text-muted">DockerUI</h3>
|
||||
<div class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<div class="container">
|
||||
<ul class="nav">
|
||||
<li><a href="#">Dashboard</a></li>
|
||||
<li><a href="#/containers/">Containers</a></li>
|
||||
<li><a href="#/images/">Images</a></li>
|
||||
<li><a href="#/settings/">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="nav well">
|
||||
<li><a href="#">Dashboard</a></li>
|
||||
<li><a href="#/containers/">Containers</a></li>
|
||||
<li><a href="#/images/">Images</a></li>
|
||||
<li><a href="#/settings/">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="detail">
|
||||
<h3>Docker Information</h3>
|
||||
<h2>Docker Information</h2>
|
||||
<div>
|
||||
<p class="lead">
|
||||
<strong>Endpoint: </strong>{{ endpoint }}<br />
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
|
||||
<body>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="container">
|
||||
<div ng-include="template" ng-controller="MastheadController"></div>
|
||||
|
||||
<div id="view" ng-view></div>
|
||||
|
|
Loading…
Reference in New Issue