Simon Hunt
Committed by Gerrit Code Review

GUI- Minor tweaks to driver matrix style

- update cell simon-uk

Change-Id: I4f57e4214b636e8d8ada1a6d9711e01a98442d62
...@@ -4,6 +4,12 @@ ...@@ -4,6 +4,12 @@
4 display: inline-block; 4 display: inline-block;
5 } 5 }
6 6
7 +#ov-driver-matrix .driver-matrix {
8 + /* FIXME: demo only, need a proper scrolling solution */
9 + height: 600px;
10 + overflow: scroll;
11 +}
12 +
7 #ov-driver-matrix table { 13 #ov-driver-matrix table {
8 margin-left: 20px; 14 margin-left: 20px;
9 } 15 }
...@@ -12,10 +18,10 @@ ...@@ -12,10 +18,10 @@
12 border-collapse: collapse; 18 border-collapse: collapse;
13 } 19 }
14 #ov-driver-matrix .table-header-rotated td { 20 #ov-driver-matrix .table-header-rotated td {
15 - width: 30px; 21 + width: 24px;
16 } 22 }
17 #ov-driver-matrix .table-header-rotated td.xmark { 23 #ov-driver-matrix .table-header-rotated td.xmark {
18 - background-color: yellow; 24 + background-color: rgba(200, 85, 85, 0.5);
19 } 25 }
20 #ov-driver-matrix .table-header-rotated td { 26 #ov-driver-matrix .table-header-rotated td {
21 text-align: center; 27 text-align: center;
...@@ -25,6 +31,7 @@ ...@@ -25,6 +31,7 @@
25 #ov-driver-matrix .table-header-rotated th.rotate { 31 #ov-driver-matrix .table-header-rotated th.rotate {
26 height: 140px; 32 height: 140px;
27 white-space: nowrap; 33 white-space: nowrap;
34 + font-size: 10pt;
28 } 35 }
29 #ov-driver-matrix .table-header-rotated th.rotate > div { 36 #ov-driver-matrix .table-header-rotated th.rotate > div {
30 -webkit-transform: translate(25px, 51px) rotate(-45deg); 37 -webkit-transform: translate(25px, 51px) rotate(-45deg);
......
...@@ -34,7 +34,8 @@ export OCI=$OC1 ...@@ -34,7 +34,8 @@ export OCI=$OC1
34 ## credentials for logging into ONOS instances 34 ## credentials for logging into ONOS instances
35 export ONOS_USER=sdn 35 export ONOS_USER=sdn
36 36
37 -export ONOS_APPS="drivers,openflow,proxyarp,fwd" 37 +## the apps we want activated at startup
38 +export ONOS_APPS="drivers,openflow,proxyarp,drivermatrix"
38 39
39 ## mininet VM 40 ## mininet VM
40 export OCN="192.168.56.103" 41 export OCN="192.168.56.103"
......