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

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

Issue 22938005: Add ErrorConsole UI for Extension Install Warnings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_ec_install_warnings
Patch Set: Yoyo's + temporarily remove *.png for apply issue Created 7 years, 4 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, 5 html,
6 body { 6 body {
7 height: 100%; 7 height: 100%;
8 overflow: hidden; 8 overflow: hidden;
9 } 9 }
10 10
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 .terminated-reload-link { 227 .terminated-reload-link {
228 -webkit-margin-end: 2.5em; 228 -webkit-margin-end: 2.5em;
229 padding-top: 7px; 229 padding-top: 7px;
230 } 230 }
231 231
232 .extension-list-item a { 232 .extension-list-item a {
233 -webkit-margin-start: 0.5em; 233 -webkit-margin-start: 0.5em;
234 display: inline-block; 234 display: inline-block;
235 } 235 }
236 236
237 .install-warnings a {
238 -webkit-margin-start: 0;
239 }
240
241 .butter-bar, 237 .butter-bar,
242 .install-warnings,
243 .extension-warnings { 238 .extension-warnings {
244 border-radius: 3px; 239 border-radius: 3px;
245 margin-top: 5px; 240 margin-top: 5px;
246 padding: 2px 5px; 241 padding: 2px 5px;
247 } 242 }
248 243
249 .butter-bar { 244 .butter-bar {
250 background: rgb(255, 242, 153); 245 background: rgb(255, 242, 153);
251 } 246 }
252 247
253 .install-warnings,
254 .extension-warnings { 248 .extension-warnings {
255 background: pink; 249 background: pink;
256 } 250 }
257 251
258 .install-warnings ul,
259 .extension-warnings ul { 252 .extension-warnings ul {
260 margin: 0; 253 margin: 0;
261 } 254 }
262 255
263 #font-measuring-div { 256 #font-measuring-div {
264 /* Remove from the flow and hide. */ 257 /* Remove from the flow and hide. */
265 position: absolute; 258 position: absolute;
266 visibility: hidden; 259 visibility: hidden;
267 } 260 }
268 261
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 /* Sideload Wipeout */ 343 /* Sideload Wipeout */
351 344
352 .sideload-wipeout-learn-more { 345 .sideload-wipeout-learn-more {
353 text-decoration: none; 346 text-decoration: none;
354 } 347 }
355 348
356 .sideload-wipeout-banner .page-banner-text { 349 .sideload-wipeout-banner .page-banner-text {
357 -webkit-padding-start: 8px; 350 -webkit-padding-start: 8px;
358 background-image: none; 351 background-image: none;
359 } 352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698