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

Unified Diff: chrome/browser/resources/snippets_internals.css

Issue 1883523002: chrome://snippets-internals page for debugging NTP snippets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implementing last suggestions from Bernhard Created 4 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/snippets_internals.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/snippets_internals.css
diff --git a/chrome/browser/resources/snippets_internals.css b/chrome/browser/resources/snippets_internals.css
new file mode 100644
index 0000000000000000000000000000000000000000..40d8997c73477ff5bef1e60d96f9e3d71a460ce9
--- /dev/null
+++ b/chrome/browser/resources/snippets_internals.css
@@ -0,0 +1,78 @@
+/* Copyright 2016 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. */
+
+html {
+ font-size: 20px;
+}
+
+#info > div {
+ width: 100%;
+}
+
+#info h2 {
+ color: rgb(74, 142, 230);
+ font-size: 100%;
+ margin-bottom: 0.3em;
+ margin-top: 1em;
+}
+
+#info .section {
+ display: inline-block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.section-details {
+ width: 100%;
+}
+
+.section-details .detail,
+.section-details .value {
+ width: 50%;
+}
+
+td.title-link {
+ padding-bottom: 0.5em;
+ padding-top: 0.5em;
+}
+
+.expiry {
+ color: gray;
+ font-size: 80%;
+}
+
+.date {
+ white-space: nowrap;
+}
+
+.url {
+ display: inline-block;
+ font-size: 80%;
+ word-break: break-all;
+}
+
+.snippet-detail {
+ font-size: 90%;
+}
+
+.snippet-hidden {
+ display: none;
+}
+
+table.section-details > tbody > tr:nth-child(odd) {
+ background: rgb(239, 243, 255);
+}
+
+.detail {
+ color: gray;
+ font-weight: normal;
+}
+
+.forms {
+ margin-top: 0.3em;
+}
+
+#submit-clear {
+ margin-bottom: 0.5em;
+}
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/snippets_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698