Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 1 | /* |
Sean Condon | 5ca0026 | 2018-09-06 17:55:25 +0100 | [diff] [blame] | 2 | * Copyright 2018-present Open Networking Foundation |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 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 -- Panel Service (layout) -- CSS file |
| 19 | */ |
| 20 | |
| 21 | .floatpanel { |
| 22 | position: absolute; |
| 23 | z-index: 100; |
| 24 | display: block; |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 25 | top: 160px; |
| 26 | width: 544px; |
| 27 | right: -550px; |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 28 | opacity: 100; |
| 29 | |
| 30 | padding: 2px; |
| 31 | font-size: 10pt; |
| 32 | } |
| 33 | |
| 34 | /* The following 4 are copied here from Theme until we sort out the |
| 35 | * theme service |
| 36 | */ |
| 37 | .floatpanel { |
| 38 | background-color: white; |
| 39 | color: #3c3a3a; |
| 40 | border: 1px solid #c7c7c0; |
| 41 | } |
| 42 | |
| 43 | .floatpanel hr { |
| 44 | border: 1px solid #c7c7c0; |
| 45 | } |
| 46 | |
| 47 | .floatpanel .bottom tr:nth-child(odd) { |
| 48 | background-color: #f4f4f4; |
| 49 | } |
| 50 | |
| 51 | .floatpanel .bottom tr:nth-child(even) { |
| 52 | background-color: #fbfbfb; |
| 53 | } |
| 54 | |
| 55 | .floatpanel.dialog { |
| 56 | top: 180px; |
| 57 | } |
| 58 | |
| 59 | html[data-platform='iPad'] .floatpanel { |
| 60 | top: 80px; |
| 61 | } |