| OLD | NEW |
| 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 } |
| OLD | NEW |