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

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html

Issue 2002363002: MD Settings: make bluetooth add device dialog prettier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
index ca8cb0c31c052c8b9ec5b4d75a79c991fb9038c2..1579a18631358e0c020515729852fc3224cb9b34 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
@@ -14,19 +14,12 @@
<dom-module id="bluetooth-device-dialog">
<template>
<style include="settings-shared">
- #dialogFooterDiv {
- height: 40px;
- margin: 0 20px;
- }
-
#dialogMessage {
margin-bottom: 10px;
}
#dialogDeviceList {
- -webkit-margin-start: 4px;
height: 210px;
- margin-bottom: 20px;
overflow-y: auto;
}
@@ -94,20 +87,18 @@
<div class="title">[[getTitle_(dialogType)]]</div>
<div class="body">
<template is="dom-if" if="[[isDialogType_(dialogType, 'addDevice')]]">
- <div class="settings-box flex">
- <div id="dialogDeviceList" class="settings-box layout vertical"
- on-device-event="onDeviceEvent_">
- <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]">
- $i18n{bluetoothNoDevices}
- </span>
- <iron-selector class="flex">
- <template is="dom-repeat" items="[[deviceList]]"
- filter="deviceNotPaired_" observe="paired">
- <bluetooth-device-list-item device="[[item]]">
- </bluetooth-device-list-item>
- </template>
- </iron-selector>
- </div>
+ <div id="dialogDeviceList" class="layout vertical"
+ on-device-event="onDeviceEvent_">
+ <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]">
+ $i18n{bluetoothNoDevices}
+ </span>
+ <iron-selector class="flex">
+ <template is="dom-repeat" items="[[deviceList]]"
+ filter="deviceNotPaired_" observe="paired">
+ <bluetooth-device-list-item device="[[item]]">
+ </bluetooth-device-list-item>
+ </template>
+ </iron-selector>
</div>
</template>
<template is="dom-if" if="[[isDialogType_(dialogType, 'pairDevice')]]">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698