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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/profiler/profilesSidebarTree.css

Issue 2353723002: [DevTools] Prevent scrollbar flickering while recording allocation timeline. (Closed)
Patch Set: Created 4 years, 3 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 | « 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /* Tree outline overrides */ 7 /* Tree outline overrides */
8 8
9 :host { 9 :host {
10 padding: 0; 10 padding: 0;
(...skipping 29 matching lines...) Expand all
40 margin-top: 1px; 40 margin-top: 1px;
41 color: rgb(92, 110, 129); 41 color: rgb(92, 110, 129);
42 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 42 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
43 line-height: 18px; 43 line-height: 18px;
44 } 44 }
45 45
46 .tree-outline li.profiles-tree-section::before { 46 .tree-outline li.profiles-tree-section::before {
47 display: none; 47 display: none;
48 } 48 }
49 49
50 .tree-outline ol {
51 overflow: hidden;
52 }
53
50 /* Generic items styling */ 54 /* Generic items styling */
51 55
52 .title-container > .save-link { 56 .title-container > .save-link {
53 text-decoration: underline; 57 text-decoration: underline;
54 margin-left: auto; 58 margin-left: auto;
55 display: none; 59 display: none;
56 } 60 }
57 61
58 li.selected .title-container > .save-link { 62 li.selected .title-container > .save-link {
59 display: block; 63 display: block;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 content: url(Images/profileIcon.png); 180 content: url(Images/profileIcon.png);
177 } 181 }
178 182
179 .profile-sidebar-tree-item.small .icon { 183 .profile-sidebar-tree-item.small .icon {
180 content: url(Images/profileSmallIcon.png); 184 content: url(Images/profileSmallIcon.png);
181 } 185 }
182 186
183 .profile-group-sidebar-tree-item .icon { 187 .profile-group-sidebar-tree-item .icon {
184 content: url(Images/profileGroupIcon.png); 188 content: url(Images/profileGroupIcon.png);
185 } 189 }
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