Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_siminfo.html

Issue 2888003002: Settings: Network: Fix flex layout (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
5 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
11 <link rel="import" href="../icons.html"> 12 <link rel="import" href="../icons.html">
12 <link rel="import" href="internet_shared_css.html"> 13 <link rel="import" href="internet_shared_css.html">
13 14
14 <dom-module id="network-siminfo"> 15 <dom-module id="network-siminfo">
15 <template> 16 <template>
16 <style include="settings-shared internet-shared"> 17 <style include="settings-shared internet-shared iron-flex">
17 iron-icon { 18 iron-icon {
18 -webkit-margin-end: 10px; 19 -webkit-margin-end: 10px;
19 } 20 }
20 21
21 .dialog-error { 22 .dialog-error {
22 color: red; 23 color: red;
23 font-size: 125%; 24 font-size: 125%;
24 font-weight: 500; 25 font-weight: 500;
25 margin-top: 10px; 26 margin-top: 10px;
26 } 27 }
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 </div> 189 </div>
189 <div class="button-container"> 190 <div class="button-container">
190 <paper-button on-tap="sendUnlockPuk_"> 191 <paper-button on-tap="sendUnlockPuk_">
191 $i18n{networkSimUnlock} 192 $i18n{networkSimUnlock}
192 </paper-button> 193 </paper-button>
193 </div> 194 </div>
194 </dialog> 195 </dialog>
195 </template> 196 </template>
196 <script src="network_siminfo.js"></script> 197 <script src="network_siminfo.js"></script>
197 </dom-module> 198 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698