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

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

Issue 1312373002: Material PDF: Style audit and cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests for page selector Created 5 years, 3 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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/web-anim ations.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/web-anim ations.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 5
6 <dom-module id="viewer-toolbar-dropdown"> 6 <dom-module id="viewer-toolbar-dropdown">
7 <link rel="import" type="css" href="../shared-icon-style.css">
7 <link rel="import" type="css" href="viewer-toolbar-dropdown.css"> 8 <link rel="import" type="css" href="viewer-toolbar-dropdown.css">
8 <template> 9 <template>
9 <div on-click="toggleDropdown" id="icon"> 10 <div on-click="toggleDropdown" id="icon">
10 <paper-icon-button icon="[[dropdownIcon]]"></paper-icon-button> 11 <paper-icon-button icon="[[dropdownIcon]]"></paper-icon-button>
11 <iron-icon icon="arrow-drop-down" id="arrow"></iron-icon> 12 <iron-icon icon="arrow-drop-down" id="arrow"></iron-icon>
12 </div> 13 </div>
13 14
14 <div id="container"> 15 <div id="container">
15 <paper-material id="dropdown" style="display: none"> 16 <paper-material id="dropdown" style="display: none">
16 <h1>{{header}}</h1> 17 <h1>{{header}}</h1>
17 <div id="scroll-container"> 18 <div id="scroll-container">
18 <content></content> 19 <content></content>
19 </div> 20 </div>
20 </paper-material> 21 </paper-material>
21 </div> 22 </div>
22 </template> 23 </template>
23 </dom-module> 24 </dom-module>
24 25
25 <script src="viewer-toolbar-dropdown.js"></script> 26 <script src="viewer-toolbar-dropdown.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698