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

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

Issue 1051273002: Update chrome://extensions for supervised users (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: devlin review Created 5 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 transition-duration: 0ms !important; 6 transition-duration: 0ms !important;
7 } 7 }
8 8
9 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 391
392 .extension-list-item-wrapper.may-not-remove .trash { 392 .extension-list-item-wrapper.may-not-remove .trash {
393 visibility: hidden; 393 visibility: hidden;
394 } 394 }
395 395
396 /* In case the extension is policy controlled the trash icon must be hidden by 396 /* In case the extension is policy controlled the trash icon must be hidden by
397 * setting display:none rather than only setting visibility:hidden to completely 397 * setting display:none rather than only setting visibility:hidden to completely
398 * remove it from the layout and make space for the controlled indicator. 398 * remove it from the layout and make space for the controlled indicator.
399 * TODO(cschuet): rather than hide always replace it with something meaningful. 399 * TODO(cschuet): rather than hide always replace it with something meaningful.
400 */ 400 */
401 .extension-list-item-wrapper.policy-controlled .trash { 401 .extension-list-item-wrapper.controlled .trash {
402 display: none; 402 display: none;
403 } 403 }
404 404
405 /* Supervised users */ 405 /* Supervised users */
406 406
407 .page:not(.profile-is-supervised) .profile-is-supervised-banner, 407 .page:not(.profile-is-supervised) .profile-is-supervised-banner,
408 .profile-is-supervised .more-extensions-link { 408 .profile-is-supervised .more-extensions-link {
409 display: none; 409 display: none;
410 } 410 }
411 411
412 .profile-is-supervised-banner .page-banner-text { 412 .profile-is-supervised-banner .page-banner-text {
413 background-image: url(chrome://theme/IDR_WARNING); 413 background-image: url(chrome://theme/IDR_WARNING);
414 } 414 }
415 415
416 /* Sideload Wipeout */ 416 /* Sideload Wipeout */
417 417
418 .sideload-wipeout-learn-more { 418 .sideload-wipeout-learn-more {
419 text-decoration: none; 419 text-decoration: none;
420 } 420 }
421 421
422 .sideload-wipeout-banner .page-banner-text { 422 .sideload-wipeout-banner .page-banner-text {
423 -webkit-padding-start: 8px; 423 -webkit-padding-start: 8px;
424 background-image: none; 424 background-image: none;
425 } 425 }
426 426
427 .extension-highlight { 427 .extension-highlight {
428 background-color: rgba(0, 0, 0, .05); 428 background-color: rgba(0, 0, 0, .05);
429 } 429 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698