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

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: 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 .extension-error-metadata {
26 width: 85%;
27 }
28
29 .extension-error-icon-error,
30 .extension-error-icon-log,
31 .extension-error-icon-warn {
32 -webkit-margin-end: 10px;
33 height: 15px;
34 width: 15px;
35 }
36
37 .extension-error-icon-error {
38 content: url('extension_error_error.png');
39 }
40
41 .extension-error-icon-warn {
42 content: url('extension_error_warn.png');
43 }
44
45 .extension-error-icon-log {
46 content: url('extension_error_log.png');
47 }
48
49 .extension-error-message {
50 color: rgba(200, 50, 50, 255);
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698