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

Side by Side Diff: chrome/browser/resources/settings/printing_page/printing_page.html

Issue 2390053002: [MD settings] use arrow-forward to switch direction in rtl (Closed)
Patch Set: Created 4 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
4 <link rel="import" href="/printing_page/cloud_printers.html"> 4 <link rel="import" href="/printing_page/cloud_printers.html">
5 <link rel="import" href="/route.html"> 5 <link rel="import" href="/route.html">
6 <link rel="import" href="/settings_page/settings_animated_pages.html"> 6 <link rel="import" href="/settings_page/settings_animated_pages.html">
7 <link rel="import" href="/settings_page/settings_subpage.html"> 7 <link rel="import" href="/settings_page/settings_subpage.html">
8 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
9 <if expr="chromeos"> 9 <if expr="chromeos">
10 <link rel="import" href="/printing_page/cups_printer_details_page.html"> 10 <link rel="import" href="/printing_page/cups_printer_details_page.html">
11 <link rel="import" href="/printing_page/cups_printers.html"> 11 <link rel="import" href="/printing_page/cups_printers.html">
12 </if> 12 </if>
13 13
14 <dom-module id="settings-printing-page"> 14 <dom-module id="settings-printing-page">
15 <template> 15 <template>
16 <style include="settings-shared"></style> 16 <style include="settings-shared"></style>
17 <settings-animated-pages id="pages" section="printing"> 17 <settings-animated-pages id="pages" section="printing">
18 <array-selector id="arraySelector" items="{{cupsPrinters}}" 18 <array-selector id="arraySelector" items="{{cupsPrinters}}"
19 selected="{{detailPrinter_}}"> 19 selected="{{detailPrinter_}}">
20 </array-selector> 20 </array-selector>
21 <neon-animatable route-path="default"> 21 <neon-animatable route-path="default">
22 <if expr="chromeos"> 22 <if expr="chromeos">
23 <template is="dom-if" if="[[showCupsPrintingFeatures_]]"> 23 <template is="dom-if" if="[[showCupsPrintingFeatures_]]">
24 <div id="cupsPrinters" class="settings-box first" 24 <div id="cupsPrinters" class="settings-box first"
25 on-tap="onTapCupsPrinters_" actionable> 25 on-tap="onTapCupsPrinters_" actionable>
26 <div class="start"> 26 <div class="start">
27 $i18n{cupsPrintersTitle} 27 $i18n{cupsPrintersTitle}
28 </div> 28 </div>
29 <button class="icon-arrow-right" is="paper-icon-button-light"> 29 <button class="subpage-arrow" is="paper-icon-button-light"></button>
30 </button>
31 </div> 30 </div>
32 </template> 31 </template>
33 </if> 32 </if>
34 <div id="cloudPrinters" class="settings-box two-line" 33 <div id="cloudPrinters" class="settings-box two-line"
35 on-tap="onTapCloudPrinters_" actionable> 34 on-tap="onTapCloudPrinters_" actionable>
36 <div class="start"> 35 <div class="start">
37 $i18n{cloudPrintersTitle} 36 $i18n{cloudPrintersTitle}
38 <div class="secondary">$i18n{cloudPrintersTitleDescription}</div> 37 <div class="secondary">$i18n{cloudPrintersTitleDescription}</div>
39 </div> 38 </div>
40 <button class="icon-arrow-right" is="paper-icon-button-light"> 39 <button class="subpage-arrow" is="paper-icon-button-light"></button>
41 </button>
42 </div> 40 </div>
43 </neon-animatable> 41 </neon-animatable>
44 <if expr="chromeos"> 42 <if expr="chromeos">
45 <template is="dom-if" route-path="/cupsPrinters"> 43 <template is="dom-if" route-path="/cupsPrinters">
46 <settings-subpage 44 <settings-subpage
47 associated-control="[[$$('#cupsPrinters')]]" 45 associated-control="[[$$('#cupsPrinters')]]"
48 page-title="$i18n{cupsPrintersTitle}" 46 page-title="$i18n{cupsPrintersTitle}"
49 search-label="$i18n{searchLabel}" 47 search-label="$i18n{searchLabel}"
50 search-term="{{searchTerm}}"> 48 search-term="{{searchTerm}}">
51 <settings-cups-printers printers="{{cupsPrinters}}" 49 <settings-cups-printers printers="{{cupsPrinters}}"
(...skipping 13 matching lines...) Expand all
65 associated-control="[[$$('#cloudPrinters')]]" 63 associated-control="[[$$('#cloudPrinters')]]"
66 page-title="$i18n{cloudPrintersTitle}"> 64 page-title="$i18n{cloudPrintersTitle}">
67 <settings-cloud-printers prefs="{{prefs}}"> 65 <settings-cloud-printers prefs="{{prefs}}">
68 </settings-cloud-printers> 66 </settings-cloud-printers>
69 </settings-subpage> 67 </settings-subpage>
70 </template> 68 </template>
71 </settings-animated-pages> 69 </settings-animated-pages>
72 </template> 70 </template>
73 <script src="printing_page.js"></script> 71 <script src="printing_page.js"></script>
74 </dom-module> 72 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698