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

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

Issue 853603002: Merge html-office-public repo into src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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-page-indicator/viewer-page-indicator.css
diff --git a/chrome/browser/resources/pdf/elements/viewer-page-indicator/viewer-page-indicator.css b/chrome/browser/resources/pdf/elements/viewer-page-indicator/viewer-page-indicator.css
new file mode 100644
index 0000000000000000000000000000000000000000..ec90ec99f53a3cbef53165c328e745c4c5795f1b
--- /dev/null
+++ b/chrome/browser/resources/pdf/elements/viewer-page-indicator/viewer-page-indicator.css
@@ -0,0 +1,35 @@
+/* Copyright 2013 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 {
+ -webkit-transition: opacity 400ms ease-in-out;
+ pointer-events: none;
+ position: fixed;
+ right: 0;
+}
+
+#text {
+ background-color: rgba(0, 0, 0, 0.5);
+ border-radius: 5px;
+ color: white;
+ float: left;
+ font-family: sans-serif;
+ font-size: 12px;
+ font-weight: bold;
+ line-height: 48px;
+ text-align: center;
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
+ width: 62px;
+}
+
+#triangle-right {
+ border-bottom: 6px solid transparent;
+ border-left: 8px solid rgba(0, 0, 0, 0.5);
+ border-top: 6px solid transparent;
+ display: inline;
+ float: left;
+ height: 0;
+ margin-top: 18px;
+ width: 0;
+}

Powered by Google App Engine
This is Rietveld 408576698