blob: fae757d16ee03d7a05e912d093ad7b6d1a9b1a66 [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;
7}
8
9.header {
10 width: 100%;
11 display: -webkit-box;
12 -webkit-box-pack: justify;
13 -webkit-box-align: center;
14}
15
16#status {
17 display: -webkit-box;
18}
19
Paul Greyson740bdaf2013-03-18 16:10:48 -070020#left, #right {
21 display: -webkit-box;
22 -webkit-box-orient: vertical;
23}
24
Paul Greysond9872392013-03-18 12:04:15 -070025#right {
26 width: 100%;
27 -webkit-box-flex: 1.0;
28}
29
30#controllers, #topology {
Paul Greysond9872392013-03-18 12:04:15 -070031 -webkit-box-flex: 1.0;
Paul Greyson740bdaf2013-03-18 16:10:48 -070032 position: relative;
Paul Greysond9872392013-03-18 12:04:15 -070033}
34
Paul Greyson6f86d1e2013-03-18 14:40:39 -070035#selectedFlows {
Paul Greyson127d7fb2013-03-25 23:39:20 -070036 display: -webkit-box;
37 -webkit-box-orient: vertical;
Paul Greyson6f86d1e2013-03-18 14:40:39 -070038}
39
Paul Greyson127d7fb2013-03-25 23:39:20 -070040.selectedFlow {
Paul Greysond9872392013-03-18 12:04:15 -070041 display: -webkit-box;
Paul Greysond9872392013-03-18 12:04:15 -070042}
43
Paul Greyson127d7fb2013-03-25 23:39:20 -070044#selectedFlowsHeader {
45 display: -webkit-box;
46}
47
48.flowIndex {
49 width: 1.5em;
50}
51
52.flowId {
53 width: 5em;
54}
55
56.srcDPID, .dstDPID {
57 width: 20em;
58}
59
60.iperf {
61 width: 100%;
62 -webkit-box-flex: 1.0;
63}
64
65.selectedFlow {
66 border-bottom: 1px solid white;
67}
68
69.selectedFlow:last-child {
70 border-bottom: none;
71}
72
73
Paul Greysond1a22d92013-03-19 12:15:19 -070074#controllers {
75 display: -webkit-box;
76 -webkit-box-orient: vertical;
77}
78
79#controllers .header {
80 -webkit-box-pack: center;
81 border-bottom: 1px solid white;
82}
83
84#controllerList {
85 display: -webkit-box;
86 -webkit-box-orient: vertical;
87 -webkit-box-flex: 1.0;
88 overflow: scroll;
89}
90
91.controller {
92 margin: .25em;
93 background-color: blue;
94}
95
Paul Greyson740bdaf2013-03-18 16:10:48 -070096#svg-container {
97 position: absolute;
98 top: 0px;
99 height: 100%;
100 width: 100%;
101}