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-base:not(.expanded) > .track { 18 display: none; 19 } 20 21 /* A plus icon */ 22 .process-track-header > expand-button { 23 display: inline; 24 padding: 2px 4px 2px 4px; 25 } 26 27 .process-track-header > expand-button.expand-button-expanded { 28 content: url(../../images/collapse.png); 29 } 30 31 /* A minus icon */ 32 .process-track-header> expand-button:not(.expand-button-expanded) { 33 content: url(../../images/expand.png); 34 } 35