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

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

Issue 2513753002: [Devtools] Fixed bug on hover waterfall in network panel (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 .network-waterfall-header { 346 .network-waterfall-header {
347 position: absolute; 347 position: absolute;
348 border-left: 0px; 348 border-left: 0px;
349 width: 100%; 349 width: 100%;
350 display: table; 350 display: table;
351 z-index: 200; 351 z-index: 200;
352 background-color: transparent; 352 background-color: transparent;
353 } 353 }
354 354
355 .network-waterfall-header:hover { 355 .network-waterfall-header:hover {
356 background-color: hsl(0, 0%, 90%); 356 background-color: hsla(0, 0%, 10%, 0.1);
357 } 357 }
358 358
359 .network-waterfall-header div { 359 .network-waterfall-header div {
360 display: table-cell; 360 display: table-cell;
361 line-height: 14px; 361 line-height: 14px;
362 margin: auto 0px; 362 margin: auto 0px;
363 vertical-align: middle; 363 vertical-align: middle;
364 text-align: left; 364 text-align: left;
365 font-weight: normal; 365 font-weight: normal;
366 padding: 0px 4px; 366 padding: 0px 4px;
367 font-size: 11px; 367 font-size: 11px;
368 } 368 }
369 369
370 .network-waterfall-header:hover .sort-order-icon-container {
371 background-color: hsl(0, 0%, 90%)
dgozman 2016/11/17 22:14:53 missing semicolon
allada 2016/11/17 23:01:48 Done.
372 }
373
370 .network-waterfall-header .sort-order-icon-container { 374 .network-waterfall-header .sort-order-icon-container {
371 position: absolute; 375 position: absolute;
372 top: 1px; 376 top: 1px;
373 right: 0; 377 right: 0;
374 bottom: 1px; 378 bottom: 1px;
375 display: flex; 379 display: flex;
376 align-items: center; 380 align-items: center;
377 padding-left: 0px; 381 padding-left: 0px;
378 background-color: white; 382 background-color: white;
379 } 383 }
(...skipping 10 matching lines...) Expand all
390 394
391 .network-waterfall-header .sort-ascending.sort-order-icon { 395 .network-waterfall-header .sort-ascending.sort-order-icon {
392 display: block; 396 display: block;
393 background-position: -4px -111px; 397 background-position: -4px -111px;
394 } 398 }
395 399
396 .network-waterfall-header .sort-descending.sort-order-icon { 400 .network-waterfall-header .sort-descending.sort-order-icon {
397 display: block; 401 display: block;
398 background-position: -20px -99px; 402 background-position: -20px -99px;
399 } 403 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698