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

Unified Diff: chrome/browser/resources/md_user_manager/supervised_user_learn_more.css

Issue 1725563003: MD user manager (learn more page, user manager tutorial) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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: chrome/browser/resources/md_user_manager/supervised_user_learn_more.css
diff --git a/chrome/browser/resources/md_user_manager/supervised_user_learn_more.css b/chrome/browser/resources/md_user_manager/supervised_user_learn_more.css
new file mode 100644
index 0000000000000000000000000000000000000000..b143c5549e30b18f17be92c4263e1ff2ff973ae5
--- /dev/null
+++ b/chrome/browser/resources/md_user_manager/supervised_user_learn_more.css
@@ -0,0 +1,63 @@
+/* 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. */
+
+:host {
+ align-items: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+};
+
+#container {
+ color: #333;
+ font-size: 13px;
+ line-height: 20px;
+ width: 624px;
+}
+
+#title-area {
+ border-bottom: 1px solid rgba(0, 0, 0, .12);
+ padding-bottom: 16px;
+}
+
+#title {
+ font-size: 16px;
+}
+
+#title-area iron-icon {
+ color: #969696;
+ height: 20px;
+ width: 20px;
+}
+
+.content-area {
+ padding-top: 32px;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+#actions {
+ bottom: 16px;
+ position: absolute;
+ right: 16px;
+}
+
+:host-context([dir='rtl']) #actions {
+ left: 16px;
+ right: auto;
+}
+
+#actions paper-button {
+ border-radius: 2px;
+ line-height: 32px;
+ margin: 0 4px;
+ min-width: 52px;
+ padding: 0 16px;
+}
+
+#actions paper-button.action {
+ -webkit-margin-end: 0;
+ background: var(--google-blue-500);
+ color: white;
+}

Powered by Google App Engine
This is Rietveld 408576698