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

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

Issue 9705083: Unknown options in extension manifest file are silently ignored (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changes per comments Created 8 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 /* 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 /* Developer mode */ 9 /* Developer mode */
10 10
(...skipping 26 matching lines...) Expand all
37 } 37 }
38 38
39 #extension-settings:not(.dev-mode) .developer-extras { 39 #extension-settings:not(.dev-mode) .developer-extras {
40 display: none; 40 display: none;
41 } 41 }
42 42
43 .developer-extras > div { 43 .developer-extras > div {
44 margin: 5px 0; 44 margin: 5px 0;
45 } 45 }
46 46
47 .unrecognized-keys {
48 color: red;
49 }
50
47 #extension-settings #page-header { 51 #extension-settings #page-header {
48 /* These values match the .page values. */ 52 /* These values match the .page values. */
49 -webkit-margin-end: 24px; 53 -webkit-margin-end: 24px;
50 min-width: 576px; 54 min-width: 576px;
51 } 55 }
52 56
53 /* Contents */ 57 /* Contents */
54 58
55 #extension-settings { 59 #extension-settings {
56 max-width: 738px; 60 max-width: 738px;
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 right: auto; 225 right: auto;
222 } 226 }
223 227
224 .extension-list-item:not(:hover) .trash:not(:focus) { 228 .extension-list-item:not(:hover) .trash:not(:focus) {
225 opacity: 0; 229 opacity: 0;
226 } 230 }
227 231
228 .extension-list-item-wrapper.may-not-disable .trash { 232 .extension-list-item-wrapper.may-not-disable .trash {
229 visibility: hidden; 233 visibility: hidden;
230 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698