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

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

Issue 1963013002: [MD settings] layout of site settings sub-pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge with master Created 4 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/settings_resources.grd » ('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/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <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-item/paper-item.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html"> 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html">
8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
9 9
10 <dom-module id="settings-startup-url-entry"> 10 <dom-module id="settings-startup-url-entry">
11 <template> 11 <template>
12 <style include="settings-shared"> 12 <style include="settings-shared">
13 .favicon-image {
14 background-size: contain;
15 background-repeat: no-repeat;
16 height: 16px;
17 width: 16px;
18 }
19
20 .dropdown-content { 13 .dropdown-content {
21 background: white; 14 background: white;
22 box-shadow: 0 2px 6px grey; 15 box-shadow: 0 2px 6px grey;
23 } 16 }
24 17
25 paper-item:hover { 18 paper-item:hover {
26 background-color: var(--settings-hover-color); 19 background-color: var(--settings-hover-color);
27 } 20 }
28 </style> 21 </style>
29 <div class="list-item underbar"> 22 <div class="list-item underbar">
(...skipping 14 matching lines...) Expand all
44 <paper-item id="remove" on-tap="onRemoveTap_"> 37 <paper-item id="remove" on-tap="onRemoveTap_">
45 $i18n{onStartupRemove} 38 $i18n{onStartupRemove}
46 </paper-item> 39 </paper-item>
47 </div> 40 </div>
48 </iron-dropdown> 41 </iron-dropdown>
49 </template> 42 </template>
50 </div> 43 </div>
51 </template> 44 </template>
52 <script src="startup_url_entry.js"></script> 45 <script src="startup_url_entry.js"></script>
53 </dom-module> 46 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698