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

Unified Diff: chrome/browser/resources/settings/site_settings/protocol_handlers.html

Issue 2237823003: Site Settings Desktop: Implement USB devices section. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 4 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/site_settings/protocol_handlers.html
diff --git a/chrome/browser/resources/settings/site_settings/protocol_handlers.html b/chrome/browser/resources/settings/site_settings/protocol_handlers.html
index 19f7cf4d0563e628838c76505d2c1b46a9ed0b64..8b88ccc9587633146b176e309de921368d9a8eeb 100644
--- a/chrome/browser/resources/settings/site_settings/protocol_handlers.html
+++ b/chrome/browser/resources/settings/site_settings/protocol_handlers.html
@@ -18,7 +18,7 @@
display: block;
}
- .protocol {
+ .site-settings-header {
-webkit-margin-start: 20px;
margin-bottom: 15px;
margin-top: 15px;
@@ -33,12 +33,14 @@
</div>
<template is="dom-repeat" items="[[protocols]]" as="protocol">
- <div class="protocol">[[protocol.protocol]]</div>
+ <div class="site-settings-header">[[protocol.protocol]]</div>
<div class="list-frame menu-content vertical-list">
<template is="dom-repeat" items="[[protocol.handlers]]">
<div class="list-item">
+ <div class="favicon-image" style$="[[computeSiteIcon(item.host)]]">
+ </div>
<div class="middle" >
<div>[[item.host]]</div>
<div class="secondary"

Powered by Google App Engine
This is Rietveld 408576698