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

Side by Side Diff: chrome/browser/resources/md_history/grouped_list.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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 2 <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-icon/iron-icon.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
4 <link rel="import" href="chrome://history/constants.html"> 4 <link rel="import" href="chrome://history/constants.html">
5 <link rel="import" href="chrome://history/history_item.html"> 5 <link rel="import" href="chrome://history/history_item.html">
6 <link rel="import" href="chrome://history/history_list_behavior.html"> 6 <link rel="import" href="chrome://history/history_list_behavior.html">
7 <link rel="import" href="chrome://history/shared_style.html"> 7 <link rel="import" href="chrome://history/shared_style.html">
8 8
9 <dom-module id="history-grouped-list"> 9 <dom-module id="history-grouped-list">
10 <template> 10 <template>
(...skipping 22 matching lines...) Expand all
33 .domain-count { 33 .domain-count {
34 color: rgb(151, 156, 160); 34 color: rgb(151, 156, 160);
35 padding-left: 10px; 35 padding-left: 10px;
36 } 36 }
37 37
38 .domain-heading-text { 38 .domain-heading-text {
39 display: flex; 39 display: flex;
40 } 40 }
41 41
42 .group-container { 42 .group-container {
43 @apply(--card-box-shadow);
43 background: #fff; 44 background: #fff;
44 border: 1px solid var(--card-border-color);
45 border-bottom-width: 2px;
46 border-radius: 2px; 45 border-radius: 2px;
47 margin-bottom: var(--card-padding-between); 46 margin-bottom: var(--card-padding-between);
48 max-width: var(--card-max-width); 47 max-width: var(--card-max-width);
49 min-width: var(--card-min-width); 48 min-width: var(--card-min-width);
50 width: 100%; 49 width: 100%;
51 } 50 }
52 51
53 .card-title { 52 .card-title {
54 margin-bottom: var(--card-first-last-item-padding); 53 margin-bottom: var(--card-first-last-item-padding);
55 } 54 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 </template> 110 </template>
112 </iron-collapse> 111 </iron-collapse>
113 </div> 112 </div>
114 </template> 113 </template>
115 </div> 114 </div>
116 </template> 115 </template>
117 </div> 116 </div>
118 </template> 117 </template>
119 <script src="chrome://history/grouped_list.js"></script> 118 <script src="chrome://history/grouped_list.js"></script>
120 </dom-module> 119 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698