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

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html

Issue 2578793004: MD Settings: Fix size and padding of expand button (Closed)
Patch Set: Rebase Created 4 years 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/cr_scrollable_behavior.h tml"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml">
3 <link rel="import" href="chrome://resources/html/cr.html"> 3 <link rel="import" href="chrome://resources/html/cr.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <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-flex-layout/classe s/iron-flex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
7 <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-button/paper-butt on.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">
11 <link rel="import" href="/settings_shared_css.html"> 11 <link rel="import" href="/settings_shared_css.html">
12 12
13 <dom-module id="bluetooth-device-dialog"> 13 <dom-module id="bluetooth-device-dialog">
14 <template> 14 <template>
15 <style include="settings-shared"> 15 <style include="settings-shared">
16 #pairing { 16 #pairing {
17 margin-bottom: 10px; 17 margin-bottom: 10px;
18 } 18 }
19 19
20 #pairing paper-input { 20 #pairing paper-input {
21 text-align: center; 21 text-align: center;
22 } 22 }
23 23
24 #pinDiv { 24 #pinDiv {
25 margin-top: 10px; 25 margin-top: 10px;
26 } 26 }
27 27
28 paper-spinner { 28 paper-spinner {
29 @apply(--cr-icon-size); 29 @apply(--cr-icon-height-width);
dschuyler 2016/12/16 22:41:41 Is having a literal name->contents desired? i.e.
stevenjb 2016/12/16 22:56:10 As I'm sure you've now noticed we use 'size' for t
dschuyler 2016/12/17 01:13:54 I don't know, maybe -dimensions or -area. That mig
stevenjb 2016/12/19 18:20:21 --cr-icon-size = 8px --cr-icon-height-width = { he
30 margin: 0 10px; 30 margin: 0 10px;
31 } 31 }
32 32
33 .dialog-message { 33 .dialog-message {
34 margin-bottom: 10px; 34 margin-bottom: 10px;
35 } 35 }
36 36
37 div.contents { 37 div.contents {
38 height: 250px; 38 height: 250px;
39 } 39 }
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 </template> 167 </template>
168 <template is="dom-if" if="[[isDialogType_('connectError', dialogId)]]"> 168 <template is="dom-if" if="[[isDialogType_('connectError', dialogId)]]">
169 <paper-button on-tap="close">$i18n{bluetoothDismiss} 169 <paper-button on-tap="close">$i18n{bluetoothDismiss}
170 </paper-button> 170 </paper-button>
171 </template> 171 </template>
172 </div> 172 </div>
173 </dialog> 173 </dialog>
174 </template> 174 </template>
175 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script> 175 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script>
176 </dom-module> 176 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698