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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.css

Issue 1364163002: Material PDF: Support RTL languages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #item { 5 #item {
6 @apply(--layout-center); 6 @apply(--layout-center);
7 @apply(--layout-horizontal); 7 @apply(--layout-horizontal);
8 color: rgb(80, 80, 80); 8 color: rgb(80, 80, 80);
9 cursor: pointer; 9 cursor: pointer;
10 font-size: 77.8%; 10 font-size: 77.8%;
(...skipping 15 matching lines...) Expand all
26 #expand { 26 #expand {
27 --iron-icon-height: 16px; 27 --iron-icon-height: 16px;
28 --iron-icon-width: 16px; 28 --iron-icon-width: 16px;
29 height: 16px; 29 height: 16px;
30 min-width: 16px; 30 min-width: 16px;
31 padding: 6px; 31 padding: 6px;
32 transition: transform 150ms; 32 transition: transform 150ms;
33 width: 16px; 33 width: 16px;
34 } 34 }
35 35
36 :host-context([dir=rtl]) #expand {
37 transform: rotate(180deg);
38 }
39
36 :host([children-shown]) #expand { 40 :host([children-shown]) #expand {
37 transform: rotate(90deg); 41 transform: rotate(90deg);
38 } 42 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698