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

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

Issue 2206363003: [MD History] Use proper shadows for cards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_rounding
Patch Set: address comment, fix test Created 4 years, 4 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/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/paper-styles/shadow.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
4 <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-collapse/iron-coll apse.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/iron-flex-layout/iron-f lex-layout.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
7 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
8 <link rel="import" href="chrome://history/browser_service.html"> 8 <link rel="import" href="chrome://history/browser_service.html">
9 <link rel="import" href="chrome://history/constants.html"> 9 <link rel="import" href="chrome://history/constants.html">
10 <link rel="import" href="chrome://history/searched_label.html"> 10 <link rel="import" href="chrome://history/searched_label.html">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 #dropdown-indicator { 45 #dropdown-indicator {
46 -webkit-margin-end: 12px; 46 -webkit-margin-end: 12px;
47 color: var(--secondary-text-color); 47 color: var(--secondary-text-color);
48 height: 20px; 48 height: 20px;
49 width: 20px; 49 width: 20px;
50 } 50 }
51 51
52 #collapse { 52 #collapse {
53 border-bottom: 1px solid var(--card-border-color);
54 overflow: hidden; 53 overflow: hidden;
55 } 54 }
56 55
57 #history-item-container { 56 #history-item-container {
57 @apply(--card-box-shadow);
58 background: #fff; 58 background: #fff;
59 border: 1px solid var(--card-border-color);
60 border-radius: 2px; 59 border-radius: 2px;
61 } 60 }
62 61
63 #item-container { 62 #item-container {
64 @apply(--layout-center); 63 @apply(--layout-center);
65 @apply(--layout-horizontal); 64 @apply(--layout-horizontal);
66 min-height: var(--item-height); 65 min-height: var(--item-height);
67 } 66 }
68 67
69 #window-separator { 68 #window-separator {
(...skipping 30 matching lines...) Expand all
100 </template> 99 </template>
101 <div class="item-container"> 100 <div class="item-container">
102 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> 101 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p>
103 </div> 102 </div>
104 </div> 103 </div>
105 </iron-collapse> 104 </iron-collapse>
106 </div> 105 </div>
107 </template> 106 </template>
108 <script src="chrome://history/synced_device_card.js"></script> 107 <script src="chrome://history/synced_device_card.js"></script>
109 </dom-module> 108 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698