| 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://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 5 <link rel="import" href="chrome://history/constants.html"> | 5 <link rel="import" href="chrome://history/constants.html"> |
| 6 <link rel="import" href="chrome://history/history_item.html"> | 6 <link rel="import" href="chrome://history/history_item.html"> |
| 7 <link rel="import" href="chrome://history/history_list_behavior.html"> | 7 <link rel="import" href="chrome://history/history_list_behavior.html"> |
| 8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
| 9 | 9 |
| 10 <dom-module id="history-grouped-list"> | 10 <dom-module id="history-grouped-list"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 .domain-heading { | 27 .domain-heading { |
| 28 align-items: center; | 28 align-items: center; |
| 29 display: flex; | 29 display: flex; |
| 30 height: var(--item-height); | 30 height: var(--item-height); |
| 31 padding: 0 20px; | 31 padding: 0 20px; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .domain-count { | 34 .domain-count { |
| 35 color: rgb(151, 156, 160); | 35 color: var(--secondary-text-color); |
| 36 padding-left: 10px; | 36 padding-left: 10px; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .domain-heading-text { | 39 .domain-heading-text { |
| 40 display: flex; | 40 display: flex; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .group-container { | 43 .group-container { |
| 44 @apply(--shadow-elevation-2dp); | 44 @apply(--shadow-elevation-2dp); |
| 45 background: #fff; | 45 background: #fff; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 </template> | 110 </template> |
| 111 </iron-collapse> | 111 </iron-collapse> |
| 112 </div> | 112 </div> |
| 113 </template> | 113 </template> |
| 114 </div> | 114 </div> |
| 115 </template> | 115 </template> |
| 116 </div> | 116 </div> |
| 117 </template> | 117 </template> |
| 118 <script src="chrome://history/grouped_list.js"></script> | 118 <script src="chrome://history/grouped_list.js"></script> |
| 119 </dom-module> | 119 </dom-module> |
| OLD | NEW |