| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.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/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> |
| 4 <link rel="import" href="/controls/settings_checkbox.html"> | 5 <link rel="import" href="/controls/settings_checkbox.html"> |
| 5 <link rel="import" href="/controls/settings_radio_group.html"> | 6 <link rel="import" href="/controls/settings_radio_group.html"> |
| 6 <link rel="import" href="/device_page/device_page_browser_proxy.html"> | 7 <link rel="import" href="/device_page/device_page_browser_proxy.html"> |
| 7 <link rel="import" href="/settings_shared_css.html"> | 8 <link rel="import" href="/settings_shared_css.html"> |
| 8 | 9 |
| 9 <dom-module id="settings-pointers"> | 10 <dom-module id="settings-pointers"> |
| 10 <template> | 11 <template> |
| 11 <style include="settings-shared"> | 12 <style include="iron-flex settings-shared"> |
| 12 .subsection > * { | 13 .subsection > * { |
| 13 -webkit-padding-end: 20px; | 14 -webkit-padding-end: 20px; |
| 14 -webkit-padding-start: 56px; | 15 -webkit-padding-start: 56px; |
| 15 } | 16 } |
| 16 | 17 |
| 17 .subsection h2 { | 18 .subsection h2 { |
| 18 padding: 0 20px; | 19 padding: 0 20px; |
| 19 } | 20 } |
| 20 </style> | 21 </style> |
| 21 <div id="mouse" hidden$="[[!hasMouse]]" | 22 <div id="mouse" hidden$="[[!hasMouse]]" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 on-keydown="onLearnMoreLinkActivated_"> | 80 on-keydown="onLearnMoreLinkActivated_"> |
| 80 $i18n{naturalScrollLearnMore} | 81 $i18n{naturalScrollLearnMore} |
| 81 </a> | 82 </a> |
| 82 </paper-radio-button> | 83 </paper-radio-button> |
| 83 </settings-radio-group> | 84 </settings-radio-group> |
| 84 </div> | 85 </div> |
| 85 </div> | 86 </div> |
| 86 </template> | 87 </template> |
| 87 <script src="pointers.js"></script> | 88 <script src="pointers.js"></script> |
| 88 </dom-module> | 89 </dom-module> |
| OLD | NEW |