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

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

Issue 864753002: Add a slide-in pane to the OOP PDF viewer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pdf-toolbar
Patch Set: Put scrollbar of pane on the left 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/pdf-pane/pdf-pane.css
diff --git a/chrome/browser/resources/pdf/elements/pdf-pane/pdf-pane.css b/chrome/browser/resources/pdf/elements/pdf-pane/pdf-pane.css
new file mode 100644
index 0000000000000000000000000000000000000000..bd447f38792eebfddc1412f1402cc40a0033c0c4
--- /dev/null
+++ b/chrome/browser/resources/pdf/elements/pdf-pane/pdf-pane.css
@@ -0,0 +1,30 @@
+/* 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. */
+
+:host /deep/ paper-dialog {
+ background-color: rgb(66, 66, 66);
+ color: rgb(250, 250, 250);
+ direction: rtl;
raymes 2015/01/23 00:16:46 Maybe add a comment about this is here. i.e. /* S
Alexandre Carlton 2015/01/23 00:25:11 Done.
+ font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
+ height: calc(100% - 64px);
+ margin: 0;
+ right: 0;
+ top: 64px;
+ width: 22em;
+}
+
+#reset-content {
+ direction: ltr;
+}
+
+:host /deep/ #scroller > h1 {
+ direction: ltr;
+ font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
+}
+
+hr {
+ background: rgb(66, 66, 66);
+ border: 0;
+ border-bottom: 1px dashed rgb(250, 250, 250);
+}

Powered by Google App Engine
This is Rietveld 408576698