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

Side by Side Diff: tracing/tracing/ui/extras/chrome/cc/picture_ops_list_view.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-picture-ops-list-view { 6 * * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view {
7 -webkit-flex-direction: column; 7 flex-direction: column;
8 border-top: 1px solid grey; 8 border-top: 1px solid grey;
9 display: -webkit-flex; 9 display: flex;
10 } 10 }
11 11
12 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view { 12 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view {
13 -webkit-flex: 1 1 auto; 13 flex: 1 1 auto;
14 overflow: auto; 14 overflow: auto;
15 } 15 }
16 16
17 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view .list-item { 17 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view .list-item {
18 border-bottom: 1px solid #555; 18 border-bottom: 1px solid #555;
19 font-size: small; 19 font-size: small;
20 font-weight: bold; 20 font-weight: bold;
21 padding-bottom: 5px; 21 padding-bottom: 5px;
22 padding-left: 5px; 22 padding-left: 5px;
23 } 23 }
(...skipping 29 matching lines...) Expand all
53 .list-item[beforeSelection] { 53 .list-item[beforeSelection] {
54 background-color: rgb(171, 217, 202); 54 background-color: rgb(171, 217, 202);
55 outline: 1px dotted rgba(0, 0, 0, 0.1); 55 outline: 1px dotted rgba(0, 0, 0, 0.1);
56 outline-offset: 0; 56 outline-offset: 0;
57 } 57 }
58 58
59 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view > 59 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view >
60 .list-item[beforeSelection] { 60 .list-item[beforeSelection] {
61 background-color: rgb(103, 199, 165); 61 background-color: rgb(103, 199, 165);
62 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698