| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 154 } |
| 155 | 155 |
| 156 @-webkit-keyframes network-row-highlight-fadeout { | 156 @-webkit-keyframes network-row-highlight-fadeout { |
| 157 from {background-color: rgba(255, 255, 120, 1); } | 157 from {background-color: rgba(255, 255, 120, 1); } |
| 158 to { background-color: rgba(255, 255, 120, 0); } | 158 to { background-color: rgba(255, 255, 120, 0); } |
| 159 } | 159 } |
| 160 | 160 |
| 161 .network-header-subtitle { | 161 .network-header-subtitle { |
| 162 color: gray; | 162 color: gray; |
| 163 } | 163 } |
| 164 .network-log-grid.data-grid .product-ad::before, | |
| 165 .network-log-grid.data-grid .product-tracking::before, | |
| 166 .network-log-grid.data-grid .product-cdn::before { | |
| 167 content: ""; | |
| 168 border-radius: 5px; | |
| 169 height: 5px; | |
| 170 width: 5px; | |
| 171 margin-right: 3px; | |
| 172 display: inline-block; | |
| 173 vertical-align: middle; | |
| 174 } | |
| 175 | |
| 176 .network-log-grid.data-grid .product-ad::before { | |
| 177 background-color: #00BCD4; | |
| 178 } | |
| 179 | |
| 180 .network-log-grid.data-grid .product-tracking::before { | |
| 181 background-color: #FF9800; | |
| 182 } | |
| 183 | |
| 184 .network-log-grid.data-grid .product-cdn::before { | |
| 185 background-color: #4CAF50; | |
| 186 } | |
| 187 | 164 |
| 188 .network-log-grid.data-grid.small .network-cell-subtitle, | 165 .network-log-grid.data-grid.small .network-cell-subtitle, |
| 189 .network-log-grid.data-grid.small .network-header-subtitle { | 166 .network-log-grid.data-grid.small .network-header-subtitle { |
| 190 display: none; | 167 display: none; |
| 191 } | 168 } |
| 192 | 169 |
| 193 /* Resource preview icons */ | 170 /* Resource preview icons */ |
| 194 | 171 |
| 195 .network-log-grid.data-grid .icon { | 172 .network-log-grid.data-grid .icon { |
| 196 content: url(Images/resourcePlainIcon.png); | 173 content: url(Images/resourcePlainIcon.png); |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 bottom: 1px; | 352 bottom: 1px; |
| 376 display: flex; | 353 display: flex; |
| 377 align-items: center; | 354 align-items: center; |
| 378 } | 355 } |
| 379 | 356 |
| 380 .network-waterfall-header .sort-order-icon { | 357 .network-waterfall-header .sort-order-icon { |
| 381 align-items: center; | 358 align-items: center; |
| 382 margin-right: 4px; | 359 margin-right: 4px; |
| 383 margin-bottom: -2px; | 360 margin-bottom: -2px; |
| 384 } | 361 } |
| OLD | NEW |