Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/console/consoleContextSelector.css |
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelector.css b/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelector.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c86137f923ea18acd45c6163d1d0c69c5525abb0 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelector.css |
| @@ -0,0 +1,50 @@ |
| +/* |
| + * Copyright (c) 2017 The Chromium Authors. All rights reserved. |
|
dgozman
2017/05/08 23:16:47
no (c)
einbinder
2017/05/09 22:00:45
Done.
|
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| +.context { |
| + padding: 2px 1px 2px 2px; |
| + white-space: nowrap; |
| + display: flex; |
| + flex-direction: column; |
| + height: 34px; |
| + justify-content: center; |
| +} |
| + |
| +.context.disabled { |
| + opacity: 0.5; |
| +} |
| + |
| +.title { |
| + overflow: hidden; |
| + text-overflow: ellipsis; |
| + flex-grow: 0; |
| +} |
| + |
| +.subtitle { |
| + color: #999; |
| + margin-right: 3px; |
| + overflow: hidden; |
| + text-overflow: ellipsis; |
| + flex-grow: 0; |
| +} |
| + |
| +.context-list { |
| + background-color: white; |
| + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), |
| + 0 2px 4px rgba(0, 0, 0, 0.2), |
| + 0 2px 6px rgba(0, 0, 0, 0.1); |
| + overflow-x: hidden; |
| + overflow-y: auto; |
| + width: 100%; |
| +} |
| + |
| +.context.selected { |
| + color: white; |
| + background-color: rgb(56, 121, 217); |
| +} |
| + |
| +.context.selected .subtitle { |
| + color: white; |
| +} |