| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 color: #333; | 6 color: #333; |
| 7 } | 7 } |
| 8 | 8 |
| 9 h2 { | 9 h2 { |
| 10 font-size: 110%; | 10 font-size: 110%; |
| 11 } | 11 } |
| 12 | 12 |
| 13 table { |
| 14 border-collapse: collapse; |
| 15 table-layout: fixed; |
| 16 width: 100%; |
| 17 } |
| 18 |
| 19 th, |
| 20 td { |
| 21 border-color: #666; |
| 22 border-style: solid; |
| 23 border-width: 1px; |
| 24 padding: 1px 4px; |
| 25 } |
| 26 |
| 27 tabpanel { |
| 28 padding-bottom: 10px; |
| 29 } |
| 30 |
| 13 tabpanel > div { | 31 tabpanel > div { |
| 14 display: -webkit-flex; | 32 display: -webkit-flex; |
| 15 } | 33 } |
| 16 | 34 |
| 17 tabpanel > div > div { | 35 tabpanel > div > div { |
| 18 -webkit-flex: 1; | 36 -webkit-flex: 1; |
| 19 } | 37 } |
| 20 | 38 |
| 21 .dump { | 39 .dump { |
| 22 font-family: monospace; | 40 font-family: monospace; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 | 53 |
| 36 #prefs ul li button { | 54 #prefs ul li button { |
| 37 background-color: transparent; | 55 background-color: transparent; |
| 38 border-style: solid; | 56 border-style: solid; |
| 39 border-width: 1px; | 57 border-width: 1px; |
| 40 color: #666; | 58 color: #666; |
| 41 cursor: pointer; | 59 cursor: pointer; |
| 42 font-size: 110%; | 60 font-size: 110%; |
| 43 margin-left: 1em; | 61 margin-left: 1em; |
| 44 } | 62 } |
| 63 |
| 64 .detection-logs-time { |
| 65 width: 20%; |
| 66 } |
| 67 |
| 68 .detection-logs-url { |
| 69 width: 40%; |
| 70 } |
| 71 |
| 72 td.detection-logs-url { |
| 73 word-wrap: break-word; |
| 74 } |
| 75 |
| 76 .detection-logs-content-language { |
| 77 width: 10%; |
| 78 } |
| 79 |
| 80 .detection-logs-cld-language { |
| 81 width: 10%; |
| 82 } |
| 83 |
| 84 .detection-logs-is-cld-relialbe { |
| 85 width: 10%; |
| 86 } |
| 87 |
| 88 .detection-logs-language { |
| 89 width: 10%; |
| 90 } |
| OLD | NEW |