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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/softDropDown.css

Issue 2911363002: DevTools: Split SoftDropdown out of ConsoleContextSelector (Closed)
Patch Set: fixes 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2017 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 .item.disabled {
8 opacity: 0.5;
9 }
10
11 .item-list {
12 background-color: white;
13 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05),
14 0 2px 4px rgba(0, 0, 0, 0.2),
15 0 2px 6px rgba(0, 0, 0, 0.1);
16 overflow-x: hidden;
17 overflow-y: auto;
18 width: 100%;
19 }
20
21 .item.highlighted {
22 color: white;
23 background-color: rgb(56, 121, 217);
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698