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

Side by Side Diff: chrome/browser/resources/settings/site_settings/site_list.html

Issue 2716233002: MD Settings: add "More actions..." text to all vertical 3-dot menus (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
7 <link rel="import" href="../i18n_setup.html"> 7 <link rel="import" href="../i18n_setup.html">
8 <link rel="import" href="../icons.html"> 8 <link rel="import" href="../icons.html">
9 <link rel="import" href="../route.html"> 9 <link rel="import" href="../route.html">
10 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 >[[computeSiteDescription_(item)]]</div> 73 >[[computeSiteDescription_(item)]]</div>
74 </div> 74 </div>
75 </div> 75 </div>
76 76
77 <template is="dom-if" if="[[!!computeIconControlledBy_(item)]]"> 77 <template is="dom-if" if="[[!!computeIconControlledBy_(item)]]">
78 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon> 78 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon>
79 </template> 79 </template>
80 80
81 <paper-icon-button id="dots" icon="cr:more-vert" 81 <paper-icon-button id="dots" icon="cr:more-vert"
82 hidden="[[isActionMenuHidden_(item.source)]]" 82 hidden="[[isActionMenuHidden_(item.source)]]"
83 on-tap="onShowActionMenuTap_"> 83 on-tap="onShowActionMenuTap_" title="$i18n{moreActions}">
84 </paper-icon-button> 84 </paper-icon-button>
85 <template is="dom-if" if="[[enableSiteSettings_]]"> 85 <template is="dom-if" if="[[enableSiteSettings_]]">
86 <div on-tap="onOriginTap_" actionable> 86 <div on-tap="onOriginTap_" actionable>
87 <button class="subpage-arrow" is="paper-icon-button-light" 87 <button class="subpage-arrow" is="paper-icon-button-light"
88 aria-label="[[item.displayName]]" 88 aria-label="[[item.displayName]]"
89 aria-describedby="siteDescription"></button> 89 aria-describedby="siteDescription"></button>
90 </div> 90 </div>
91 </template> 91 </template>
92 </div> 92 </div>
93 </template> 93 </template>
94 </div> 94 </div>
95 </div> 95 </div>
96 </template> 96 </template>
97 <script src="site_list.js"></script> 97 <script src="site_list.js"></script>
98 </dom-module> 98 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698