grim/port-authority

making this actually look decent
develop
2014-12-22, Gary Kramlich
e8d0eda233d7
Parents 2af332870cea
Children b362c9d51a35
making this actually look decent
--- a/css/style.css Mon Dec 22 23:28:52 2014 -0600
+++ b/css/style.css Mon Dec 22 23:52:19 2014 -0600
@@ -1,7 +1,7 @@
@charset "UTF-8";
html {
- overflow-y: scroll;
+ height: 100%;
}
body {
@@ -13,27 +13,14 @@
.main {
margin: 0 auto;
width: 75%;
-}
-
-.listing {
- padding-top: 1em;
height: 100%;
- overflow-y: auto;
}
-.repositories {
- order: 0;
- flex-grow: 1;
- max-width: 25%;
- min-width: 25%;
-}
-
-.repository {
- order: 1;
- flex-grow: 4;
- margin-left: 1em;
- min-width: 75%;
- max-width: 75%;
+.repo-list {
+ padding: 0;
+ margin-top: 1em;
+ height: 90%;
+ overflow-y: auto;
}
.tag-list {
--- a/html/window.html Mon Dec 22 23:28:52 2014 -0600
+++ b/html/window.html Mon Dec 22 23:52:19 2014 -0600
@@ -12,7 +12,7 @@
</script>
</head>
<body data-ng-controller="ManifestController">
- <div class="main container">
+ <div class="main">
<div class="row">
<form data-ng-submit="refresh()">
<div class="col-xs-5">
@@ -33,11 +33,9 @@
</form>
</div>
<div>Clipboard: {{clipboard}}</div>
- <div class="listing col-xs-4">
- <div class="list-group repo-list">
+ <div class="list-group repo-list col-xs-4">
<a class="list-group-item" data-ng-repeat="r in repos" data-ng-click="select_repo(r)" ng-class="(r == repo) ? 'active': ''" href="#">{{r.name}}</a>
</div>
- </div>
<div class="repo-info col-xs-8" data-ng-show="repo">
<div><h1>{{repo.name}}</h1></div>
<div>{{repo.description||""}}</div>