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

Side by Side Diff: chrome/browser/resources/settings/search_engines_page/omnibox_extension_entry.html

Issue 2898023002: MD Settings: Fix omnibox search engine name misalignment. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/search_engines_page/search_engine_entry_css.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 4 <link rel="import" href="chrome://resources/cr_elements/icons.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.html">
7 <link rel="import" href="../extension_control_browser_proxy.html"> 7 <link rel="import" href="../extension_control_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="search_engine_entry_css.html"> 9 <link rel="import" href="search_engine_entry_css.html">
10 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 .favicon-image + span { 26 .favicon-image + span {
27 -webkit-margin-end: 8px; 27 -webkit-margin-end: 8px;
28 } 28 }
29 </style> 29 </style>
30 <div class="list-item" focus-row-container> 30 <div class="list-item" focus-row-container>
31 <div class="name-column"> 31 <div class="name-column">
32 <span class="favicon-image" 32 <span class="favicon-image"
33 style="background-image: [[getIconSet_(engine.iconURL)]]"></span> 33 style="background-image: [[getIconSet_(engine.iconURL)]]"></span>
34 <span class="name">[[engine.displayName]]</span> 34 <span>[[engine.displayName]]</span>
35 </div> 35 </div>
36 <div class="keyword-column">[[engine.keyword]]</div> 36 <div class="keyword-column">[[engine.keyword]]</div>
37 <paper-icon-button icon="cr:more-vert" focus-row-control 37 <paper-icon-button icon="cr:more-vert" focus-row-control
38 on-tap="onDotsTap_" title="$i18n{moreActions}" 38 on-tap="onDotsTap_" title="$i18n{moreActions}"
39 focus-type="cr-menu-button"> 39 focus-type="cr-menu-button">
40 </paper-icon-button> 40 </paper-icon-button>
41 <dialog is="cr-action-menu"> 41 <dialog is="cr-action-menu">
42 <button class="dropdown-item" role="option" on-tap="onManageTap_" 42 <button class="dropdown-item" role="option" on-tap="onManageTap_"
43 id="manage"> 43 id="manage">
44 $i18n{searchEnginesManageExtension} 44 $i18n{searchEnginesManageExtension}
45 </button> 45 </button>
46 <button class="dropdown-item" role="option" on-tap="onDisableTap_" 46 <button class="dropdown-item" role="option" on-tap="onDisableTap_"
47 id="disable"> 47 id="disable">
48 $i18n{disable} 48 $i18n{disable}
49 </button> 49 </button>
50 </dialog> 50 </dialog>
51 </div> 51 </div>
52 </template> 52 </template>
53 <script src="omnibox_extension_entry.js"></script> 53 <script src="omnibox_extension_entry.js"></script>
54 </dom-module> 54 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/search_engines_page/search_engine_entry_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698