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

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

Issue 2886603002: [MD settings] separate spacing of controlled-by icon and control-label (Closed)
Patch Set: review changes 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-icon/iron-icon.htm l"> 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/paper-button/paper-butt on.html"> 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-input/paper-input .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-toggle-button/pap er-toggle-button.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
(...skipping 30 matching lines...) Expand all
41 /* Siminfo is embedded; remove the padding. */ 41 /* Siminfo is embedded; remove the padding. */
42 .settings-box { 42 .settings-box {
43 padding: 0; 43 padding: 0;
44 } 44 }
45 45
46 .settings-box:first-of-type { 46 .settings-box:first-of-type {
47 border-top: none; 47 border-top: none;
48 } 48 }
49 49
50 paper-toggle-button { 50 paper-toggle-button {
51 -webkit-margin-start: var(--settings-control-spacing); 51 -webkit-margin-start: var(--settings-control-label-spacing);
52 } 52 }
53 </style> 53 </style>
54 54
55 <!-- SIM missing UI --> 55 <!-- SIM missing UI -->
56 <div class="settings-box two-line" 56 <div class="settings-box two-line"
57 hidden$="[[networkProperties.Cellular.SIMPresent]]"> 57 hidden$="[[networkProperties.Cellular.SIMPresent]]">
58 <div class="start layout horizontal center"> 58 <div class="start layout horizontal center">
59 <iron-icon icon="settings:sim-card-alert"></iron-icon> 59 <iron-icon icon="settings:sim-card-alert"></iron-icon>
60 <div class="error">$i18n{networkSimCardMissing}</div> 60 <div class="error">$i18n{networkSimCardMissing}</div>
61 </div> 61 </div>
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 </div> 188 </div>
189 <div class="button-container"> 189 <div class="button-container">
190 <paper-button on-tap="sendUnlockPuk_"> 190 <paper-button on-tap="sendUnlockPuk_">
191 $i18n{networkSimUnlock} 191 $i18n{networkSimUnlock}
192 </paper-button> 192 </paper-button>
193 </div> 193 </div>
194 </dialog> 194 </dialog>
195 </template> 195 </template>
196 <script src="network_siminfo.js"></script> 196 <script src="network_siminfo.js"></script>
197 </dom-module> 197 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698