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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .editing.being-edited {
12 overflow: hidden;
13 white-space: nowrap;
14 }
15
16 .breakpoint-condition {
17 display: block;
18 margin-top: 4px;
19 margin-bottom: 4px;
20 margin-left: 23px;
21 margin-right: 8px;
22 }
23
24 .breakpoint-condition-input {
25 display: block;
26 margin-left: 0;
27 margin-right: 0;
28 outline: none !important;
29 border: 1px solid rgb(66%, 66%, 66%);
30 }
31
32 .breakpoint-entry {
33 white-space: nowrap;
34 padding: 2px 0;
35 }
36
37 .breakpoint-list .breakpoint-entry:hover {
38 background-color: #eee;
39 }
40
41 .breakpoint-entry [is=dt-checkbox] {
42 max-width: 100%;
43 }
44
45 .breakpoint-hit {
46 background-color: rgb(255, 255, 194);
47 }
48
49 :host-context(.-theme-with-dark-background) .breakpoint-hit {
50 background-color: hsl(46, 98%, 22%);
51 color: #ccc;
52 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698