blob: ff727a32a60e3274c46efe5af17486dd757f305f [file] [log] [blame]
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08001/*
2 * Copyright 2015 Open Networking Laboratory
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 ONOS GUI -- common -- CSS file
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080019 */
20
Bri Prebilic Cole15983012015-01-28 15:17:18 -080021/* ------ for summary-list tables ------ */
22
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080023table.summary-list {
Thomas Vachuska95aadff2015-03-26 11:45:41 -070024 margin: 0 20px 16px 12px;
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080025 font-size: 10pt;
Bri Prebilic Cole15983012015-01-28 15:17:18 -080026 border-spacing: 0;
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080027}
28
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080029table.summary-list tbody {
Bri Prebilic Cole15983012015-01-28 15:17:18 -080030 border-radius: 0 0 8px 8px;
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080031}
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080032
Simon Hunt0c2c4c52015-04-02 17:42:45 -070033table.summary-list td.nodata {
34 text-align: center;
35 font-style: italic;
36}
37
Bri Prebilic Cole15983012015-01-28 15:17:18 -080038.light table.summary-list tr:nth-child(even) {
39 background-color: #ddd;
40}
41.light table.summary-list tr:nth-child(odd) {
42 background-color: #eee;
43}
44.dark table.summary-list tr:nth-child(even) {
45 background-color: #333;
46}
47.dark table.summary-list tr:nth-child(odd) {
48 background-color: #444;
49}
50
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070051.light table.summary-list tr.selected {
52 background-color: deepskyblue;
53}
54
55.dark table.summary-list tr.selected {
56 background-color: #304860;
57}
58
59table.summary-list td,th {
60 padding: 6px 6px 6px 6px;
Bri Prebilic Cole357f7fd2015-02-12 17:03:42 -080061 text-align: left;
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070062}
63
64table.summary-list th {
65 letter-spacing: 0.02em;
Bri Prebilic Coledb498002015-03-27 14:20:05 -070066 cursor: pointer;
Bri Prebilic Cole15983012015-01-28 15:17:18 -080067}
68table.summary-list th:first-child {
69 border-radius: 8px 0 0 0;
70}
71table.summary-list th:last-child {
72 border-radius: 0 8px 0 0;
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080073}
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070074
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080075.light table.summary-list th {
76 background-color: #bbb;
77}
78.dark table.summary-list th {
Bri Prebilic Cole15983012015-01-28 15:17:18 -080079 background-color: #222;
80 color: #ccc;
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080081}
82
Thomas Vachuska619c5382015-04-02 13:41:47 -070083/* rows are selectable */
84table.summary-list td {
85 cursor: pointer;
86}
87
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080088.dark table.summary-list td {
Bri Prebilic Cole15983012015-01-28 15:17:18 -080089 color: #ccc;
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080090}
Bri Prebilic Cole15983012015-01-28 15:17:18 -080091
92/* ------------------------------------ */