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

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

Issue 2902553002: DevTools: migrate EventListenersSidebarPane to shadow (Closed)
Patch Set: Created 3 years, 7 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 125
126 .event-listener-breakpoints {
127 margin: 0;
128 padding: 2px 4px;
129 min-height: 18px;
130 }
131
132 .dom-breakpoints-list > li { 126 .dom-breakpoints-list > li {
133 display: flex; 127 display: flex;
134 } 128 }
135 129
136 .dom-breakpoints-list .dom-breakpoint > div { 130 .dom-breakpoints-list .dom-breakpoint > div {
137 overflow: hidden; 131 overflow: hidden;
138 text-overflow: ellipsis; 132 text-overflow: ellipsis;
139 } 133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698