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

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

Issue 10536084: Add a warning when developing an extension that uses old manifest version. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blonk Created 8 years, 6 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 /* Developer mode */ 9 /* Developer mode */
10 10
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 162
163 .terminated-reload-link { 163 .terminated-reload-link {
164 -webkit-margin-end: 2em; 164 -webkit-margin-end: 2em;
165 } 165 }
166 166
167 .extension-list-item a { 167 .extension-list-item a {
168 -webkit-margin-start: 0.5em; 168 -webkit-margin-start: 0.5em;
169 display: inline-block; 169 display: inline-block;
170 } 170 }
171 171
172 .install-warnings a {
173 -webkit-margin-start: 0;
174 }
175
172 .butter-bar, 176 .butter-bar,
173 .install-warnings, 177 .install-warnings,
174 .extension-warnings { 178 .extension-warnings {
175 border-radius: 3px; 179 border-radius: 3px;
176 margin-top: 5px; 180 margin-top: 5px;
177 padding: 2px 5px; 181 padding: 2px 5px;
178 } 182 }
179 183
180 .butter-bar { 184 .butter-bar {
181 background: rgb(255, 242, 153); 185 background: rgb(255, 242, 153);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 opacity: 0; 246 opacity: 0;
243 } 247 }
244 248
245 .extension-list-item-wrapper.may-not-disable .trash { 249 .extension-list-item-wrapper.may-not-disable .trash {
246 visibility: hidden; 250 visibility: hidden;
247 } 251 }
248 252
249 .may-not-disable .optional-controls { 253 .may-not-disable .optional-controls {
250 display: none; 254 display: none;
251 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698