| 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/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <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-flex-layout/classe
s/iron-flex-layout.html"> |
| 5 <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/iron-selector/iron-sele
ctor.html"> |
| 6 <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-button/paper-butt
on.html"> |
| 7 <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-icon-button/paper
-icon-button.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="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 10 <link rel="import" href="/bluetooth_page/bluetooth_device_list_item.html"> | 10 <link rel="import" href="/bluetooth_page/bluetooth_device_list_item.html"> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 } | 69 } |
| 70 | 70 |
| 71 /* .confirm indicates a confirmation passkey. */ | 71 /* .confirm indicates a confirmation passkey. */ |
| 72 span.confirm { | 72 span.confirm { |
| 73 color: #999; | 73 color: #999; |
| 74 font-size: 20px; | 74 font-size: 20px; |
| 75 font-weight: 600; /* semibold */ | 75 font-weight: 600; /* semibold */ |
| 76 margin: 0 20px; | 76 margin: 0 20px; |
| 77 } | 77 } |
| 78 </style> | 78 </style> |
| 79 <dialog is="cr-dialog" id="dialog" class="layout vertical" | 79 <dialog is="cr-dialog" id="dialog" on-cancel="onDialogCanceled_"> |
| 80 on-cancel="onDialogCanceled_"> | |
| 81 <div class="title">[[getTitle_(dialogId)]]</div> | 80 <div class="title">[[getTitle_(dialogId)]]</div> |
| 82 <div class="body"> | 81 <div class="body"> |
| 83 <template is="dom-if" if="[[isDialogType_(dialogId, 'addDevice')]]"> | 82 <template is="dom-if" if="[[isDialogType_(dialogId, 'addDevice')]]"> |
| 84 <div id="dialogDeviceList" class="layout vertical" | 83 <div id="dialogDeviceList" class="layout vertical" |
| 85 on-device-event="onDeviceEvent_"> | 84 on-device-event="onDeviceEvent_"> |
| 86 <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]"> | 85 <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]"> |
| 87 $i18n{bluetoothNoDevices} | 86 $i18n{bluetoothNoDevices} |
| 88 </span> | 87 </span> |
| 89 <iron-selector class="flex"> | 88 <iron-selector class="flex"> |
| 90 <template is="dom-repeat" items="[[deviceList]]" | 89 <template is="dom-repeat" items="[[deviceList]]" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 </template> | 159 </template> |
| 161 <template is="dom-if" if="[[isDialogType_(dialogId, 'connectError')]]"> | 160 <template is="dom-if" if="[[isDialogType_(dialogId, 'connectError')]]"> |
| 162 <paper-button on-tap="close">$i18n{bluetoothDismiss} | 161 <paper-button on-tap="close">$i18n{bluetoothDismiss} |
| 163 </paper-button> | 162 </paper-button> |
| 164 </template> | 163 </template> |
| 165 </div> | 164 </div> |
| 166 </dialog> | 165 </dialog> |
| 167 </template> | 166 </template> |
| 168 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script> | 167 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script> |
| 169 </dom-module> | 168 </dom-module> |
| OLD | NEW |