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

Unified Diff: components/webapks_ui/resources/about_webapks.css

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds an about:webapks page with information about all installed Web APKs on the device Created 3 years, 11 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: components/webapks_ui/resources/about_webapks.css
diff --git a/components/webapks_ui/resources/about_webapks.css b/components/webapks_ui/resources/about_webapks.css
new file mode 100644
index 0000000000000000000000000000000000000000..39a69cdac263ff11720f0487b917ef29886f1342
--- /dev/null
+++ b/components/webapks_ui/resources/about_webapks.css
@@ -0,0 +1,58 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
hartmanng 2017/01/13 15:40:21 s/(c) 2012/2017/
gonzalon 2017/01/13 20:24:40 Done.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+body {
+ background-color: white;
+ color: black;
+ font-size: 100%;
+ margin: 0;
+}
+
+#outer {
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 10px;
+ text-align: left;
+ width: 90%;
+}
+
+.label {
+ -webkit-padding-end: 5px;
+ font-size: 1.5em;
+ font-weight: bold;
+ text-align: start;
+ white-space: nowrap;
+}
+
+.label::after {
+ content: ':';
+}
+
+#logo {
+ float: left;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: right;
+}
+
+.app-name {
+ -webkit-padding-end: 5px;
+ font-size: 1.2em;
+ font-weight: bold;
+ text-align: start;
+ vertical-align: top;
+ white-space: nowrap;
+}
+
+.app-property-label {
+ -webkit-padding-end: 5px;
+ font-weight: bold;
+ text-align: start;
+ vertical-align: top;
+ white-space: nowrap;
+}
+
+.app-property-label::after {
+ content: ':';
+}

Powered by Google App Engine
This is Rietveld 408576698