blob: 83f0ba32e2572d29b9e5a5c11c013b0c0f9ce69d [file] [log] [blame]
daniel park128c52c2017-09-04 13:15:51 +09001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* css for OpenStack Networking UI. */
18
19#traceInfoDialogId h2 {
20 text-align: center;
boyoung27b444122018-09-01 17:28:13 +090021 width: 300px;
daniel park128c52c2017-09-04 13:15:51 +090022 margin: 0;
23 font-weight: lighter;
24 word-wrap: break-word;
25 display: inline-block;
26 vertical-align: middle;
27 font-size: 14pt;
28}
29
30div.traceInfo table {
31 border-collapse: collapse;
32 table-layout: fixed;
33 empty-cells: show;
34 margin: 0;
35 width: 200px;
36}
37
38div.traceInfo td {
39 cursor: pointer;
40 font-variant: small-caps;
41
42 font-size: 10pt;
43 padding-top: 14px;
44 padding-bottom: 14px;
45
46 letter-spacing: 0.02em;
47 cursor: pointer;
48
49 color: #3c3a3a;
boyoung27b444122018-09-01 17:28:13 +090050 width: 170px;
daniel park128c52c2017-09-04 13:15:51 +090051}
52
53div.traceInfo td.label {
54 font-weight: bold;
55}
56
57#flowTraceResultDialogId h2 {
58 text-align: center;
59 width: 600px;
60
61 padding: 0 0 0 10px;
62 margin: 0;
63 font-weight: lighter;
64 word-wrap: break-word;
65 display: inline-block;
66 vertical-align: middle;
67}
68
69div.flowTraceResult table {
70 border-collapse: collapse;
71 table-layout: fixed;
72 empty-cells: show;
73 margin: 0;
74 width: 600px;
75}
76
77div.flowTraceResult td {
78 padding: 4px;
79 text-align: center;
80 word-wrap: break-word;
81 font-size: 12pt;
82}
83
84div.flowTraceResult .table-header td {
85 font-weight: bold;
86 font-variant: small-caps;
87 text-transform: uppercase;
88 font-size: 11pt;
89 padding-top: 14px;
90 padding-bottom: 14px;
91
92 letter-spacing: 0.02em;
93 cursor: pointer;
94
95 background-color: #e5e5e6;
96 color: #3c3a3a;
97 width: 120px;
98
99}
100
101div.flowTraceResult .table-body tr:nth-child(even) {
102 background-color: #f4f4f4;
103}
104
105div.flowTraceResult .table-body tr:nth-child(odd) {
106 background-color: #fbfbfb;
107}
108
109div.flowTraceResult .table-body td {
110 cursor: pointer;
111 font-variant: small-caps;
112
113 font-size: 10pt;
114 padding-top: 14px;
115 padding-bottom: 14px;
116
117 letter-spacing: 0.02em;
118 cursor: pointer;
119
120 color: #3c3a3a;
121 width: 120px;
122}
123
124div.flowTraceResult .table-body tr.drop {
125 background-color: #e28d8d;
boyoung27b444122018-09-01 17:28:13 +0900126}
127