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

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

Issue 1369163002: Material PDF: Drastically reduce time required to stamp complex bookmark trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 :host { 5 :host {
6 display: inline-block; 6 display: inline-block;
7 text-align: left; 7 text-align: left;
8 } 8 }
9 9
10 #container { 10 #container {
(...skipping 12 matching lines...) Expand all
23 max-height: 300px; 23 max-height: 300px;
24 overflow-y: auto; 24 overflow-y: auto;
25 padding: 6px 0 4px 0; 25 padding: 6px 0 4px 0;
26 } 26 }
27 27
28 #icon { 28 #icon {
29 cursor: pointer; 29 cursor: pointer;
30 display: inline-block; 30 display: inline-block;
31 } 31 }
32 32
33 #icon.open { 33 :host([dropdown-open]) #icon {
34 background-color: rgb(25, 27, 29); 34 background-color: rgb(25, 27, 29);
35 border-radius: 4px; 35 border-radius: 4px;
36 } 36 }
37 37
38 #arrow { 38 #arrow {
39 margin-left: -12px; 39 margin-left: -12px;
40 padding-right: 4px; 40 padding-right: 4px;
41 } 41 }
42 42
43 h1 { 43 h1 {
44 border-bottom: 1px solid rgb(219, 219, 219); 44 border-bottom: 1px solid rgb(219, 219, 219);
45 color: rgb(33, 33, 33); 45 color: rgb(33, 33, 33);
46 font-size: 77.8%; 46 font-size: 77.8%;
47 font-weight: 500; 47 font-weight: 500;
48 margin: 0; 48 margin: 0;
49 padding: 14px 28px; 49 padding: 14px 28px;
50 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698