1/* Copyright (c) 2012 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.heading-track {
7  -webkit-box-align: stretch;
8  -webkit-box-orient: horizontal;
9  display: -webkit-box;
10  margin: 0;
11  padding: 0 5px 0 0;
12}
13
14.heading-track > heading {
15  -webkit-box-sizing: border-box;
16  background-color: rgba(214, 221, 229, 0.3);
17  border-right: 1px solid #8e8e8e;
18  box-sizing: border-box;
19  display: block;
20  overflow: hidden;
21  padding-left: 18px;
22  padding-right: 5px;
23  text-align: left;
24  text-overflow: ellipsis;
25  white-space: nowrap;
26}
27