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

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: Rebase to Master 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 {
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-icon-error {
40 content: url('extension_error_error.png');
41 }
42
43 .extension-error-icon-warn {
44 content: url('extension_error_warn.png');
45 }
46
47 .extension-error-icon-log {
48 content: url('extension_error_log.png');
49 }
50
51 .extension-error-message {
52 color: rgba(200, 50, 50, 255);
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698