GUI -- Added application view buttons. (WIP - require click handlers still)
- cleaned up icon.css rules.

Change-Id: If76f1e731da80e44391077c265f7671b07ef34db
diff --git a/web/gui/src/main/webapp/app/view/app/app.css b/web/gui/src/main/webapp/app/view/app/app.css
index b30f488..9de3e17 100644
--- a/web/gui/src/main/webapp/app/view/app/app.css
+++ b/web/gui/src/main/webapp/app/view/app/app.css
@@ -18,5 +18,40 @@
  ONOS GUI -- Host View -- CSS file
  */
 
-#ov-app td {
+#ov-app h2 {
+    display: inline-block;
+}
+
+#ov-app div.ctrl-btns {
+    display:inline-block;
+    float: right;
+    width: 200px;
+    height: 44px;
+    margin-right: 24px;
+    margin-top: 7px;
+}
+
+div.ctrl-btns div {
+    display: inline-block;
+    padding: 4px;
+    cursor: pointer;
+}
+
+.light div.ctrl-btns div svg.embeddedIcon g.icon use {
+    fill: white;
+}
+.dark div.ctrl-btns div svg.embeddedIcon g.icon use {
+    fill: #333;
+}
+
+.light div.ctrl-btns div svg.embeddedIcon g.icon rect {
+    fill: #dde;
+}
+.dark div.ctrl-btns div svg.embeddedIcon g.icon rect {
+    fill: #556;
+}
+
+/* rows are selectable */
+table.summary-list td {
+    cursor: pointer;
 }