| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 font-size: 11px; | 363 font-size: 11px; |
| 364 } | 364 } |
| 365 | 365 |
| 366 .network-waterfall-header .sort-order-icon-container { | 366 .network-waterfall-header .sort-order-icon-container { |
| 367 position: absolute; | 367 position: absolute; |
| 368 top: 1px; | 368 top: 1px; |
| 369 right: 0; | 369 right: 0; |
| 370 bottom: 1px; | 370 bottom: 1px; |
| 371 display: flex; | 371 display: flex; |
| 372 align-items: center; | 372 align-items: center; |
| 373 padding-left: 0px; |
| 374 background-color: white; |
| 373 } | 375 } |
| 374 | 376 |
| 375 .network-waterfall-header .sort-order-icon { | 377 .network-waterfall-header .sort-order-icon { |
| 376 margin-right: 4px; | 378 margin-right: 4px; |
| 377 background-image: url(Images/toolbarButtonGlyphs.png); | 379 background-image: url(Images/toolbarButtonGlyphs.png); |
| 378 background-size: 352px 168px; | 380 background-size: 352px 168px; |
| 379 opacity: 0.5; | 381 opacity: 0.5; |
| 380 width: 8px; | 382 width: 8px; |
| 381 height: 7px; | 383 height: 7px; |
| 382 display: none; | 384 display: none; |
| 383 } | 385 } |
| 384 | 386 |
| 385 .network-waterfall-header .sort-ascending.sort-order-icon { | 387 .network-waterfall-header .sort-ascending.sort-order-icon { |
| 386 display: block; | 388 display: block; |
| 387 background-position: -4px -111px; | 389 background-position: -4px -111px; |
| 388 } | 390 } |
| 389 | 391 |
| 390 .network-waterfall-header .sort-descending.sort-order-icon { | 392 .network-waterfall-header .sort-descending.sort-order-icon { |
| 391 display: block; | 393 display: block; |
| 392 background-position: -20px -99px; | 394 background-position: -20px -99px; |
| 393 } | 395 } |
| OLD | NEW |