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

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

Issue 2390053002: [MD settings] use arrow-forward to switch direction in rtl (Closed)
Patch Set: in person changes 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/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="/controls/settings_dropdown_menu.html"> 7 <link rel="import" href="/controls/settings_dropdown_menu.html">
8 <link rel="import" href="/device_page/device_page_browser_proxy.html"> 8 <link rel="import" href="/device_page/device_page_browser_proxy.html">
9 <link rel="import" href="/device_page/display.html"> 9 <link rel="import" href="/device_page/display.html">
10 <link rel="import" href="/device_page/keyboard.html"> 10 <link rel="import" href="/device_page/keyboard.html">
(...skipping 11 matching lines...) Expand all
22 <style include="settings-shared"></style> 22 <style include="settings-shared"></style>
23 <settings-animated-pages id="pages" section="device"> 23 <settings-animated-pages id="pages" section="device">
24 <neon-animatable id="main" route-path="default"> 24 <neon-animatable id="main" route-path="default">
25 <div id="pointersRow" class="settings-box first" 25 <div id="pointersRow" class="settings-box first"
26 on-tap="onPointersTap_" actionable> 26 on-tap="onPointersTap_" actionable>
27 <iron-icon icon="[[getPointersIcon_(hasMouse_, hasTouchpad_)]]"> 27 <iron-icon icon="[[getPointersIcon_(hasMouse_, hasTouchpad_)]]">
28 </iron-icon> 28 </iron-icon>
29 <div class="middle"> 29 <div class="middle">
30 [[getPointersTitle_(hasMouse_, hasTouchpad_)]] 30 [[getPointersTitle_(hasMouse_, hasTouchpad_)]]
31 </div> 31 </div>
32 <button class="icon-arrow-right" is="paper-icon-button-light"> 32 <button class="icon-arrow-forward" is="paper-icon-button-light">
33 </button> 33 </button>
34 </div> 34 </div>
35 <div id="keyboardRow" class="settings-box" on-tap="onKeyboardTap_" 35 <div id="keyboardRow" class="settings-box" on-tap="onKeyboardTap_"
36 actionable> 36 actionable>
37 <iron-icon icon="settings:keyboard"></iron-icon> 37 <iron-icon icon="settings:keyboard"></iron-icon>
38 <div class="middle">$i18n{keyboardTitle}</div> 38 <div class="middle">$i18n{keyboardTitle}</div>
39 <button class="icon-arrow-right" is="paper-icon-button-light"> 39 <button class="icon-arrow-forward" is="paper-icon-button-light">
40 </button> 40 </button>
41 </div> 41 </div>
42 <template is="dom-if" if=[[stylusAllowed_]]> 42 <template is="dom-if" if=[[stylusAllowed_]]>
43 <div id="stylusRow" class="settings-box" on-tap="onStylusTap_" 43 <div id="stylusRow" class="settings-box" on-tap="onStylusTap_"
44 actionable> 44 actionable>
45 <iron-icon icon="settings:note"></iron-icon> 45 <iron-icon icon="settings:note"></iron-icon>
46 <div class="middle">$i18n{stylusTitle}</div> 46 <div class="middle">$i18n{stylusTitle}</div>
47 <button class="icon-arrow-right" is="paper-icon-button-light"> 47 <button class="icon-arrow-forward" is="paper-icon-button-light">
48 </button> 48 </button>
49 </div> 49 </div>
50 </template> 50 </template>
51 <div id="displayRow" class="settings-box" on-tap="onDisplayTap_" 51 <div id="displayRow" class="settings-box" on-tap="onDisplayTap_"
52 actionable> 52 actionable>
53 <iron-icon icon="settings:desktop-windows"></iron-icon> 53 <iron-icon icon="settings:desktop-windows"></iron-icon>
54 <div class="middle">$i18n{displayTitle}</div> 54 <div class="middle">$i18n{displayTitle}</div>
55 <button class="icon-arrow-right" is="paper-icon-button-light"> 55 <button class="icon-arrow-forward" is="paper-icon-button-light">
56 </button> 56 </button>
57 </div> 57 </div>
58 </neon-animatable> 58 </neon-animatable>
59 <template is="dom-if" route-path="/pointer-overlay"> 59 <template is="dom-if" route-path="/pointer-overlay">
60 <settings-subpage 60 <settings-subpage
61 associated-control="[[$$('#pointersRow')]]" 61 associated-control="[[$$('#pointersRow')]]"
62 page-title="[[getPointersTitle_(hasMouse_, hasTouchpad_)]]"> 62 page-title="[[getPointersTitle_(hasMouse_, hasTouchpad_)]]">
63 <settings-pointers prefs="{{prefs}}" 63 <settings-pointers prefs="{{prefs}}"
64 has-mouse="[[hasMouse_]]" has-touchpad="[[hasTouchpad_]]"> 64 has-mouse="[[hasMouse_]]" has-touchpad="[[hasTouchpad_]]">
65 </settings-pointers> 65 </settings-pointers>
(...skipping 19 matching lines...) Expand all
85 <settings-subpage 85 <settings-subpage
86 associated-control="[[$$('#displayRow')]]" 86 associated-control="[[$$('#displayRow')]]"
87 page-title="$i18n{displayTitle}"> 87 page-title="$i18n{displayTitle}">
88 <settings-display></settings-display> 88 <settings-display></settings-display>
89 </settings-subpage> 89 </settings-subpage>
90 </template> 90 </template>
91 </settings-animated-pages> 91 </settings-animated-pages>
92 </template> 92 </template>
93 <script src="device_page.js"></script> 93 <script src="device_page.js"></script>
94 </dom-module> 94 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698