Chromium Code Reviews

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html

Issue 2848443002: MD Settings: Remove usage of deprecated iron-flex-layout.html, for CrOS. (Closed)
Patch Set: Fix more Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml">
3 <link rel="import" href="chrome://resources/html/cr.html"> 3 <link rel="import" href="chrome://resources/html/cr.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
9 <link rel="import" href="../bluetooth_page/bluetooth_device_list_item.html"> 9 <link rel="import" href="../bluetooth_page/bluetooth_device_list_item.html">
10 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
11 11
12 <dom-module id="bluetooth-device-dialog"> 12 <dom-module id="bluetooth-device-dialog">
13 <template> 13 <template>
14 <style include="settings-shared"> 14 <style include="settings-shared iron-flex iron-flex-alignment">
stevenjb 2017/05/01 19:07:30 -alignment not needed? (center and center-justifie
dpapad 2017/05/01 19:38:43 There are more rules in iron-flex-alignment, which
stevenjb 2017/05/01 20:20:42 That's duplicated in iron-flex also (it looks like
dpapad 2017/05/01 20:41:59 Done. Removed iron-flex-alignment.
15 #pairing { 15 #pairing {
16 margin-bottom: 10px; 16 margin-bottom: 10px;
17 } 17 }
18 18
19 #pairing paper-input { 19 #pairing paper-input {
20 text-align: center; 20 text-align: center;
21 } 21 }
22 22
23 #pinDiv { 23 #pinDiv {
24 margin-top: 10px; 24 margin-top: 10px;
(...skipping 106 matching lines...)
131 </template> 131 </template>
132 <template is="dom-if" if="[[isDialogType_('connectError', dialogId)]]"> 132 <template is="dom-if" if="[[isDialogType_('connectError', dialogId)]]">
133 <paper-button on-tap="close">$i18n{bluetoothDismiss} 133 <paper-button on-tap="close">$i18n{bluetoothDismiss}
134 </paper-button> 134 </paper-button>
135 </template> 135 </template>
136 </div> 136 </div>
137 </dialog> 137 </dialog>
138 </template> 138 </template>
139 <script src="bluetooth_device_dialog.js"></script> 139 <script src="bluetooth_device_dialog.js"></script>
140 </dom-module> 140 </dom-module>
OLDNEW

Powered by Google App Engine