From 9851b4f42134bcca742f90951fc7e8d7d8cc8378 Mon Sep 17 00:00:00 2001 From: Andrew Herron Date: Thu, 17 May 2012 12:51:57 +1000 Subject: [PATCH 1/3] Added fewtile-all.html which uses iframes to display the grouped build filters in one screen --- fewtile-all.html | 42 ++++++++++++++++++++++++++++++++++++++++++ index.html | 1 + 2 files changed, 43 insertions(+) create mode 100644 fewtile-all.html diff --git a/fewtile-all.html b/fewtile-all.html new file mode 100644 index 0000000..071fe50 --- /dev/null +++ b/fewtile-all.html @@ -0,0 +1,42 @@ + + + + +
+ +
+
+ +
+
+ +
+ + diff --git a/index.html b/index.html index 45bfc7f..11bcfa7 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,7 @@ Building Jobs All Groups All Jobs + Combinatorial view From 5fac6e5454c330cd375b79b442926a22d6af423a Mon Sep 17 00:00:00 2001 From: Andrew Herron Date: Thu, 17 May 2012 12:52:38 +1000 Subject: [PATCH 2/3] switched index to inline-block so the buttons aren't just one big vertical list --- css/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 83541e1..23a8265 100644 --- a/css/index.css +++ b/css/index.css @@ -1,5 +1,5 @@ a { - display: block; + display: inline-block; background-color: blue; border: 4px outset #f0f0f0; color: #888888; From 74293f2f0447b112c8ac0c0e75dd37a86106f760 Mon Sep 17 00:00:00 2001 From: Andrew Herron Date: Fri, 18 May 2012 14:17:29 +1000 Subject: [PATCH 3/3] Moved CSS to a new file. Used correct @import syntax. --- css/fewtile-all.css | 24 ++++++++++++++++++++++++ fewtile-all.html | 27 +-------------------------- 2 files changed, 25 insertions(+), 26 deletions(-) create mode 100644 css/fewtile-all.css diff --git a/css/fewtile-all.css b/css/fewtile-all.css new file mode 100644 index 0000000..7b6d573 --- /dev/null +++ b/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%; +} diff --git a/fewtile-all.html b/fewtile-all.html index 071fe50..32346f4 100644 --- a/fewtile-all.html +++ b/fewtile-all.html @@ -1,31 +1,6 @@