| 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-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-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <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-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 8 <link rel="import" href="chrome://resources/html/icon.html"> | 8 <link rel="import" href="chrome://resources/html/icon.html"> |
| 9 <link rel="import" href="chrome://resources/html/util.html"> | 9 <link rel="import" href="chrome://resources/html/util.html"> |
| 10 <link rel="import" href="chrome://history/browser_service.html"> | 10 <link rel="import" href="chrome://history/browser_service.html"> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 :host([is-card-start][is-card-end]) #main-container { | 38 :host([is-card-start][is-card-end]) #main-container { |
| 39 border-radius: 2px; | 39 border-radius: 2px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 #date-accessed { | 42 #date-accessed { |
| 43 display: none; | 43 display: none; |
| 44 } | 44 } |
| 45 | 45 |
| 46 :host([is-card-start]) #date-accessed { | 46 :host([is-card-start]) #date-accessed { |
| 47 display: flex; | 47 display: block; |
| 48 } | 48 } |
| 49 | 49 |
| 50 #item-container { | 50 #item-container { |
| 51 align-items: center; | 51 align-items: center; |
| 52 display: flex; | 52 display: flex; |
| 53 min-height: var(--item-height); | 53 min-height: var(--item-height); |
| 54 } | 54 } |
| 55 | 55 |
| 56 :host([is-card-start]) #item-container { | 56 :host([is-card-start]) #item-container { |
| 57 padding-top: var(--card-first-last-item-padding); | 57 padding-top: var(--card-first-last-item-padding); |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 <div></div> | 204 <div></div> |
| 205 <div></div> | 205 <div></div> |
| 206 </button> | 206 </button> |
| 207 </div> | 207 </div> |
| 208 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 208 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 209 </div> | 209 </div> |
| 210 </div> | 210 </div> |
| 211 </template> | 211 </template> |
| 212 <script src="chrome://history/history_item.js"></script> | 212 <script src="chrome://history/history_item.js"></script> |
| 213 </dom-module> | 213 </dom-module> |
| OLD | NEW |