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

Unified Diff: remoting/credits/credits_css.css

Issue 2728913002: [remoting android] Generate trimmed-down credits.html. (Closed)
Patch Set: Use GN binary from //buildtools. Created 3 years, 9 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 | « remoting/credits/credits.tmpl ('k') | remoting/credits/credits_entry.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/credits/credits_css.css
diff --git a/remoting/credits/credits_css.css b/remoting/credits/credits_css.css
new file mode 100644
index 0000000000000000000000000000000000000000..a2885d47c0623211c987af0208d1d7c6f019ce2a
--- /dev/null
+++ b/remoting/credits/credits_css.css
@@ -0,0 +1,75 @@
+/* Copyright (c) 2012 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.
+ */
+
+body {
+ font-family: "Arial", "Helvetica", sans-serif;
+ color: #222;
+ font-size: 13px;
+ margin: 0;
+ direction: __MSG_@@bidi_dir__;
+ overflow: auto;
+}
+
+a {
+ text-decoration: none;
+ color: #15c;
+ cursor: pointer;
+}
+
+a:active {
+ color: #d14836;
+}
+
+body.show-only-selected .product:not(.selected) {
+ display: none;
+}
+
+.page-title {
+ font-size: 164%;
+ font-weight: bold;
+}
+
+.entries {
+ margin: 8px;
+}
+
+.product {
+ background-color: #c3d9ff;
+ border-radius: 5px;
+ margin-top: 16px;
+ overflow: auto;
+ padding: 2px;
+}
+
+.product .title {
+ float: left;
+ font-size: 110%;
+ font-weight: bold;
+ margin: 3px;
+}
+
+.right-align {
+ float: right;
+ margin: 3px 6px;
+}
+
+.licence {
+ background-color: #e8eef7;
+ border-radius: 3px;
+ clear: both;
+ padding: 16px;
+}
+
+.product:not(.selected) .licence {
+ display: none;
+}
+
+.licence h3 {
+ margin-top: 0;
+}
+
+.licence pre {
+ white-space: pre-wrap;
+}
« no previous file with comments | « remoting/credits/credits.tmpl ('k') | remoting/credits/credits_entry.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698