| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 .resource-timing-view { | 63 .resource-timing-view { |
| 64 display: none; | 64 display: none; |
| 65 margin: 6px; | 65 margin: 6px; |
| 66 color: rgb(30%, 30%, 30%); | 66 color: rgb(30%, 30%, 30%); |
| 67 } | 67 } |
| 68 | 68 |
| 69 /* Network timing is shared between popover and network item view pane */ | 69 /* Network timing is shared between popover and network item view pane */ |
| 70 | 70 |
| 71 .network-timing-table { | 71 .network-timing-table { |
| 72 width: 328px; | 72 width: 380px; |
| 73 border-spacing: 0; | 73 border-spacing: 0; |
| 74 padding-left: 4px; | 74 padding-left: 10px; |
| 75 padding-right: 4px; | 75 padding-right: 10px; |
| 76 } |
| 77 |
| 78 .network-timing-table-header td { |
| 79 color: #bbb; |
| 80 border-top: 5px solid transparent; |
| 81 border-bottom: 5px solid transparent; |
| 82 } |
| 83 |
| 84 .network-timing-table-header td:last-child { |
| 85 text-align: right; |
| 76 } | 86 } |
| 77 | 87 |
| 78 .network-timing-table col.labels { | 88 .network-timing-table col.labels { |
| 79 width: 120px; | 89 width: 120px; |
| 80 } | 90 } |
| 81 | 91 |
| 82 .network-timing-table td { | 92 .network-timing-table td { |
| 83 padding: 2px 0; | 93 padding: 2px 0; |
| 84 } | 94 } |
| 85 | 95 |
| 86 .network-timing-table td.caution { | 96 .network-timing-table td.caution { |
| 87 font-weight: bold; | 97 font-weight: bold; |
| 88 color: rgb(255, 128, 0); | 98 color: rgb(255, 128, 0); |
| 89 padding: 2px 0; | 99 padding: 2px 0; |
| 90 } | 100 } |
| 91 | 101 |
| 92 .network-timing-table .footnote { | 102 .network-timing-footer td { |
| 93 border-top: 1px solid #eee; | 103 border-top: 8px solid transparent; |
| 104 } |
| 105 |
| 106 .network-timing-footer td:last-child { |
| 107 font-weight: bold; |
| 108 text-align: right; |
| 94 } | 109 } |
| 95 | 110 |
| 96 .network-timing-row { | 111 .network-timing-row { |
| 97 position: relative; | 112 position: relative; |
| 98 height: 15px; | 113 height: 15px; |
| 114 width: 150px; |
| 99 } | 115 } |
| 100 | 116 |
| 101 .network-timing-bar { | 117 .network-timing-bar { |
| 102 position: absolute; | 118 position: absolute; |
| 103 min-width: 1px; | 119 min-width: 1px; |
| 104 top: 0; | 120 top: 0; |
| 105 bottom: 0; | 121 bottom: 0; |
| 106 } | 122 } |
| 107 | 123 |
| 108 .network-timing-bar-title { | 124 .network-timing-bar-title { |
| 109 position: absolute; | |
| 110 color: #222; | 125 color: #222; |
| 111 padding: 0 3px; | 126 white-space: nowrap; |
| 112 line-height: 15px; | 127 text-align: right; |
| 113 } | 128 } |
| 114 | 129 |
| 115 .network-timing-bar.total { | 130 .network-timing-bar.total { |
| 116 border: 1px solid rgba(0, 0, 0, 0.1); | 131 border: 1px solid rgba(0, 0, 0, 0.1); |
| 117 } | 132 } |
| 118 | 133 |
| 119 .network-timing-bar.blocking { | 134 .network-timing-bar.blocking { |
| 120 background-color: #AAAAAA; | 135 background-color: #AAAAAA; |
| 121 } | 136 } |
| 122 | 137 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 143 } | 158 } |
| 144 | 159 |
| 145 .network-timing-bar.waiting { | 160 .network-timing-bar.waiting { |
| 146 background-color: #00C853; | 161 background-color: #00C853; |
| 147 } | 162 } |
| 148 | 163 |
| 149 .network-timing-bar.receiving { | 164 .network-timing-bar.receiving { |
| 150 background-color: #03A9F4; | 165 background-color: #03A9F4; |
| 151 } | 166 } |
| 152 | 167 |
| 168 .network-timing-bar.proxy, |
| 169 .network-timing-bar.dns, |
| 170 .network-timing-bar.ssl, |
| 171 .network-timing-bar.connecting, |
| 172 .network-timing-bar.blocking { |
| 173 height: 10px; |
| 174 margin: auto; |
| 175 } |
| 176 |
| 153 .resource-timing-view.visible { | 177 .resource-timing-view.visible { |
| 154 display: block; | 178 display: block; |
| 155 } | 179 } |
| 156 | 180 |
| 157 .resource-timing-view .network-timing-table { | 181 .resource-timing-view .network-timing-table { |
| 158 width: 100%; | 182 width: 100%; |
| 159 } | 183 } |
| 160 | 184 |
| 161 .network-filters-header { | 185 .network-filters-header { |
| 162 flex: 0 0 23px; | 186 flex: 0 0 23px; |
| 163 padding-right: 4px; | 187 padding-right: 4px; |
| 164 } | 188 } |
| 165 | 189 |
| 166 .network-filters-header .filter-text-filter { | 190 .network-filters-header .filter-text-filter { |
| 167 flex-grow: 1; | 191 flex-grow: 1; |
| 168 max-width: 312px; | 192 max-width: 312px; |
| 169 } | 193 } |
| 170 | 194 |
| 171 .request-view.json { | 195 .request-view.json { |
| 172 padding: 5px; | 196 padding: 5px; |
| 173 } | 197 } |
| 174 | 198 |
| 175 .request-view.html iframe { | 199 .request-view.html iframe { |
| 176 width: 100%; | 200 width: 100%; |
| 177 height: 100%; | 201 height: 100%; |
| 178 position: absolute; | 202 position: absolute; |
| 179 } | 203 } |
| OLD | NEW |