Skip to content

Commit

Permalink
Merge pull request #13 from TheSpyder/Combined_View
Browse files Browse the repository at this point in the history
Combined view
  • Loading branch information
techtangents committed May 30, 2012
2 parents 5a3fd6d + 74293f2 commit 27f55db
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
24 changes: 24 additions & 0 deletions css/fewtile-all.css
@@ -0,0 +1,24 @@
@import url('reset.css');
iframe {
width:100%;
height:100%;
}
.panel {
position:absolute;
left:10px;
top:10px;
right:10px;
bottom:10px;
}
.right {
left: 51%;
}
.left {
right:50%;
}
.top {
bottom: 25%;
}
.bottom {
top: 76%;
}
2 changes: 1 addition & 1 deletion css/index.css
@@ -1,5 +1,5 @@
a {
display: block;
display: inline-block;
background-color: blue;
border: 4px outset #f0f0f0;
color: #888888;
Expand Down
17 changes: 17 additions & 0 deletions fewtile-all.html
@@ -0,0 +1,17 @@
<html><head>
<style>
@import url('css/fewtile-all.css');
</style>
</head>
<body>
<div class="panel right">
<iframe src="fewtile.html?allGroups"></iframe>
</div>
<div class="panel left top">
<iframe src="fewtile.html?failingJobs"></iframe>
</div>
<div class="panel left bottom">
<iframe src="fewtile.html?buildingJobs"></iframe>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions index.html
Expand Up @@ -11,6 +11,7 @@
<a href='fewtile.html?buildingJobs'>Building Jobs</a>
<a href='fewtile.html?allGroups'>All Groups</a>
<a href='fewtile.html?allJobs'>All Jobs</a>
<a href='fewtile-all.html'>Combinatorial view</a>
</body>
</html>

0 comments on commit 27f55db

Please sign in to comment.