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

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

Issue 617023005: Tweak the highlight color for extensions in the extension list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 381
382 .extension-list-item:not(:hover) .trash:not(:focus) { 382 .extension-list-item:not(:hover) .trash:not(:focus) {
383 opacity: 0; 383 opacity: 0;
384 } 384 }
385 385
386 .extension-list-item-wrapper.may-not-remove .trash { 386 .extension-list-item-wrapper.may-not-remove .trash {
387 visibility: hidden; 387 visibility: hidden;
388 } 388 }
389 389
390 .extension-highlight { 390 .extension-highlight {
391 background: rgb(238, 238, 238); 391 background: rgb(250, 250, 250);
392 background-position: auto;
Devlin 2014/10/01 00:39:59 To the extent of my knowledge, there is no "auto"
Dan Beam 2014/10/02 18:49:49 probably right. not a ton of usefulness, i'd gues
393 background-repeat: auto;
394 border-radius: 3px; 392 border-radius: 3px;
395 padding: 5px 0 5px 5px; 393 padding: 5px 0 5px 5px;
396 } 394 }
397 395
398 /* Supervised users */ 396 /* Supervised users */
399 397
400 .page:not(.profile-is-supervised) .profile-is-supervised-banner, 398 .page:not(.profile-is-supervised) .profile-is-supervised-banner,
401 .profile-is-supervised .more-extensions-link { 399 .profile-is-supervised .more-extensions-link {
402 display: none; 400 display: none;
403 } 401 }
404 402
405 .profile-is-supervised-banner .page-banner-text { 403 .profile-is-supervised-banner .page-banner-text {
406 background-image: url(chrome://theme/IDR_WARNING); 404 background-image: url(chrome://theme/IDR_WARNING);
407 } 405 }
408 406
409 /* Sideload Wipeout */ 407 /* Sideload Wipeout */
410 408
411 .sideload-wipeout-learn-more { 409 .sideload-wipeout-learn-more {
412 text-decoration: none; 410 text-decoration: none;
413 } 411 }
414 412
415 .sideload-wipeout-banner .page-banner-text { 413 .sideload-wipeout-banner .page-banner-text {
416 -webkit-padding-start: 8px; 414 -webkit-padding-start: 8px;
417 background-image: none; 415 background-image: none;
418 } 416 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698