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

Side by Side Diff: chrome/browser/resources/extensions/extension_error.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
(Empty)
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .extension-error-list a {
6 cursor: pointer;
7 }
8
9 .extension-error-list-contents {
10 -webkit-padding-start: 20px;
11 list-style-type: none;
12 }
13
14 .extension-error-list-show-more {
15 cursor: pointer;
16 text-align: center;
17 width: 100%;
18 }
19
20 .extension-error-simple-wrapper {
21 display: -webkit-box;
22 width: 100%;
23 }
24
25 .extension-error-simple-wrapper >:first-child {
Dan Beam 2013/08/20 21:39:26 nit: .extension-error-simple-wrapper > :first-chil
Devlin 2013/08/20 23:06:51 Done.
26 width: 85%;
27 }
28
29 .extension-error-icon-error,
30 .extension-error-icon-log,
31 .extension-error-icon-warn {
32 -webkit-margin-end: 3px;
33 -webkit-margin-start: 3px;
34 height: 15px;
35 vertical-align: middle;
36 width: 15px;
37 }
38
39 .extension-error-message {
40 color: rgba(200, 50, 50, 255);
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698