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

Side by Side Diff: Source/devtools/front_end/sourcesPanel.css

Issue 471553003: DevTools: remove unused CSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | 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
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 } 170 }
171 171
172 .function-popover-title .function-name { 172 .function-popover-title .function-name {
173 font-weight: bold; 173 font-weight: bold;
174 } 174 }
175 175
176 .panel.sources .sidebar-pane-stack { 176 .panel.sources .sidebar-pane-stack {
177 overflow: auto; 177 overflow: auto;
178 } 178 }
179 179
180 .targets-select {
181 width: 100%
182 }
183
184 #targets-toolbar { 180 #targets-toolbar {
185 background: rgb(236, 236, 236); 181 background: rgb(236, 236, 236);
186 border-bottom: 1px solid rgb(189, 189, 189); 182 border-bottom: 1px solid rgb(189, 189, 189);
187 border-top: 1px solid rgb(189, 189, 189); 183 border-top: 1px solid rgb(189, 189, 189);
188 margin-right: 0px; 184 margin-right: 0px;
189 padding-right: 6px; 185 padding-right: 6px;
190 margin-top: -1px; 186 margin-top: -1px;
191 } 187 }
192 188
193 .panel.sources .drag-mask { 189 .panel.sources .drag-mask {
194 background-color: rgba(255,255,255,0.8); 190 background-color: rgba(255,255,255,0.8);
195 z-index: 1000; 191 z-index: 1000;
196 } 192 }
197 193
198 .panel.sources .drag-mask-inner { 194 .panel.sources .drag-mask-inner {
199 font-size: 30px; 195 font-size: 30px;
200 color: #999; 196 color: #999;
201 display: flex; 197 display: flex;
202 justify-content: center; 198 justify-content: center;
203 align-items: center; 199 align-items: center;
204 margin: 20px; 200 margin: 20px;
205 border: 4px dashed #ddd; 201 border: 4px dashed #ddd;
206 pointer-events: none; 202 pointer-events: none;
207 } 203 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698