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

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

Issue 1092953004: [Extensions] Update developerPrivate API to use base-64 data urls for icons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 5 years, 8 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 line-height: 32px; 152 line-height: 32px;
153 } 153 }
154 154
155 .extension-list-item-wrapper { 155 .extension-list-item-wrapper {
156 margin: 12px 0; 156 margin: 12px 0;
157 padding: 12px; 157 padding: 12px;
158 } 158 }
159 159
160 .extension-list-item { 160 .extension-list-item {
161 background-repeat: no-repeat; 161 background-repeat: no-repeat;
162 background-size: 48px 48px;
162 display: -webkit-box; 163 display: -webkit-box;
163 min-height: 48px; 164 min-height: 48px;
164 } 165 }
165 166
166 .extension-list-item a { 167 .extension-list-item a {
167 -webkit-margin-start: 0.5em; 168 -webkit-margin-start: 0.5em;
168 display: inline-block; 169 display: inline-block;
169 } 170 }
170 171
171 html[dir='rtl'] .extension-list-item { 172 html[dir='rtl'] .extension-list-item {
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 413
413 .sideload-wipeout-banner .page-banner-text { 414 .sideload-wipeout-banner .page-banner-text {
414 -webkit-padding-start: 8px; 415 -webkit-padding-start: 8px;
415 background-image: none; 416 background-image: none;
416 } 417 }
417 418
418 .focus-row-active { 419 .focus-row-active {
419 background-color: rgba(0, 0, 0, .05); 420 background-color: rgba(0, 0, 0, .05);
420 border-radius: 3px; 421 border-radius: 3px;
421 } 422 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698