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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/domBreakpointsSidebarPane.css

Issue 2900843002: DevTools: remove BreakpointsSidebarPaneBase and breakpointsList.css (Closed)
Patch Set: rebase again 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 .breakpoint-list {
8 padding-bottom: 3px;
9 }
10
11 .breakpoint-list .dom-breakpoint > div {
12 overflow: hidden;
13 text-overflow: ellipsis;
14 }
15
16 .breakpoint-entry {
17 display: flex;
18 white-space: nowrap;
19 text-overflow: ellipsis;
20 overflow: hidden;
21 padding: 2px 0;
22 }
23
24 .breakpoint-list .breakpoint-entry:hover {
25 background-color: #eee;
26 }
27
28 .breakpoint-hit {
29 background-color: rgb(255, 255, 194);
30 }
31
32 :host-context(.-theme-with-dark-background) .breakpoint-hit {
33 background-color: hsl(46, 98%, 22%);
34 color: #ccc;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698