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

Side by Side Diff: tools/cc-frame-viewer/src/model_view.css

Issue 15736032: Remove old cc-frame-viewer now that it is upstreamed into trace_viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « tools/cc-frame-viewer/src/model_test.html ('k') | tools/cc-frame-viewer/src/model_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 x-model-view {
6 display: -webkit-flex;
7 -webkit-flex-direction: column;
8 min-width: 0;
9 }
10
11 x-model-view {
12 -webkit-user-select: none;
13 cursor: default;
14 }
15
16 x-model-view > .lthi-picker {
17 padding: 2px 1px 2px 1px;
18 background-color: rgb(128, 128, 128);
19 border-bottom: 1px solid black;
20 }
21
22 x-model-view > .lthi-view {
23 -webkit-flex: 1;
24 display: -webkit-flex;
25 min-height: 0;
26 }
27
28 x-model-view > .lthi-view > .lthi-and-analysis-view {
29 -webkit-flex: 1;
30 display: -webkit-flex;
31 -webkit-flex-direction: column;
32 min-height: 0;
33 min-width: 0;
34 }
35
36 x-model-view > .lthi-view > .lthi-and-analysis-view > x-lthi-view {
37 min-height: 0;
38 min-width: 0;
39 overflow: auto;
40 }
41
42 x-model-view > .lthi-view > .lthi-and-analysis-view > x-analysis-view {
43 height: 200px;
44 }
45
46 x-model-view > .lthi-view > .lthi-list {
47 width: 200px;
48 border-right: 1px solid black;
49 overflow-y: auto;
50 }
51
52
53 x-model-view x-lthi-view,
54 x-model-view x-analysis-view {
55 padding: 4px 0 4px 12px;
56 }
OLDNEW
« no previous file with comments | « tools/cc-frame-viewer/src/model_test.html ('k') | tools/cc-frame-viewer/src/model_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698