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

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

Issue 12288052: Add managed user lock/unlock button for the extensions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address css nit. Created 7 years, 10 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 border-radius: 3px; 290 border-radius: 3px;
291 padding: 5px 0 5px 5px; 291 padding: 5px 0 5px 5px;
292 } 292 }
293 293
294 .may-not-disable .optional-controls .optional-controls-disableable { 294 .may-not-disable .optional-controls .optional-controls-disableable {
295 display: none; 295 display: none;
296 } 296 }
297 297
298 /* Managed mode */ 298 /* Managed mode */
299 299
300 .page:not(.profile-is-managed) .profile-is-managed-banner { 300 .page:not(.profile-is-managed) .profile-is-managed-banner,
301 .profile-is-managed .more-extensions-link,
302 .profile-is-managed .extension-commands-config,
not at google - send to devlin 2013/02/21 01:29:18 This confused me for a while... it's orthogonal?
not at google - send to devlin 2013/02/21 03:37:46 Besides which, why hide the commands config in man
Adrian Kuegel 2013/02/21 10:10:54 Yes, you are right. Sorry, I didn't notice it befo
303 .no-managed-user-controls #managed-user-control-div,
304 .page:not(.profile-is-managed) #unlock-button,
305 .profile-is-managed #lock-button {
not at google - send to devlin 2013/02/21 01:29:18 This last line doesn't make sense to me, and it's
Adrian Kuegel 2013/02/21 10:10:54 The logic is as follows: The lock button is visibl
301 display: none; 306 display: none;
302 } 307 }
303 308
304 .profile-is-managed-banner .page-banner-text { 309 .profile-is-managed-banner .page-banner-text {
305 background-image: url('chrome://theme/IDR_WARNING'); 310 background-image: url('chrome://theme/IDR_WARNING');
306 } 311 }
307 312
308 .profile-is-managed .more-extensions-link { 313 #managed-user-control-div {
309 display: none; 314 display: inline-block;
315 padding-left: 7px;
310 } 316 }
311 317
312 /* Sideload Wipeout */ 318 /* Sideload Wipeout */
313 319
314 .sideload-wipeout-learn-more { 320 .sideload-wipeout-learn-more {
315 text-decoration: none; 321 text-decoration: none;
316 } 322 }
317 323
318 .sideload-wipeout-banner .page-banner-text { 324 .sideload-wipeout-banner .page-banner-text {
319 -webkit-padding-start: 8px; 325 -webkit-padding-start: 8px;
320 background-image: none; 326 background-image: none;
321 } 327 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698