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

Unified Diff: chrome/browser/resources/extensions/extension_info.css

Issue 10544195: Show an extension info bubble when a script badge is clicked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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_info.css
diff --git a/chrome/browser/resources/extensions/extension_info.css b/chrome/browser/resources/extensions/extension_info.css
new file mode 100644
index 0000000000000000000000000000000000000000..9c4422dd4f56dbb4323fd5dbea3dcb604786be6b
--- /dev/null
+++ b/chrome/browser/resources/extensions/extension_info.css
@@ -0,0 +1,39 @@
+body {
Aaron Boodman 2012/06/16 02:21:19 License header. Note that CSS only has /* ... */ s
Yoyo Zhou 2012/06/18 19:39:38 Added.
+ font-family: 'DejaVu Sans', Arial, sans-serif;
+ max-width: 480px;
+ min-width: 360px;
+}
+
+#extension-item {
+ background-repeat: no-repeat;
+ display: -webkit-box;
+ min-height: 48px;
+}
+
+#extension-title-running {
+ -webkit-padding-after: 5px;
+ -webkit-padding-end: 5px;
+ font-size: 14px;
+ font-weight: 500;
+}
+
+#extension-last-updated,
+#extension-update-time {
+ -webkit-padding-end: 7px;
+ color: rgb(78, 83, 86);
+ font-size: 13px;
+ font-weight: 400;
+}
+
+#extension-description {
+ -webkit-padding-end: 5px;
+ color: rgb(121, 126, 130);
+ font-size: 13px;
+ margin: 5px 0;
+ white-space: normal;
+}
+
+#extension-details {
+ -webkit-box-flex: 1;
+ -webkit-padding-start: 55px;
+}

Powered by Google App Engine
This is Rietveld 408576698