| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.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/classe
s/iron-flex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 7 <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-spinner/paper-spi
nner.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 9 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_device_li
st_item.html"> | 9 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_device_li
st_item.html"> |
| 10 <link rel="import" href="chrome://md-settings/icons.html"> | 10 <link rel="import" href="chrome://md-settings/icons.html"> |
| 11 <link rel="import" href="chrome://md-settings/settings_dialog.html"> | 11 <link rel="import" href="chrome://md-settings/settings_dialog.html"> |
| 12 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 12 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 13 | 13 |
| 14 <dom-module id="bluetooth-device-dialog"> | 14 <dom-module id="bluetooth-device-dialog"> |
| 15 <template> | 15 <template> |
| 16 <style include="settings-shared"> | 16 <style include="settings-shared"> |
| 17 #dialogMessage { | 17 #dialogMessage { |
| 18 margin-bottom: 10px; | 18 margin-bottom: 10px; |
| 19 } | 19 } |
| 20 | 20 |
| 21 #dialogDeviceList { | |
| 22 height: 210px; | |
| 23 overflow-y: auto; | |
| 24 } | |
| 25 | |
| 26 #pairing { | 21 #pairing { |
| 27 margin-bottom: 10px; | 22 margin-bottom: 10px; |
| 28 } | 23 } |
| 29 | 24 |
| 30 #pairing paper-input { | 25 #pairing paper-input { |
| 31 text-align: center; | 26 text-align: center; |
| 32 } | 27 } |
| 33 | 28 |
| 34 #pinDiv { | 29 #pinDiv { |
| 35 margin-top: 10px; | 30 margin-top: 10px; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]" | 148 <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]" |
| 154 on-tap="onCancelTap_"> | 149 on-tap="onCancelTap_"> |
| 155 $i18n{cancel} | 150 $i18n{cancel} |
| 156 </paper-button> | 151 </paper-button> |
| 157 </template> | 152 </template> |
| 158 </div> | 153 </div> |
| 159 </settings-dialog> | 154 </settings-dialog> |
| 160 </template> | 155 </template> |
| 161 <script src="chrome://md-settings/bluetooth_page/bluetooth_device_dialog.js"><
/script> | 156 <script src="chrome://md-settings/bluetooth_page/bluetooth_device_dialog.js"><
/script> |
| 162 </dom-module> | 157 </dom-module> |
| OLD | NEW |