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

Side by Side Diff: tracing/tracing/ui/extras/chrome/cc/layer_picker.css

Issue 3002533002: Switch tracing to new flexbox. (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 * /deep/ tr-ui-e-chrome-cc-layer-picker { 6 * /deep/ tr-ui-e-chrome-cc-layer-picker {
7 -webkit-flex-direction: column; 7 flex-direction: column;
8 display: -webkit-flex; 8 display: flex;
9 } 9 }
10 10
11 * /deep/ tr-ui-e-chrome-cc-layer-picker > top-controls { 11 * /deep/ tr-ui-e-chrome-cc-layer-picker > top-controls {
12 -webkit-flex: 0 0 auto; 12 flex: 0 0 auto;
13 background-image: -webkit-gradient(linear, 13 background-image: -webkit-gradient(linear,
14 0 0, 100% 0, 14 0 0, 100% 0,
15 from(#E5E5E5), 15 from(#E5E5E5),
16 to(#D1D1D1)); 16 to(#D1D1D1));
17 border-bottom: 1px solid #8e8e8e; 17 border-bottom: 1px solid #8e8e8e;
18 border-top: 1px solid white; 18 border-top: 1px solid white;
19 display: inline; 19 display: inline;
20 font-size: 14px; 20 font-size: 14px;
21 padding-left: 2px; 21 padding-left: 2px;
22 } 22 }
23 23
24 * /deep/ tr-ui-e-chrome-cc-layer-picker > top-controls input[type='checkbox'] { 24 * /deep/ tr-ui-e-chrome-cc-layer-picker > top-controls input[type='checkbox'] {
25 vertical-align: -2px; 25 vertical-align: -2px;
26 } 26 }
27 27
28 * /deep/ tr-ui-e-chrome-cc-layer-picker > .x-list-view { 28 * /deep/ tr-ui-e-chrome-cc-layer-picker > .x-list-view {
29 -webkit-flex: 1 1 auto; 29 flex: 1 1 auto;
30 font-family: monospace; 30 font-family: monospace;
31 overflow: auto; 31 overflow: auto;
32 } 32 }
33 33
34 * /deep/ tr-ui-e-chrome-cc-layer-picker > tr-ui-a-generic-object-view { 34 * /deep/ tr-ui-e-chrome-cc-layer-picker > tr-ui-a-generic-object-view {
35 -webkit-flex: 0 0 auto; 35 flex: 0 0 auto;
36 height: 200px; 36 height: 200px;
37 overflow: auto; 37 overflow: auto;
38 } 38 }
39 39
40 * /deep/ tr-ui-e-chrome-cc-layer-picker > tr-ui-a-generic-object-view * { 40 * /deep/ tr-ui-e-chrome-cc-layer-picker > tr-ui-a-generic-object-view * {
41 -webkit-user-select: text !important; 41 -webkit-user-select: text !important;
42 cursor: text; 42 cursor: text;
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698