Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 1 | /* |
| 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 -- Floating Panels -- CSS file |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | .fpanel { |
| 22 | position: absolute; |
| 23 | z-index: 100; |
| 24 | display: block; |
Thomas Vachuska | 47635c6 | 2014-11-22 01:21:36 -0800 | [diff] [blame] | 25 | top: 64px; |
| 26 | width: 260px; |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 27 | right: -300px; |
| 28 | opacity: 0; |
| 29 | background-color: rgba(255,255,255,0.8); |
| 30 | |
| 31 | padding: 10px; |
| 32 | color: black; |
| 33 | font-size: 10pt; |
Simon Hunt | a6a9fe7 | 2014-11-20 11:17:12 -0800 | [diff] [blame] | 34 | |
| 35 | -moz-border-radius: 6px; |
| 36 | border-radius: 6px; |
Simon Hunt | 2f9fb70 | 2014-11-23 17:33:32 -0800 | [diff] [blame] | 37 | box-shadow: 0px 2px 12px #777; |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | /* TODO: light/dark themes */ |
| 41 | .light .fpanel { |
| 42 | |
| 43 | } |
| 44 | .dark .fpanel { |
| 45 | |
| 46 | } |