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

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

Issue 2221073004: Replace deprecated iron-flex-layout/classes with iron-flex-layout-class in MD Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo ^ Created 4 years, 4 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/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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698