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

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

Issue 98463005: Enable/disable extensions upon changes in blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Show blacklist state together with location. Created 6 years, 11 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 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 } 150 }
151 151
152 .extension-details { 152 .extension-details {
153 -webkit-box-flex: 1; 153 -webkit-box-flex: 1;
154 -webkit-padding-start: 55px; 154 -webkit-padding-start: 55px;
155 } 155 }
156 156
157 .extension-description, 157 .extension-description,
158 .extension-list-item-wrapper.inactive-extension .extension-details, 158 .extension-list-item-wrapper.inactive-extension .extension-details,
159 .location-text, 159 .location-text,
160 .blacklist-text,
160 .enable-checkbox input:disabled + .enable-checkbox-text { 161 .enable-checkbox input:disabled + .enable-checkbox-text {
161 color: rgb(151, 156, 160); 162 color: rgb(151, 156, 160);
162 } 163 }
163 164
164 .enable-controls { 165 .enable-controls {
165 /* Matches right: position of dev controls toggle. */ 166 /* Matches right: position of dev controls toggle. */
166 -webkit-margin-end: 20px; 167 -webkit-margin-end: 20px;
167 position: relative; 168 position: relative;
168 } 169 }
169 170
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 #drop-target-overlay { 255 #drop-target-overlay {
255 color: rgb(48, 57, 66); 256 color: rgb(48, 57, 66);
256 font-size: 18px; 257 font-size: 18px;
257 text-align: center; 258 text-align: center;
258 } 259 }
259 260
260 #drop-target-overlay div { 261 #drop-target-overlay div {
261 margin: 1em; 262 margin: 1em;
262 } 263 }
263 264
264 .location-text { 265 .location-text,
266 .blacklist-text {
265 display: block; 267 display: block;
266 width: 100px; 268 width: 100px;
267 } 269 }
268 270
269 /* Trash */ 271 /* Trash */
270 272
271 #extension-settings .trash { 273 #extension-settings .trash {
272 -webkit-transition: opacity 200ms; 274 -webkit-transition: opacity 200ms;
273 height: 22px; 275 height: 22px;
274 opacity: 0.8; 276 opacity: 0.8;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 /* Sideload Wipeout */ 319 /* Sideload Wipeout */
318 320
319 .sideload-wipeout-learn-more { 321 .sideload-wipeout-learn-more {
320 text-decoration: none; 322 text-decoration: none;
321 } 323 }
322 324
323 .sideload-wipeout-banner .page-banner-text { 325 .sideload-wipeout-banner .page-banner-text {
324 -webkit-padding-start: 8px; 326 -webkit-padding-start: 8px;
325 background-image: none; 327 background-image: none;
326 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698