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

Unified Diff: ui/webui/resources/cr_elements/network/cr_network_list_item.html

Issue 2556253007: MD Settings: Fix internet focus and styling (Closed)
Patch Set: Restore cr:settings 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/network/cr_network_list_item.html
diff --git a/ui/webui/resources/cr_elements/network/cr_network_list_item.html b/ui/webui/resources/cr_elements/network/cr_network_list_item.html
index d4df05a90b00371c2e380d4e2c8fa395341ac900..5b93941280beb331da587ecdc73b5f973710a21e 100644
--- a/ui/webui/resources/cr_elements/network/cr_network_list_item.html
+++ b/ui/webui/resources/cr_elements/network/cr_network_list_item.html
@@ -1,7 +1,7 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
<link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.html">
<link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.html">
<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network_behavior.html">
@@ -116,11 +116,11 @@
</cr-policy-network-indicator>
</template>
<template is="dom-if"
- if="[[isSettingsButtonVisible_(networkState, showButtons)]]">
+ if="[[isSubpageButtonVisible_(networkState, showButtons)]]">
<div id="divButtons">
- <paper-icon-button icon="cr:settings" on-tap="fireShowDetails_"
- tabindex$="[[tabindex]]">
- </paper-icon-button>
+ <button class="subpage-arrow" is="paper-icon-button-light"
+ on-tap="fireShowDetails_" tabindex$="[[tabindex]]">
+ </button>
</div>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698