blob: 30deccaf53d0762dcae4aa600adbd8261bb577e2 [file] [log] [blame]
Simon Hunta3dd9572014-11-20 15:22:41 -08001/*
2 * Copyright 2014 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 -- Feedback layer -- CSS file
Simon Hunta3dd9572014-11-20 15:22:41 -080019 */
20
Simon Hunt7b403bc2014-11-22 19:01:00 -080021#feedback {
22 z-index: 1400;
23}
24
Simon Hunta3dd9572014-11-20 15:22:41 -080025#feedback svg {
26 position: absolute;
27 bottom: 0;
Thomas Vachuska47635c62014-11-22 01:21:36 -080028 opacity: 0.8;
Simon Hunta3dd9572014-11-20 15:22:41 -080029}
30
31#feedback svg g.feedbackItem {
32 background-color: teal;
33}
34
35#feedback svg g.feedbackItem rect {
Thomas Vachuska47635c62014-11-22 01:21:36 -080036 fill: #ccc;
Simon Hunta3dd9572014-11-20 15:22:41 -080037}
38
39#feedback svg g.feedbackItem text {
Thomas Vachuska47635c62014-11-22 01:21:36 -080040 fill: #333;
Simon Hunta3dd9572014-11-20 15:22:41 -080041 stroke: none;
42 text-anchor: middle;
43 alignment-baseline: middle;
44
45 font-size: 16pt;
46}