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

Side by Side Diff: chrome/browser/resources/extensions/extensions.css

Issue 238073002: Provide UI for per-extension enabling/disabling of error collection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html.loading * { 5 html.loading * {
6 -webkit-transition-duration: 0 !important; 6 -webkit-transition-duration: 0 !important;
7 } 7 }
8 8
9 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 .install-warnings, 221 .install-warnings,
222 .extension-warnings { 222 .extension-warnings {
223 background: pink; 223 background: pink;
224 } 224 }
225 225
226 .install-warnings ul, 226 .install-warnings ul,
227 .extension-warnings ul { 227 .extension-warnings ul {
228 margin: 0; 228 margin: 0;
229 } 229 }
230 230
231 .error-collection-control {
232 -webkit-margin-start: 5px;
233 }
234
231 #font-measuring-div { 235 #font-measuring-div {
232 /* Remove from the flow and hide. */ 236 /* Remove from the flow and hide. */
233 position: absolute; 237 position: absolute;
234 visibility: hidden; 238 visibility: hidden;
235 } 239 }
236 240
237 .extension-commands-config { 241 .extension-commands-config {
238 float: right; 242 float: right;
239 } 243 }
240 244
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 /* Sideload Wipeout */ 323 /* Sideload Wipeout */
320 324
321 .sideload-wipeout-learn-more { 325 .sideload-wipeout-learn-more {
322 text-decoration: none; 326 text-decoration: none;
323 } 327 }
324 328
325 .sideload-wipeout-banner .page-banner-text { 329 .sideload-wipeout-banner .page-banner-text {
326 -webkit-padding-start: 8px; 330 -webkit-padding-start: 8px;
327 background-image: none; 331 background-image: none;
328 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698