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 3 * found in the LICENSE file. */ 4 5 body { 6 color: #333; 7 } 8 9 h2 { 10 font-size: 110%; 11 } 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 31 tabpanel > div { 32 display: -webkit-flex; 33 } 34 35 tabpanel > div > div { 36 -webkit-flex: 1; 37 } 38 39 .dump { 40 font-family: monospace; 41 white-space: pre-wrap; 42 } 43 44 #tabpanel-prefs ul { 45 list-style-type: none; 46 padding-left: 0; 47 } 48 49 #tabpanel-prefs ul li { 50 width: 100%; 51 } 52 53 #tabpanel-prefs button.dismissing { 54 background-color: transparent; 55 border-style: solid; 56 border-width: 1px; 57 color: #666; 58 cursor: pointer; 59 font-size: 110%; 60 margin-left: 1em; 61 } 62 63 .detection-logs-time { 64 width: 10%; 65 } 66 67 .detection-logs-url { 68 width: 20%; 69 } 70 71 td.detection-logs-url { 72 word-wrap: break-word; 73 } 74 75 .detection-logs-content-language { 76 width: 10%; 77 } 78 79 .detection-logs-cld-language { 80 width: 10%; 81 } 82 83 .detection-logs-is-cld-reliable { 84 width: 5%; 85 } 86 87 .detection-logs-html-root-language { 88 width: 10%; 89 } 90 91 .detection-logs-adopted-language { 92 width: 10%; 93 } 94 95 .detection-logs-content { 96 width: 25%; 97 } 98 99 td.detection-logs-content div { 100 font-family: monospace; 101 max-height: 250px; 102 overflow: auto; 103 white-space: pre-wrap; 104 word-wrap: break-word; 105 } 106 107 .error-logs-time { 108 width: 20%; 109 } 110 111 .error-logs-url { 112 width: 40%; 113 } 114 115 .error-logs-error { 116 width: 40%; 117 } 118 119 .event-logs-time { 120 width: 15%; 121 } 122 123 .event-logs-place { 124 overflow: hidden; 125 text-overflow: ellipsis; 126 white-space: nowrap; 127 width: 35%; 128 } 129 130 .event-logs-message { 131 width: 50%; 132 } 133 134 .prefs-setting-disabled { 135 display: none; 136 } 137