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

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

Issue 252593003: Improve UI for unpacked extensions failing to load (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android fix Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright 2014 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-load-error {
6 -webkit-margin-before: 10px;
7 -webkit-margin-end: 20px;
8 -webkit-padding-after: 10px;
9 -webkit-padding-end: 3px;
10 -webkit-padding-start: 10px;
11 background-color: rgba(255, 249, 221, 1);
12 border-radius: 7px;
13 display: flex;
14 flex-direction: column;
15 font-size: 1.1em;
16 }
17
18 #extension-load-error h2 {
19 font-size: 14px;
20 font-weight: bold;
21 }
22
23 #extension-load-error-message {
24 -webkit-margin-before: 5px;
25 }
26
27 #extension-load-error-manifest {
28 -webkit-margin-after: 10px;
29 -webkit-margin-before: 10px;
30 background-color: rgba(255, 250, 240, 1);
31 max-height: 100px;
32 }
33
34 #extension-load-error-manifest .extension-code-highlighted-source {
35 background-color: pink;
36 }
37
38 #extension-load-error-controls {
39 align-self: flex-end;
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698