| 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/icons.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 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-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.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-input/paper-input
.html"> |
| 8 <link rel="import" href="/icons.html"> | |
| 9 <link rel="import" href="internet_shared_css.html"> | 9 <link rel="import" href="internet_shared_css.html"> |
| 10 | 10 |
| 11 <dom-module id="network-siminfo"> | 11 <dom-module id="network-siminfo"> |
| 12 <template> | 12 <template> |
| 13 <style include="internet-shared"> | 13 <style include="internet-shared"> |
| 14 iron-icon { | 14 iron-icon { |
| 15 -webkit-margin-end: 10px; | 15 -webkit-margin-end: 10px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .dialog-error { | 18 .dialog-error { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 42 | 42 |
| 43 .settings-box:first-of-type { | 43 .settings-box:first-of-type { |
| 44 border-top: none; | 44 border-top: none; |
| 45 } | 45 } |
| 46 </style> | 46 </style> |
| 47 | 47 |
| 48 <!-- SIM missing UI --> | 48 <!-- SIM missing UI --> |
| 49 <div class="settings-box two-line" | 49 <div class="settings-box two-line" |
| 50 hidden$="[[networkProperties.Cellular.SIMPresent]]"> | 50 hidden$="[[networkProperties.Cellular.SIMPresent]]"> |
| 51 <div class="start layout horizontal center"> | 51 <div class="start layout horizontal center"> |
| 52 <iron-icon icon="settings:sim-card-alert"></iron-icon> | 52 <iron-icon icon="cr:sim-card-alert"></iron-icon> |
| 53 <div class="error">$i18n{networkSimCardMissing}</div> | 53 <div class="error">$i18n{networkSimCardMissing}</div> |
| 54 </div> | 54 </div> |
| 55 </div> | 55 </div> |
| 56 | 56 |
| 57 <!-- SIM locked --> | 57 <!-- SIM locked --> |
| 58 <div class="settings-box two-line" | 58 <div class="settings-box two-line" |
| 59 hidden$="[[!showSimLocked_(networkProperties)]]"> | 59 hidden$="[[!showSimLocked_(networkProperties)]]"> |
| 60 <div class="start layout horizontal center"> | 60 <div class="start layout horizontal center"> |
| 61 <iron-icon icon="settings:lock"></iron-icon> | 61 <iron-icon icon="cr:lock"></iron-icon> |
| 62 <div class="error">$i18n{networkSimCardLocked}</div> | 62 <div class="error">$i18n{networkSimCardLocked}</div> |
| 63 </div> | 63 </div> |
| 64 <div class="secondary-action"> | 64 <div class="secondary-action"> |
| 65 <paper-button on-tap="onUnlockPinTap_"> | 65 <paper-button on-tap="onUnlockPinTap_"> |
| 66 $i18n{networkSimUnlock} | 66 $i18n{networkSimUnlock} |
| 67 </paper-button> | 67 </paper-button> |
| 68 </div> | 68 </div> |
| 69 </div> | 69 </div> |
| 70 | 70 |
| 71 <!-- SIM unlocked --> | 71 <!-- SIM unlocked --> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 </div> | 166 </div> |
| 167 <div class="button-container"> | 167 <div class="button-container"> |
| 168 <paper-button on-tap="sendUnlockPuk_"> | 168 <paper-button on-tap="sendUnlockPuk_"> |
| 169 $i18n{networkSimUnlock} | 169 $i18n{networkSimUnlock} |
| 170 </paper-button> | 170 </paper-button> |
| 171 </div> | 171 </div> |
| 172 </dialog> | 172 </dialog> |
| 173 </template> | 173 </template> |
| 174 <script src="network_siminfo.js"></script> | 174 <script src="network_siminfo.js"></script> |
| 175 </dom-module> | 175 </dom-module> |
| OLD | NEW |