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

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

Issue 2900843002: DevTools: remove BreakpointsSidebarPaneBase and breakpointsList.css (Closed)
Patch Set: remove the base, and also rebase 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
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 background-color: #eee; 46 background-color: #eee;
47 } 47 }
48 48
49 .breakpoint-entry > .source-text { 49 .breakpoint-entry > .source-text {
50 cursor: pointer; 50 cursor: pointer;
51 text-overflow: ellipsis; 51 text-overflow: ellipsis;
52 overflow: hidden; 52 overflow: hidden;
53 white-space: nowrap; 53 white-space: nowrap;
54 } 54 }
55 55
56 .breakpoint-condition { 56 .breakpoint-condition {
dgozman 2017/05/30 21:53:39 Let's remove this file, splitting useful parts of
luoe 2017/05/31 03:09:24 Done.
57 display: block; 57 display: block;
58 margin-top: 4px; 58 margin-top: 4px;
59 margin-bottom: 4px; 59 margin-bottom: 4px;
60 margin-left: 23px; 60 margin-left: 23px;
61 margin-right: 8px; 61 margin-right: 8px;
62 } 62 }
63 63
64 .breakpoint-list .editing.being-edited { 64 .breakpoint-list .editing.being-edited {
65 overflow: hidden; 65 overflow: hidden;
66 white-space: nowrap; 66 white-space: nowrap;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 115
116 li.breakpoint-hit .breakpoint-hit-marker { 116 li.breakpoint-hit .breakpoint-hit-marker {
117 background-color: rgb(255, 255, 194); 117 background-color: rgb(255, 255, 194);
118 height: 18px; 118 height: 18px;
119 left: 0; 119 left: 0;
120 margin-top: -16px; 120 margin-top: -16px;
121 position: absolute; 121 position: absolute;
122 right: 0; 122 right: 0;
123 z-index: -1; 123 z-index: -1;
124 } 124 }
125
126 .dom-breakpoints-list > li {
127 display: flex;
128 }
129
130 .dom-breakpoints-list .dom-breakpoint > div {
131 overflow: hidden;
132 text-overflow: ellipsis;
133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698