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

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

Issue 12225131: [cc] Initial checkin of cc-frame-viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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 }
9
10 x-model-view {
11 -webkit-user-select: none;
12 cursor: default;
13 }
14
15 x-model-view > .lthi-picker {
16 padding: 2px 1px 2px 1px;
17 background-color: rgb(128, 128, 128);
18 border-bottom: 1px solid black;
19 }
20
21 x-model-view > .lthi-view {
22 -webkit-flex: 1;
23 display: -webkit-flex;
24 min-height: 0;
25 }
26
27 x-model-view > .lthi-view > .lthi-and-analysis-view {
28 -webkit-flex: 1;
29 display: -webkit-flex;
30 -webkit-flex-direction: column;
31 min-height: 0;
32 min-width: 0;
33 }
34
35 x-model-view > .lthi-view > .lthi-and-analysis-view > x-lthi-view {
36 min-height: 0;
37 min-width: 0;
38 overflow: auto;
39 }
40
41 x-model-view > .lthi-view > .lthi-and-analysis-view > x-analysis-view {
42 height: 200px;
43 }
44
45 x-model-view > .lthi-view > .lthi-list {
46 width: 200px;
47 border-right: 1px solid black;
48 overflow-y: auto;
49 }
50
51
52 x-model-view x-lthi-view,
53 x-model-view x-analysis-view {
54 padding: 4px 0 4px 12px;
55 }
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