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

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: Requested UI Changes Created 7 years, 3 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 text-align: center;
16 width: 100%;
17 }
18
19 .extension-error-simple-wrapper {
20 width: 100%;
21 }
22
23 .extension-error-icon {
24 -webkit-margin-end: 3px;
25 -webkit-margin-start: 3px;
26 height: 15px;
27 vertical-align: middle;
28 width: 15px;
29 }
30
31 .extension-error-log .extension-error-message {
32 color: #333;
33 }
34 .extension-error-log .extension-error-icon {
35 content: url('extension_error_log.png');
36 }
37
38 .extension-error-warn .extension-error-message {
Dan Beam 2013/08/29 00:24:30 hmmm, error-warn and error-error are awkward. ext
Devlin 2013/08/29 21:02:04 Yeah, I thought error-error was odd, too. But I t
39 color: rgba(250, 145, 0, 255);
40 }
41 .extension-error-warn .extension-error-icon {
42 content: url('extension_error_warn.png');
43 }
44
45 .extension-error-error .extension-error-message {
46 color: rgba(200, 50, 50, 255);
47 }
48 .extension-error-error .extension-error-icon {
49 content: url('extension_error_error.png');
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698