Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/consoleContextSelectorButton.css

Issue 2911363002: DevTools: Split SoftDropdown out of ConsoleContextSelector (Closed)
Patch Set: remove depth in test Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/console/consoleContextSelectorButton.css
diff --git a/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelectorButton.css b/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelectorButton.css
deleted file mode 100644
index 578b2b72184e86ee3b03dca96066a6b08d94cc4f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/front_end/console/consoleContextSelectorButton.css
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright 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 {
- height: 26px;
- text-align: left;
-}
-
-:host([disabled]) {
- opacity: .5;
-}
-
-:host .title {
- padding-right: 5px;
- width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-:host([data-keyboard-focus="true"]:focus)::before {
- content: "";
- position: absolute;
- top: 2px;
- left: 2px;
- right: 2px;
- bottom: 2px;
- border-radius: 2px;
- background: rgba(0, 0, 0, 0.08);
-}
-
-:host(.warning) {
- background: #ffd7d7 !important;
-}

Powered by Google App Engine
This is Rietveld 408576698