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

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

Issue 15962010: Indent media queries in CSS files for the DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Don't indent media queries but leave a comment explaining where the closing brace for media queries… Created 7 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 background-image: url(Images/statusbarButtonGlyphs.png); 156 background-image: url(Images/statusbarButtonGlyphs.png);
157 background-size: 320px 120px; 157 background-size: 320px 120px;
158 } 158 }
159 159
160 @media (-webkit-min-device-pixel-ratio: 1.5) { 160 @media (-webkit-min-device-pixel-ratio: 1.5) {
161 .database-user-query::before, 161 .database-user-query::before,
162 .database-query-prompt::before, 162 .database-query-prompt::before,
163 .database-query-result::before { 163 .database-query-result::before {
164 background-image: url(Images/statusbarButtonGlyphs2x.png); 164 background-image: url(Images/statusbarButtonGlyphs2x.png);
165 } 165 }
166 } 166 } /* media */
167 167
168 .database-query-prompt::before { 168 .database-query-prompt::before {
169 background-position: -192px -96px; 169 background-position: -192px -96px;
170 } 170 }
171 171
172 .database-user-query { 172 .database-user-query {
173 position: relative; 173 position: relative;
174 border-bottom: 1px solid rgb(245, 245, 245); 174 border-bottom: 1px solid rgb(245, 245, 245);
175 padding: 1px 22px 1px 24px; 175 padding: 1px 22px 1px 24px;
176 min-height: 16px; 176 min-height: 16px;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 content: url(Images/cookie.png); 332 content: url(Images/cookie.png);
333 } 333 }
334 334
335 .application-cache-storage-tree-item .icon { 335 .application-cache-storage-tree-item .icon {
336 content: url(Images/applicationCache.png); 336 content: url(Images/applicationCache.png);
337 } 337 }
338 338
339 .file-system-storage-tree-item .icon { 339 .file-system-storage-tree-item .icon {
340 content: url(Images/fileSystem.png); 340 content: url(Images/fileSystem.png);
341 } 341 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698