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

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: Removed an accedentally-included file Created 8 years, 9 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 /* Contents */ 51 /* Contents */
48 52
49 #extension-settings { 53 #extension-settings {
50 max-width: 718px; 54 max-width: 718px;
51 } 55 }
52 56
53 #no-extensions-message { 57 #no-extensions-message {
54 font-weight: bold; 58 font-weight: bold;
55 } 59 }
56 60
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 vertical-align: middle; 180 vertical-align: middle;
177 } 181 }
178 182
179 .extension-list-item:not(:hover) .trash:not(:focus) { 183 .extension-list-item:not(:hover) .trash:not(:focus) {
180 opacity: 0; 184 opacity: 0;
181 } 185 }
182 186
183 .extension-list-item-wrapper.may-not-disable .trash { 187 .extension-list-item-wrapper.may-not-disable .trash {
184 visibility: hidden; 188 visibility: hidden;
185 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698