blob: 41a49c431f2925c95ad5945e627c8ae57f1702dd [file] [log] [blame]
Bri Prebilic Cole96f26472015-03-31 13:07:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole96f26472015-03-31 13:07:05 -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
17/*
Simon Hunt58894c82016-05-24 15:09:02 -070018 ONOS GUI -- Intent View (layout) -- CSS file
Bri Prebilic Cole96f26472015-03-31 13:07:05 -070019 */
20
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -070021#ov-intent h2 {
22 display: inline-block;
23}
24
25#ov-intent div.ctrl-btns {
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -070026}
27
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070028
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070029#ov-intent td.resources,
30#ov-intent td.details {
31 padding-left: 36px;
32}
Simon Huntfc5c5842017-02-01 23:32:18 -080033
34#ov-intent div.show-intent-btn {
35 position:relative;
36}
37
38#ov-intent .dropdown {
39 position: absolute;
40 top: 42px;
41 left: 0;
42 display: none;
43
44 border: 1px solid black;
45 background-color: #aec5dc;
46}
47
48#ov-intent .overlay-choice {
49 padding: 2px;
50 white-space: nowrap;
51 font-size: 10pt;
52
53 color: black;
54}
55
56#ov-intent .overlay-choice:hover {
57 color: white;
58}