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/network/cr_onc_types.htm
l"> | 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
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-a11y-keys/iron-a11
y-keys.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
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/iron-icon/iron-icon.htm
l"> |
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-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-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
9 <link rel="import" href="../icons.html"> | 9 <link rel="import" href="../icons.html"> |
10 <link rel="import" href="internet_shared_css.html"> | 10 <link rel="import" href="internet_shared_css.html"> |
(...skipping 28 matching lines...) Expand all Loading... |
39 /* Siminfo is embedded; remove the padding. */ | 39 /* Siminfo is embedded; remove the padding. */ |
40 .settings-box { | 40 .settings-box { |
41 padding: 0; | 41 padding: 0; |
42 } | 42 } |
43 | 43 |
44 .settings-box:first-of-type { | 44 .settings-box:first-of-type { |
45 border-top: none; | 45 border-top: none; |
46 } | 46 } |
47 | 47 |
48 paper-toggle-button { | 48 paper-toggle-button { |
49 -webkit-margin-start: var(--checkbox-spacing); | 49 -webkit-margin-start: var(--settings-control-spacing); |
50 } | 50 } |
51 </style> | 51 </style> |
52 | 52 |
53 <!-- SIM missing UI --> | 53 <!-- SIM missing UI --> |
54 <div class="settings-box two-line" | 54 <div class="settings-box two-line" |
55 hidden$="[[networkProperties.Cellular.SIMPresent]]"> | 55 hidden$="[[networkProperties.Cellular.SIMPresent]]"> |
56 <div class="start layout horizontal center"> | 56 <div class="start layout horizontal center"> |
57 <iron-icon icon="settings:sim-card-alert"></iron-icon> | 57 <iron-icon icon="settings:sim-card-alert"></iron-icon> |
58 <div class="error">$i18n{networkSimCardMissing}</div> | 58 <div class="error">$i18n{networkSimCardMissing}</div> |
59 </div> | 59 </div> |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 </div> | 182 </div> |
183 <div class="button-container"> | 183 <div class="button-container"> |
184 <paper-button on-tap="sendUnlockPuk_"> | 184 <paper-button on-tap="sendUnlockPuk_"> |
185 $i18n{networkSimUnlock} | 185 $i18n{networkSimUnlock} |
186 </paper-button> | 186 </paper-button> |
187 </div> | 187 </div> |
188 </dialog> | 188 </dialog> |
189 </template> | 189 </template> |
190 <script src="network_siminfo.js"></script> | 190 <script src="network_siminfo.js"></script> |
191 </dom-module> | 191 </dom-module> |
OLD | NEW |