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