blob: ada7d397cf9c24e7f10064f6b4bf75b22a352687 [file] [log] [blame]
Sean Condonafe47c22019-12-19 14:28:06 +00001/*
2 * Copyright 2019-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
18/* Base */
Thomas Vachuskaedb437a2020-02-27 14:25:58 -080019#ov-pipeconf h2 {
20 display: inline-block;
Sean Condon97aa6702020-05-21 14:17:43 +010021 margin: 0 0 0 16px;
Thomas Vachuskaedb437a2020-02-27 14:25:58 -080022}
23
Sean Condonafe47c22019-12-19 14:28:06 +000024#pipeconf-info h2 {
25 display: inline-block;
26 margin: 10px 0 10px 0;
27}
28
29#pipeconf-info h3 {
30 display: inline-block;
31 margin-bottom: 10px;
32}
33
34#pipeconf-info {
35 height: 80vh;
36 max-width: 100%;
37 overflow-y: scroll;
38 overflow-x: scroll;
39 padding-left: 16px;
40 padding-right: 20px;
41}
42
43#pipeconf-info::-webkit-scrollbar {
44 display: none;
45}
46
47/* Table */
48.pipeconf-table {
49 width: 100%;
50}
51
52.pipeconf-table tr {
53 transition: background-color 500ms;
54 text-align: left;
55 padding: 8px 4px;
56}
57
58.pipeconf-table .selected {
59 background-color: #dbeffc !important;
60}
61
62.pipeconf-table tr:nth-child(even) {
63 background-color: #f4f4f4;
64}
65
66.pipeconf-table tr:nth-child(odd) {
67 background-color: #fbfbfb;
68}
69
70.pipeconf-table thead th {
71 background-color: #e5e5e6;
72 color: #3c3a3a;
73 font-weight: bold;
74 font-variant: small-caps;
75 text-transform: uppercase;
76 font-size: 10pt;
77 letter-spacing: 0.02em;
78}
79
80.pipeconf-table tr td {
81 padding: 4px;
82 text-align: left;
83 word-wrap: break-word;
84 font-size: 10pt;
85}
86
87.pipeconf-table tr td p {
88 margin: 5px 0;
89}