blob: e46f165817db025ba510f0ea3685c9934b47b5bd [file] [log] [blame]
Paul Greyson740bdaf2013-03-18 16:10:48 -07001html, body {
2 height: 100%;
3}
4
Paul Greysond9872392013-03-18 12:04:15 -07005body {
6 display: -webkit-box;
Paul Greyson56378ed2013-03-26 23:17:36 -07007 -webkit-box-orient: vertical;
Paul Greyson4e6dc3a2013-03-27 11:37:14 -07008 -webkit-user-select: none;
Paul Greyson56378ed2013-03-26 23:17:36 -07009}
10
11#columns {
12 display: -webkit-box;
13 -webkit-box-flex: 1.0;
Paul Greysond9872392013-03-18 12:04:15 -070014}
15
16.header {
17 width: 100%;
18 display: -webkit-box;
19 -webkit-box-pack: justify;
20 -webkit-box-align: center;
21}
22
23#status {
24 display: -webkit-box;
25}
26
Paul Greyson740bdaf2013-03-18 16:10:48 -070027#left, #right {
28 display: -webkit-box;
29 -webkit-box-orient: vertical;
30}
31
Paul Greysond9872392013-03-18 12:04:15 -070032#right {
33 width: 100%;
34 -webkit-box-flex: 1.0;
35}
36
37#controllers, #topology {
Paul Greysond9872392013-03-18 12:04:15 -070038 -webkit-box-flex: 1.0;
Paul Greyson740bdaf2013-03-18 16:10:48 -070039 position: relative;
Paul Greysond9872392013-03-18 12:04:15 -070040}
41
Paul Greyson6f86d1e2013-03-18 14:40:39 -070042#selectedFlows {
Paul Greyson127d7fb2013-03-25 23:39:20 -070043 display: -webkit-box;
44 -webkit-box-orient: vertical;
Paul Greyson6f86d1e2013-03-18 14:40:39 -070045}
46
Paul Greyson127d7fb2013-03-25 23:39:20 -070047.selectedFlow {
Paul Greysond9872392013-03-18 12:04:15 -070048 display: -webkit-box;
Paul Greyson4e6dc3a2013-03-27 11:37:14 -070049 -webkit-user-select: auto;
Paul Greysond9872392013-03-18 12:04:15 -070050}
51
Paul Greyson127d7fb2013-03-25 23:39:20 -070052#selectedFlowsHeader {
53 display: -webkit-box;
54}
55
56.flowIndex {
57 width: 1.5em;
58}
59
60.flowId {
61 width: 5em;
62}
63
64.srcDPID, .dstDPID {
65 width: 20em;
66}
67
68.iperf {
69 width: 100%;
70 -webkit-box-flex: 1.0;
71}
72
Paul Greysond1a22d92013-03-19 12:15:19 -070073#controllers {
74 display: -webkit-box;
75 -webkit-box-orient: vertical;
76}
77
Paul Greysond1a22d92013-03-19 12:15:19 -070078
79#controllerList {
80 display: -webkit-box;
81 -webkit-box-orient: vertical;
82 -webkit-box-flex: 1.0;
83 overflow: scroll;
84}
85
86.controller {
87 margin: .25em;
88 background-color: blue;
89}
90
Paul Greyson740bdaf2013-03-18 16:10:48 -070091#svg-container {
92 position: absolute;
93 top: 0px;
94 height: 100%;
95 width: 100%;
96}