| OLD | NEW |
| 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/classe
s/iron-flex-layout.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"> |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 /* .confirm indicates a confirmation passkey. */ | 63 /* .confirm indicates a confirmation passkey. */ |
| 64 span.confirm { | 64 span.confirm { |
| 65 color: #999; | 65 color: #999; |
| 66 font-size: 153.85%; /* 20px / 13px */ | 66 font-size: 153.85%; /* 20px / 13px */ |
| 67 font-weight: 600; /* semibold */ | 67 font-weight: 600; /* semibold */ |
| 68 margin: 0 20px; | 68 margin: 0 20px; |
| 69 } | 69 } |
| 70 </style> | 70 </style> |
| 71 <dialog is="cr-dialog" id="dialog" on-cancel="onDialogCanceled_" | 71 <dialog is="cr-dialog" id="dialog" on-cancel="onDialogCanceled_" |
| 72 on-closed="onDialogCanceled_"> | 72 close-text="$i18n{close}" on-closed="onDialogCanceled_"> |
| 73 <div class="title">$i18n{bluetoothPairDevicePageTitle}</div> | 73 <div class="title">$i18n{bluetoothPairDevicePageTitle}</div> |
| 74 <div class="body"> | 74 <div class="body"> |
| 75 <div class="contents layout vertical center center-justified"> | 75 <div class="contents layout vertical center center-justified"> |
| 76 <template is="dom-if" if="[[isDialogType_(dialogId, 'pairDevice')]]"> | 76 <template is="dom-if" if="[[isDialogType_(dialogId, 'pairDevice')]]"> |
| 77 <div id="pairing" class="settings-box first layout vertical center | 77 <div id="pairing" class="settings-box first layout vertical center |
| 78 center-justified"> | 78 center-justified"> |
| 79 <div class="dialog-message"> | 79 <div class="dialog-message"> |
| 80 [[getMessage_(pairingDevice, pairingEvent_)]] | 80 [[getMessage_(pairingDevice, pairingEvent_)]] |
| 81 </div> | 81 </div> |
| 82 <div hidden$="[[!showEnterPincode_(pairingEvent_)]]"> | 82 <div hidden$="[[!showEnterPincode_(pairingEvent_)]]"> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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> |
| OLD | NEW |