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
3 * found in the LICENSE file.
4 */
5
6.process-track-header {
7  -webkit-flex: 0 0 auto;
8  background-image: -webkit-gradient(linear,
9                                     0 0, 100% 0,
10                                     from(#E5E5E5),
11                                     to(#D1D1D1));
12  border-bottom: 1px solid #8e8e8e;
13  border-top: 1px solid white;
14  font-size: 75%;
15}
16
17.process-track-name:before {
18  content: '\25B8'; /* Right triangle */
19  padding: 0 5px;
20}
21
22.process-track-base.expanded .process-track-name:before {
23  content: '\25BE'; /* Down triangle */
24}
25