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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/extensions/extension_load_error.css
diff --git a/chrome/browser/resources/extensions/extension_load_error.css b/chrome/browser/resources/extensions/extension_load_error.css
new file mode 100644
index 0000000000000000000000000000000000000000..63e565300301455f0205427c813fe22375aa2270
--- /dev/null
+++ b/chrome/browser/resources/extensions/extension_load_error.css
@@ -0,0 +1,40 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+#extension-load-error {
+ -webkit-margin-before: 10px;
+ -webkit-margin-end: 20px;
+ -webkit-padding-after: 10px;
+ -webkit-padding-end: 3px;
+ -webkit-padding-start: 10px;
+ background-color: rgba(255, 249, 221, 1);
+ border-radius: 7px;
+ display: flex;
+ flex-direction: column;
+ font-size: 1.1em;
+}
+
+#extension-load-error h2 {
+ font-size: 14px;
+ font-weight: bold;
+}
+
+#extension-load-error-message {
+ -webkit-margin-before: 5px;
+}
+
+#extension-load-error-manifest {
+ -webkit-margin-after: 10px;
+ -webkit-margin-before: 10px;
+ background-color: rgba(255, 250, 240, 1);
+ max-height: 100px;
+}
+
+#extension-load-error-manifest .extension-code-highlighted-source {
+ background-color: pink;
+}
+
+#extension-load-error-controls {
+ align-self: flex-end;
+}

Powered by Google App Engine
This is Rietveld 408576698