Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / elements / breadcrumbs.css
1 /*
2  * Copyright 2014 The Chromium Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 .crumbs {
8     display: inline-block;
9     pointer-events: auto;
10     cursor: default;
11     font-size: 11px;
12     line-height: 17px;
13 }
14
15 .crumbs .crumb {
16     display: inline-block;
17     padding: 0 7px;
18     height: 18px;
19     white-space: nowrap;
20 }
21
22 .crumbs .crumb.collapsed > * {
23     display: none;
24 }
25
26 .crumbs .crumb.collapsed::before {
27     content: "\2026";
28     font-weight: bold;
29 }
30
31 .crumbs .crumb.compact .extra {
32     display: none;
33 }
34
35 .crumbs .crumb.selected, .crumbs .crumb.selected:hover {
36     background-color: rgb(56, 121, 217);
37     color: white;
38     text-shadow: rgba(255, 255, 255, 0.5) 0 0 0;
39 }
40
41 .crumbs .crumb:hover {
42     background-color: rgb(216, 216, 216);
43 }