blob: 66cadbe1df7e3bbc64981043d649633e9ddb1b90 [file] [log] [blame]
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -07003 *
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
Simon Hunt58894c82016-05-24 15:09:02 -070017/* ------ for summary-list tables (layout) ------ */
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070018
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070019div.summary-list {
20 margin: 0 20px 16px 10px;
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070021 font-size: 10pt;
22 border-spacing: 0;
23}
24
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070025div.summary-list table {
26 border-collapse: collapse;
27 table-layout: fixed;
28 empty-cells: show;
29 margin: 0;
30}
31
32div.summary-list div.table-body {
33 overflow-y: scroll;
34}
35
Bri Prebilic Cole0a6ffb62015-06-04 09:32:12 -070036div.summary-list div.table-body::-webkit-scrollbar {
37 display: none;
38}
39
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070040div.summary-list tr.no-data td {
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070041 text-align: center;
42 font-style: italic;
43}
44
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070045
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070046/* highlighting */
47div.summary-list tr {
48 transition: background-color 500ms;
49}
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070050
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070051div.summary-list td {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070052 padding: 4px;
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070053 text-align: left;
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070054 word-wrap: break-word;
Simon Huntf3fd4ed2016-05-31 17:16:18 -070055 font-size: 12pt;
56}
57
58div.summary-list td.table-icon {
59 padding-left: 4px;
Simon Hunt5fdba202016-06-02 20:01:14 -070060 text-align: center;
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070061}
62
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070063div.summary-list .table-header td {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070064 font-weight: bold;
65 font-variant: small-caps;
66 text-transform: uppercase;
67 font-size: 11pt;
68 padding-top: 14px;
69 padding-bottom: 14px;
70
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070071 letter-spacing: 0.02em;
72 cursor: pointer;
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070073}
74
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070075/* rows are selectable */
Bri Prebilic Colee568ead2015-05-01 09:51:28 -070076div.summary-list .table-body td {
Bri Prebilic Cole264c5ec2015-04-07 10:22:26 -070077 cursor: pointer;
78}
79
Simon Huntc8f06d92016-09-28 17:28:26 -070080/* Tabular view controls */
Bri Prebilic Cole41d67652015-06-02 10:23:04 -070081
Simon Huntc8f06d92016-09-28 17:28:26 -070082div.tabular-header .search {
83 margin: 0 0 10px 10px;
84}
85
86
87div.tabular-header div.ctrl-btns {
Bri Prebilic Cole41d67652015-06-02 10:23:04 -070088 display: inline-block;
89 float: right;
90 height: 44px;
Simon Hunt5487ce72016-06-06 15:31:10 -070091 margin-top: 24px;
92 margin-right: 20px;
Ching-Ting Sun7016ea32016-12-30 00:54:57 -080093 position: absolute;
94 right: 0px;
Bri Prebilic Cole41d67652015-06-02 10:23:04 -070095}
96
Simon Huntc8f06d92016-09-28 17:28:26 -070097div.tabular-header div.ctrl-btns div {
Bri Prebilic Cole41d67652015-06-02 10:23:04 -070098 display: inline-block;
Bri Prebilic Cole41d67652015-06-02 10:23:04 -070099 cursor: pointer;
100}
101
Simon Huntc8f06d92016-09-28 17:28:26 -0700102div.tabular-header div.ctrl-btns div.separator {
Simon Hunt5fdba202016-06-02 20:01:14 -0700103 width: 0;
Simon Hunt5487ce72016-06-06 15:31:10 -0700104 height: 40px;
Simon Hunt5fdba202016-06-02 20:01:14 -0700105 padding: 0;
106 border-right: 1px solid #c7c7c0;
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -0700107}