| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 .network-waterfall-header .sort-order-icon { | 382 .network-waterfall-header .sort-order-icon { |
| 383 margin-right: 4px; | 383 margin-right: 4px; |
| 384 background-image: url(Images/toolbarButtonGlyphs.png); | 384 background-image: url(Images/toolbarButtonGlyphs.png); |
| 385 background-size: 352px 168px; | 385 background-size: 352px 168px; |
| 386 opacity: 0.5; | 386 opacity: 0.5; |
| 387 width: 8px; | 387 width: 8px; |
| 388 height: 7px; | 388 height: 7px; |
| 389 display: none; | 389 display: none; |
| 390 } | 390 } |
| 391 | 391 |
| 392 @media (-webkit-min-device-pixel-ratio: 1.1) { |
| 393 .network-waterfall-header .sort-order-icon { |
| 394 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 395 } |
| 396 } /* media */ |
| 397 |
| 392 .network-waterfall-header .sort-ascending.sort-order-icon { | 398 .network-waterfall-header .sort-ascending.sort-order-icon { |
| 393 display: block; | 399 display: block; |
| 394 background-position: -4px -111px; | 400 background-position: -4px -111px; |
| 395 } | 401 } |
| 396 | 402 |
| 397 .network-waterfall-header .sort-descending.sort-order-icon { | 403 .network-waterfall-header .sort-descending.sort-order-icon { |
| 398 display: block; | 404 display: block; |
| 399 background-position: -20px -99px; | 405 background-position: -20px -99px; |
| 400 } | 406 } |
| OLD | NEW |