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

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

Issue 893603006: extensions: darken some disabled text for better contrast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 -webkit-padding-end: 7px; 240 -webkit-padding-end: 7px;
241 -webkit-padding-start: 55px; 241 -webkit-padding-start: 55px;
242 } 242 }
243 243
244 .extension-description, 244 .extension-description,
245 .extension-version, 245 .extension-version,
246 .extension-list-item-wrapper.inactive-extension .extension-details, 246 .extension-list-item-wrapper.inactive-extension .extension-details,
247 .location-text, 247 .location-text,
248 .blacklist-text, 248 .blacklist-text,
249 .enable-checkbox input:disabled + .enable-checkbox-text { 249 .enable-checkbox input:disabled + .enable-checkbox-text {
250 color: rgb(151, 156, 160); 250 color: rgb(115, 119, 122);
251 } 251 }
252 252
253 .enable-controls { 253 .enable-controls {
254 /* Matches right: position of dev controls toggle. */ 254 /* Matches right: position of dev controls toggle. */
255 -webkit-margin-end: 20px; 255 -webkit-margin-end: 20px;
256 position: relative; 256 position: relative;
257 } 257 }
258 258
259 /* We use x[is='action-link'] here so that we get higher specifity than the 259 /* We use x[is='action-link'] here so that we get higher specifity than the
260 * action link rules without resorting to the Dark Side (!IMPORTANT). */ 260 * action link rules without resorting to the Dark Side (!IMPORTANT). */
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 /* Sideload Wipeout */ 417 /* Sideload Wipeout */
418 418
419 .sideload-wipeout-learn-more { 419 .sideload-wipeout-learn-more {
420 text-decoration: none; 420 text-decoration: none;
421 } 421 }
422 422
423 .sideload-wipeout-banner .page-banner-text { 423 .sideload-wipeout-banner .page-banner-text {
424 -webkit-padding-start: 8px; 424 -webkit-padding-start: 8px;
425 background-image: none; 425 background-image: none;
426 } 426 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698