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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/javaScriptBreakpointsSidebarPane.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-entry {
8 padding: 3px 8px 3px 8px;
9 min-height: 18px;
10 line-height: 15px;
11 border-top: 1px solid #efefef;
12 }
13
14 .breakpoint-entry [is=dt-checkbox] {
15 max-width: 100%;
16 white-space: nowrap;
17 }
18
19 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover {
20 background-color: #eee;
21 }
22
23 .breakpoint-entry > .source-text {
24 cursor: pointer;
25 text-overflow: ellipsis;
26 overflow: hidden;
27 white-space: nowrap;
28 }
29
30 .breakpoints-list-deactivated {
31 background-color: #eee;
32 opacity: 0.3;
33 }
34
35 .breakpoint-hit {
36 background-color: rgb(255, 255, 194);
37 }
38
39 :host-context(.-theme-with-dark-background) .breakpoint-hit {
40 background-color: hsl(46, 98%, 22%);
41 color: #ccc;
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698