blob: 06716bb5f73358e426b9eb536869ed8b50f3529a [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
19
20 @author Simon Hunt
21 */
22
23#feedback svg {
24 position: absolute;
25 bottom: 0;
Thomas Vachuska47635c62014-11-22 01:21:36 -080026 opacity: 0.8;
Simon Hunta3dd9572014-11-20 15:22:41 -080027}
28
29#feedback svg g.feedbackItem {
30 background-color: teal;
31}
32
33#feedback svg g.feedbackItem rect {
Thomas Vachuska47635c62014-11-22 01:21:36 -080034 fill: #ccc;
Simon Hunta3dd9572014-11-20 15:22:41 -080035}
36
37#feedback svg g.feedbackItem text {
Thomas Vachuska47635c62014-11-22 01:21:36 -080038 fill: #333;
Simon Hunta3dd9572014-11-20 15:22:41 -080039 stroke: none;
40 text-anchor: middle;
41 alignment-baseline: middle;
42
43 font-size: 16pt;
44}