Simon Hunt | bb282f5 | 2014-11-10 11:08:19 -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 -- Web Socket Trace -- CSS file |
| 19 | |
| 20 | @author Simon Hunt |
| 21 | */ |
| 22 | |
| 23 | #webSockTrace .toolbar { |
| 24 | height: 36px; |
| 25 | padding: 4px; |
| 26 | vertical-align: baseline; |
| 27 | font-size: 12pt; |
| 28 | margin-top: 6px; |
| 29 | } |
| 30 | |
| 31 | /* theme-related */ |
| 32 | #webSockTrace .toolbar { |
| 33 | background-color: #448; |
| 34 | color: #fff; |
| 35 | } |
| 36 | |
| 37 | #webSockTrace .output { |
| 38 | overflow-y: scroll; |
| 39 | } |
| 40 | |
| 41 | /* theme-related */ |
| 42 | #webSockTrace .output { |
| 43 | background-color: #eef; |
| 44 | color: #226; |
| 45 | } |
| 46 | |
| 47 | #webSockTrace .output p { |
| 48 | margin: 2px 8px; |
| 49 | font-size: 10pt; |
| 50 | padding-left: 6px; |
| 51 | } |
| 52 | |
| 53 | /* theme-related */ |
| 54 | #webSockTrace .output p.tx { |
| 55 | color: magenta; |
| 56 | } |
| 57 | #webSockTrace .output p.rx { |
| 58 | color: blue; |
| 59 | } |
| 60 | |
| 61 | |
| 62 | #webSockTrace .output p.subtitle { |
| 63 | margin: 6px 8px; |
| 64 | padding-left: 2px; |
| 65 | font-size: 12pt; |
| 66 | font-weight: bold; |
| 67 | font-style: italic; |
| 68 | } |
| 69 | |
| 70 | /* theme-related */ |
| 71 | #webSockTrace .output p.subtitle { |
| 72 | color: #626; |
| 73 | } |