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

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

Issue 2643653003: MD Settings: Bluetooth: Use labels instead of icons to show connection status. (Closed)
Patch Set: Created 3 years, 11 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_scrollable_behavior.h tml"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml">
2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html"> 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.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-collapse/iron-coll apse.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
6 <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-flex-layout/classe s/iron-flex-layout.html">
7 <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/iron-list/iron-list.htm l">
8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.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-button/paper-butt on.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 12 matching lines...) Expand all
23 23
24 #deviceList { 24 #deviceList {
25 max-height: 300px; 25 max-height: 300px;
26 overflow-y: auto; 26 overflow-y: auto;
27 } 27 }
28 28
29 .no-devices { 29 .no-devices {
30 min-height: var(--settings-row-min-height); 30 min-height: var(--settings-row-min-height);
31 } 31 }
32 32
33 #container iron-list > bluetooth-device-list-item:not(:first-of-type) {
34 border-top: var(--settings-separator-line);
35 }
stevenjb 2017/01/18 18:06:17 Mocks have been inconsistent WRT separators in lis
fukino 2017/01/19 01:06:17 Thank you for the confirmation! I removed this cha
36
33 settings-bluetooth-add-device-dialog, 37 settings-bluetooth-add-device-dialog,
34 settings-bluetooth-pair-device-dialog { 38 settings-bluetooth-pair-device-dialog {
35 height: 400px; 39 height: 400px;
36 padding: 0; 40 padding: 0;
37 width: 500px; 41 width: 500px;
38 } 42 }
39 </style> 43 </style>
40 <settings-animated-pages id="pages" section="bluetooth"> 44 <settings-animated-pages id="pages" section="bluetooth">
41 <neon-animatable route-path="default"> 45 <neon-animatable route-path="default">
42 <div class="settings-box first" actionable 46 <div class="settings-box first" actionable
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 on-device-event="onDeviceEvent_" 104 on-device-event="onDeviceEvent_"
101 on-response="onResponse_" 105 on-response="onResponse_"
102 pairing-device="[[pairingDevice_]]" 106 pairing-device="[[pairingDevice_]]"
103 pairing-event="[[pairingEvent_]]"> 107 pairing-event="[[pairingEvent_]]">
104 </bluetooth-device-dialog> 108 </bluetooth-device-dialog>
105 </template> 109 </template>
106 110
107 </template> 111 </template>
108 <script src="bluetooth_page.js"></script> 112 <script src="bluetooth_page.js"></script>
109 </dom-module> 113 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698