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

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

Issue 1875413002: MD Settings: polish top-level bluetooth page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fixes Created 4 years, 8 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
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
index 55a16906fb95e02272d3a0b5451e409d54570578..6a98854b61251c499ca785bfa935c35b95f80ee3 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
@@ -7,10 +7,28 @@
<link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.html">
<dom-module id="bluetooth-device-list-item">
- <link rel="import" type="css" href="bluetooth_device_list_item.css">
+ <style>
+ iron-icon {
+ -webkit-padding-start: 10px;
+ }
+
+ span.name {
+ padding: 10px 0;
+ }
+
+ span.name[connected] {
+ font-weight: 500;
+ }
+
+ /* TODO(dbeam): combine with other similar styles. */
+ .dropdown-content {
+ background: white;
+ box-shadow: 0 2px 6px grey;
+ }
+ </style>
<template>
- <div id="outer" class="layout horizontal center"
- dropdown$="[[dropdownOpened]]" on-tap="itemTapped_">
+ <div class="flex layout horizontal center" dropdown$="[[dropdownOpened]]"
+ on-tap="itemTapped_">
<span class="name" connected$="[[device.connected]]">
[[getDeviceName_(device)]]
</span>

Powered by Google App Engine
This is Rietveld 408576698