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

Unified Diff: remoting/credits/credits_css.css

Issue 2728913002: [remoting android] Generate trimmed-down credits.html. (Closed)
Patch Set: Created 3 years, 10 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: 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..54945b7ec1cfab0956132231513446826302a561
--- /dev/null
+++ b/remoting/credits/credits_css.css
@@ -0,0 +1,60 @@
+/* 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 {
+ overflow: auto;
+}
+
+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;
+}

Powered by Google App Engine
This is Rietveld 408576698