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

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

Issue 2894773002: [MD settings] remove unwanted separator line (Closed)
Patch Set: mirror icons Created 3 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
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 96ff3be197194ff0bcfda9b1099ec0c72e183b1f..ada6c354079f04ef15f1dc6dbb11197f9fc94463 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
@@ -45,15 +45,6 @@
color: var(--google-green-500);
}
- #subpageDiv {
- -webkit-border-start: var(--cr-separator-line);
- -webkit-padding-start: 20px;
- }
-
- :host-context([dir=rtl]) #subpageDiv > button {
- transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
- }
-
iron-icon {
height: 24px;
width: 24px;
@@ -87,15 +78,13 @@
</template>
<template is="dom-if"
if="[[isSubpageButtonVisible_(networkState, showButtons)]]">
- <div id="subpageDiv" class="layout horizontal">
- <!-- iron-list captures 'enter' so handle it here explicitly. -->
- <iron-a11y-keys keys="enter" on-keys-pressed="fireShowDetails_">
- </iron-a11y-keys>
- <button class="subpage-arrow" is="paper-icon-button-light"
- on-tap="fireShowDetails_" tabindex$="[[tabindex]]"
- aria-label$="[[ariaLabel]]">
- </button>
- </div>
+ <!-- iron-list captures 'enter' so handle it here explicitly. -->
+ <iron-a11y-keys keys="enter" on-keys-pressed="fireShowDetails_">
+ </iron-a11y-keys>
+ <button class="subpage-arrow" is="paper-icon-button-light"
+ on-tap="fireShowDetails_" tabindex$="[[tabindex]]"
+ aria-label$="[[ariaLabel]]">
+ </button>
</template>
</div>
</template>

Powered by Google App Engine
This is Rietveld 408576698