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

Unified Diff: chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css

Issue 898673003: Refactor Material Design PDF Viewer toolbar into a single element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove irrelevant comment Created 5 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: chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css
diff --git a/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css b/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css
new file mode 100644
index 0000000000000000000000000000000000000000..82b1d9179c5fdc65e2c98b1b439b32661a1bf126
--- /dev/null
+++ b/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css
@@ -0,0 +1,26 @@
+/* Copyright 2015 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. */
+
+paper-progress {
+ height: 64px;
+ position: absolute;
+ width: 100%;
+ z-index: 3;
+}
+
+paper-progress::shadow #activeProgress {
+ background-color: rgb(33, 150, 243);
+}
+
+paper-progress::shadow #progressContainer {
+ background-color: rgb(100, 181, 246);
+}
+
+core-toolbar {
+ background-color: transparent;
+ color: rgb(241, 241, 241);
+ font-size: 2em;
+ height: 64px;
+ z-index: 3;
+}

Powered by Google App Engine
This is Rietveld 408576698