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

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

Issue 2652893008: DevTools: fix network waterfall sorting icon (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698