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

Side by Side Diff: chrome/browser/resources/gpu_internals/timeline_view.css

Issue 7555005: Moving the contents of chrome://gpu Profiling to chrome://tracing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 */
6 .timeline-view {
7 padding: 0px;
8 -webkit-box-orient: vertical;
9 -webkit-box-flex: 1;
10 display: -webkit-box;
11 }
12
13 .timeline-view > .timeline {
14 display: -webkit-box;
15 -webkit-box-flex: 1;
16 overflow: auto;
17 }
18
19 .timeline-view .timeline-container {
20 -webkit-box-flex: 1;
21 display: -webkit-box;
22 overflow: auto;
23 }
24
25 .timeline-view .timeline-container > * {
26 -webkit-box-flex: 1;
27 }
28 .timeline-view .summary-container * {
29 -webkit-user-select: text;
30 }
31
32 .timeline-view .summary-container {
33 border-top: 1px solid black;
34 max-height: 250px;
35 min-height: 250px;
36 font-family: monospace;
37 overflow: auto;
38 }
39
40 .timeline-view .selection {
41 margin: 2px;
42 }
43
44 .timeline-view .selection ul {
45 margin: 0px;
46 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/gpu_internals/timeline_track.js ('k') | chrome/browser/resources/gpu_internals/timeline_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698