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

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 review comments and rebase to ToT. 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(.managed-user-locked) .profile-is-managed-banner,
301 .managed-user-locked .more-extensions-link,
302 .page:not(.profile-is-managed) #managed-user-control-div,
303 .page:not(.managed-user-locked) #unlock-button,
304 .managed-user-locked #lock-button {
not at google - send to devlin 2013/02/21 16:25:24 cool, that is much clearer. thanks!
301 display: none; 305 display: none;
302 } 306 }
303 307
304 .profile-is-managed-banner .page-banner-text { 308 .profile-is-managed-banner .page-banner-text {
305 background-image: url('chrome://theme/IDR_WARNING'); 309 background-image: url('chrome://theme/IDR_WARNING');
306 } 310 }
307 311
308 .profile-is-managed .more-extensions-link { 312 #managed-user-control-div {
309 display: none; 313 display: inline-block;
314 padding-left: 7px;
310 } 315 }
311 316
312 /* Sideload Wipeout */ 317 /* Sideload Wipeout */
313 318
314 .sideload-wipeout-learn-more { 319 .sideload-wipeout-learn-more {
315 text-decoration: none; 320 text-decoration: none;
316 } 321 }
317 322
318 .sideload-wipeout-banner .page-banner-text { 323 .sideload-wipeout-banner .page-banner-text {
319 -webkit-padding-start: 8px; 324 -webkit-padding-start: 8px;
320 background-image: none; 325 background-image: none;
321 } 326 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698