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

Side by Side Diff: chrome/browser/resources/settings/on_startup_page/startup_url_entry.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: add missing files 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 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/cr_lazy_render/cr_lazy_r ender.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
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-light.html">
7 <link rel="import" href="startup_urls_page_browser_proxy.html"> 7 <link rel="import" href="startup_urls_page_browser_proxy.html">
8 <link rel="import" href="../focus_row_behavior.html"> 8 <link rel="import" href="../focus_row_behavior.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 10
11 <dom-module id="settings-startup-url-entry"> 11 <dom-module id="settings-startup-url-entry">
12 <template> 12 <template>
13 <style include="settings-shared"> 13 <style include="settings-shared">
14 .hide-overflow { 14 .hide-overflow {
15 overflow: hidden; 15 overflow: hidden;
16 } 16 }
17 </style> 17 </style>
18 <div class="list-item" focus-row-container> 18 <div class="list-item" focus-row-container>
19 <div class="favicon-image" 19 <div class="favicon-image"
20 style="background-image: [[getIconSet_(model.url)]]"> 20 style="background-image: [[getIconSet_(model.url)]]">
21 </div> 21 </div>
22 <div class="middle hide-overflow"> 22 <div class="middle hide-overflow">
23 <div class="text-elide">[[model.title]]</div> 23 <div class="text-elide">[[model.title]]</div>
24 <div class="text-elide secondary">[[model.url]]</div> 24 <div class="text-elide secondary">[[model.url]]</div>
25 </div> 25 </div>
26 <template is="dom-if" if="[[editable]]"> 26 <template is="dom-if" if="[[editable]]">
27 <paper-icon-button id="dots" icon="cr:more-vert" on-tap="onDotsTap_" 27 <button is="paper-icon-button-light" id="dots" on-tap="onDotsTap_"
28 title="$i18n{moreActions}" focus-row-control focus-type="menu"> 28 title="$i18n{moreActions}" focus-row-control focus-type="menu"
29 </paper-icon-button> 29 class="icon-more-vert">
30 </button>
30 <template is="cr-lazy-render" id="menu"> 31 <template is="cr-lazy-render" id="menu">
31 <dialog is="cr-action-menu"> 32 <dialog is="cr-action-menu">
32 <button class="dropdown-item" role="option" on-tap="onEditTap_"> 33 <button class="dropdown-item" role="option" on-tap="onEditTap_">
33 $i18n{edit} 34 $i18n{edit}
34 </button> 35 </button>
35 <button class="dropdown-item" role="option" id="remove" 36 <button class="dropdown-item" role="option" id="remove"
36 on-tap="onRemoveTap_"> 37 on-tap="onRemoveTap_">
37 $i18n{onStartupRemove} 38 $i18n{onStartupRemove}
38 </button> 39 </button>
39 </dialog> 40 </dialog>
40 </template> 41 </template>
41 </template> 42 </template>
42 </div> 43 </div>
43 </template> 44 </template>
44 <script src="startup_url_entry.js"></script> 45 <script src="startup_url_entry.js"></script>
45 </dom-module> 46 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698