Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkLogView.css

Issue 2649153005: DevTools: convert datagrid and network waterfall sort icons to UI.Icon (Closed)
Patch Set: rebaseline Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 font-size: 11px; 369 font-size: 11px;
370 } 370 }
371 371
372 .network-waterfall-header .sort-order-icon-container { 372 .network-waterfall-header .sort-order-icon-container {
373 position: absolute; 373 position: absolute;
374 top: 1px; 374 top: 1px;
375 right: 0; 375 right: 0;
376 bottom: 1px; 376 bottom: 1px;
377 display: flex; 377 display: flex;
378 align-items: center; 378 align-items: center;
379 padding-left: 0px;
380 } 379 }
381 380
382 .network-waterfall-header .sort-order-icon { 381 .network-waterfall-header .sort-order-icon {
382 align-items: center;
383 margin-right: 4px; 383 margin-right: 4px;
384 background-image: url(Images/toolbarButtonGlyphs.png);
385 background-size: 352px 168px;
386 opacity: 0.5;
387 width: 8px;
388 height: 7px;
389 display: none;
390 } 384 }
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
398 .network-waterfall-header .sort-ascending.sort-order-icon {
399 display: block;
400 background-position: -4px -111px;
401 }
402
403 .network-waterfall-header .sort-descending.sort-order-icon {
404 display: block;
405 background-position: -20px -99px;
406 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698