| 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%; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 tabpanel > div { | 31 tabpanel > div { |
| 32 display: -webkit-flex; | 32 display: -webkit-flex; |
| 33 } | 33 } |
| 34 | 34 |
| 35 tabpanel > div > div { | 35 tabpanel > div > div { |
| 36 -webkit-flex: 1; | 36 -webkit-flex: 1; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .dump { | 39 .dump { |
| 40 font-family: monospace; | 40 font-family: monospace; |
| 41 text-wrap: unrestricted; | |
| 42 white-space: pre-wrap; | 41 white-space: pre-wrap; |
| 43 } | 42 } |
| 44 | 43 |
| 45 #prefs ul { | 44 #prefs ul { |
| 46 list-style-type: none; | 45 list-style-type: none; |
| 47 padding-left: 0; | 46 padding-left: 0; |
| 48 } | 47 } |
| 49 | 48 |
| 50 #prefs ul li { | 49 #prefs ul li { |
| 51 width: 100%; | 50 width: 100%; |
| 52 } | 51 } |
| 53 | 52 |
| 54 #prefs ul li button { | 53 #prefs ul li button { |
| 55 background-color: transparent; | 54 background-color: transparent; |
| 56 border-style: solid; | 55 border-style: solid; |
| 57 border-width: 1px; | 56 border-width: 1px; |
| 58 color: #666; | 57 color: #666; |
| 59 cursor: pointer; | 58 cursor: pointer; |
| 60 font-size: 110%; | 59 font-size: 110%; |
| 61 margin-left: 1em; | 60 margin-left: 1em; |
| 62 } | 61 } |
| 63 | 62 |
| 64 .detection-logs-time { | 63 .detection-logs-time { |
| 64 width: 15%; |
| 65 } |
| 66 |
| 67 .detection-logs-url { |
| 65 width: 20%; | 68 width: 20%; |
| 66 } | 69 } |
| 67 | 70 |
| 68 .detection-logs-url { | |
| 69 width: 40%; | |
| 70 } | |
| 71 | |
| 72 td.detection-logs-url { | 71 td.detection-logs-url { |
| 73 word-wrap: break-word; | 72 word-wrap: break-word; |
| 74 } | 73 } |
| 75 | 74 |
| 76 .detection-logs-content-language { | 75 .detection-logs-content-language { |
| 77 width: 10%; | 76 width: 10%; |
| 78 } | 77 } |
| 79 | 78 |
| 80 .detection-logs-cld-language { | 79 .detection-logs-cld-language { |
| 81 width: 10%; | 80 width: 10%; |
| 82 } | 81 } |
| 83 | 82 |
| 84 .detection-logs-is-cld-reliable { | 83 .detection-logs-is-cld-reliable { |
| 85 width: 10%; | 84 width: 10%; |
| 86 } | 85 } |
| 87 | 86 |
| 88 .detection-logs-language { | 87 .detection-logs-language { |
| 89 width: 10%; | 88 width: 10%; |
| 90 } | 89 } |
| 90 |
| 91 .detection-logs-content { |
| 92 width: 25%; |
| 93 } |
| 94 |
| 95 td.detection-logs-content div { |
| 96 font-family: monospace; |
| 97 max-height: 250px; |
| 98 overflow: auto; |
| 99 white-space: pre-wrap; |
| 100 word-wrap: break-word; |
| 101 } |
| OLD | NEW |