OLD | NEW |
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 Loading... |
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 Loading... |
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> |
OLD | NEW |