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

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

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: [DevTools] Set row background instead of the table Created 3 years, 7 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 46
47 .network-summary-bar label[is=dt-icon-label] { 47 .network-summary-bar label[is=dt-icon-label] {
48 margin-right: 6px; 48 margin-right: 6px;
49 } 49 }
50 50
51 .network-summary-bar > * { 51 .network-summary-bar > * {
52 flex: none; 52 flex: none;
53 } 53 }
54 54
55 .network-log-grid.data-grid table.data { 55 .network-log-grid.data-grid .data-grid-odd-row {
allada 2017/05/22 19:10:29 Do we need this any more? I think the reason we we
56 background: transparent; 56 background-color: transparent;
alph 2017/05/22 19:11:46 I'd rather put a 'striped-mode' class onto the dat
57 } 57 }
58 58
59 .network-log-grid.data-grid td { 59 .network-log-grid.data-grid td {
60 height: 41px; 60 height: 41px;
61 border-left: 1px solid #e1e1e1; 61 border-left: 1px solid #e1e1e1;
62 vertical-align: middle; 62 vertical-align: middle;
63 } 63 }
64 64
65 .network-log-grid.data-grid .corner { 65 .network-log-grid.data-grid .corner {
66 display: none; 66 display: none;
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 361 }
362 362
363 .network-frame-group-icon { 363 .network-frame-group-icon {
364 display: inline-block; 364 display: inline-block;
365 margin: -8px -2px; 365 margin: -8px -2px;
366 } 366 }
367 367
368 .network-frame-group-badge { 368 .network-frame-group-badge {
369 margin-right: 4px; 369 margin-right: 4px;
370 } 370 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698