| /* |
| * Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| :host { |
| background-color: #eee; |
| overflow: hidden; |
| } |
| |
| .list { |
| flex: 1; |
| } |
| |
| .context-item { |
| cursor: pointer; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| padding: 6px 6px 6px 16px; |
| height: 28px; |
| } |
| |
| .context-item.selected { |
| background-color: #3c7bd6; |
| } |
| |
| .name { |
| display: inline-block; |
| white-space: nowrap; |
| margin-bottom: 10px; |
| } |
| |
| .context-item.selected .name { |
| color: white; |
| } |