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

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: Created 3 years, 11 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); 384 }
385 background-size: 352px 168px;
386 opacity: 0.5;
387 width: 8px;
388 height: 7px;
389 display: none;
dgozman 2017/01/24 20:23:05 This means the icon is visible all the time, which
lushnikov 2017/01/25 00:06:12 Yes, it is visible all the time on Canary. I updat
390 }
391
392 .network-waterfall-header .sort-ascending.sort-order-icon {
393 display: block;
394 background-position: -4px -111px;
395 }
396
397 .network-waterfall-header .sort-descending.sort-order-icon {
398 display: block;
399 background-position: -20px -99px;
400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698