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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_card.html

Issue 2278383002: [MD History] Use box-shadow to render card shadows everywhere. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disable_test
Patch Set: add comments Created 4 years, 3 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 | « chrome/browser/resources/md_history/shared_vars.html ('k') | no next file » | 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/polymer/v1_0/iron-collapse/iron-coll apse.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <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/paper-icon-button/paper -icon-button-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
6 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
7 <link rel="import" href="chrome://history/browser_service.html"> 8 <link rel="import" href="chrome://history/browser_service.html">
8 <link rel="import" href="chrome://history/constants.html"> 9 <link rel="import" href="chrome://history/constants.html">
9 <link rel="import" href="chrome://history/searched_label.html"> 10 <link rel="import" href="chrome://history/searched_label.html">
10 <link rel="import" href="chrome://history/shared_style.html"> 11 <link rel="import" href="chrome://history/shared_style.html">
11 12
12 <dom-module id="history-synced-device-card"> 13 <dom-module id="history-synced-device-card">
13 <template> 14 <template>
14 <style include="shared-style"> 15 <style include="shared-style">
15 :host { 16 :host {
(...skipping 21 matching lines...) Expand all
37 38
38 #menu-button { 39 #menu-button {
39 -webkit-margin-end: 8px; 40 -webkit-margin-end: 8px;
40 } 41 }
41 42
42 #collapse { 43 #collapse {
43 overflow: hidden; 44 overflow: hidden;
44 } 45 }
45 46
46 #history-item-container { 47 #history-item-container {
47 @apply(--card-box-shadow); 48 @apply(--shadow-elevation-2dp);
48 background: #fff; 49 background: #fff;
49 border-radius: 2px; 50 border-radius: 2px;
50 } 51 }
51 52
52 #item-container { 53 #item-container {
53 align-items: center; 54 align-items: center;
54 display: flex; 55 display: flex;
55 margin: 0 20px; 56 margin: 0 20px;
56 min-height: var(--item-height); 57 min-height: var(--item-height);
57 } 58 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 <div id="window-separator" 102 <div id="window-separator"
102 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> 103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
103 </div> 104 </div>
104 </template> 105 </template>
105 </div> 106 </div>
106 </iron-collapse> 107 </iron-collapse>
107 </div> 108 </div>
108 </template> 109 </template>
109 <script src="chrome://history/synced_device_card.js"></script> 110 <script src="chrome://history/synced_device_card.js"></script>
110 </dom-module> 111 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/shared_vars.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698