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

Side by Side Diff: tracing/tracing/ui/tracks/process_track_base.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
« no previous file with comments | « tracing/tracing/ui/tracks/model_track.html ('k') | tracing/tracing/ui/tracks/thread_track.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .process-track-header { 6 .process-track-header {
7 -webkit-flex: 0 0 auto; 7 flex: 0 0 auto;
8 background-image: -webkit-gradient(linear, 8 background-image: -webkit-gradient(linear,
9 0 0, 100% 0, 9 0 0, 100% 0,
10 from(#E5E5E5), 10 from(#E5E5E5),
11 to(#D1D1D1)); 11 to(#D1D1D1));
12 border-bottom: 1px solid #8e8e8e; 12 border-bottom: 1px solid #8e8e8e;
13 border-top: 1px solid white; 13 border-top: 1px solid white;
14 font-size: 75%; 14 font-size: 75%;
15 } 15 }
16 16
17 .process-track-name:before { 17 .process-track-name:before {
18 content: '\25B8'; /* Right triangle */ 18 content: '\25B8'; /* Right triangle */
19 padding: 0 5px; 19 padding: 0 5px;
20 } 20 }
21 21
22 .process-track-base.expanded .process-track-name:before { 22 .process-track-base.expanded .process-track-name:before {
23 content: '\25BE'; /* Down triangle */ 23 content: '\25BE'; /* Down triangle */
24 } 24 }
OLDNEW
« no previous file with comments | « tracing/tracing/ui/tracks/model_track.html ('k') | tracing/tracing/ui/tracks/thread_track.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698