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

Side by Side Diff: Source/devtools/front_end/profilesPanel.css

Issue 460543002: DevTools: DataGrid: move unrelated CSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « Source/devtools/front_end/profiler/CPUProfileDataGrid.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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 20 matching lines...) Expand all
31 31
32 #profile-views { 32 #profile-views {
33 flex: auto; 33 flex: auto;
34 position: relative; 34 position: relative;
35 } 35 }
36 36
37 .profile-view .data-grid table.data { 37 .profile-view .data-grid table.data {
38 background: white; 38 background: white;
39 } 39 }
40 40
41 .profile-view .data-grid tr:not(.selected) .highlight {
42 background-color: rgb(255, 230, 179);
43 }
44
41 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) { 45 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) {
42 background-color: rgba(0, 0, 0, 0.1); 46 background-color: rgba(0, 0, 0, 0.1);
43 } 47 }
44 48
45 .profile-view .data-grid td.numeric-column { 49 .profile-view .data-grid td.numeric-column {
46 text-align: right; 50 text-align: right;
47 } 51 }
48 52
49 .profile-view .data-grid div.profile-multiple-values { 53 .profile-view .data-grid div.profile-multiple-values {
50 float: right; 54 float: right;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 } 256 }
253 257
254 .text-button.load-profile { 258 .text-button.load-profile {
255 margin-left: 20px; 259 margin-left: 20px;
256 } 260 }
257 261
258 .text-button.load-profile.multi-target { 262 .text-button.load-profile.multi-target {
259 display: block; 263 display: block;
260 margin-top: 14px; 264 margin-top: 14px;
261 margin-left: 0px; 265 margin-left: 0px;
262 } 266 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/profiler/CPUProfileDataGrid.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698