blob: 2f113491a9a03524b0f96af6187464aca6a191ea [file] [log] [blame]
Bhavesh72ead492018-07-19 16:29:18 +05301/*
2 * Copyright 2018-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 #flow-details-panel.floatpanel {
18 z-index: 0;
19 padding-top: 10px;
20 font-size: 10pt;
21 top: 185px;
22}
23
24#flow-details-panel .container {
25 padding: 8px 12px;
26}
27
28#flow-details-panel .close-btn {
29 position: absolute;
30 right: 5px;
31 top: 5px;
32 cursor: pointer;
33}
34
35#flow-details-panel .flow-icon {
36 display: inline-block;
37 padding: 0 6px 0 0;
38 vertical-align: middle;
39}
40
41#flow-details-panel h2 {
42 display: inline-block;
43 margin: 8px 0;
44 font-weight: bold;
45 font-size: 16pt;
46}
47
48#flow-details-panel hr {
49 clear: both;
50 width: 100%;
51 margin: 2px auto;
52}
53
54#flow-details-panel td.label {
55 font-weight: bold;
56 text-align: right;
57 padding-right: 6px;
58}
59
60#flow-details-panel .scroll {
61 border-spacing: 0;
62 height: 400px;
63 width: 520px;
64 overflow: auto;
65 display: block;
66}