| 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-flex-layout/iron-f
lex-layout.html"> | |
| 4 <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"> |
| 5 <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"> |
| 6 <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"> |
| 7 <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"> |
| 8 <link rel="import" href="chrome://resources/html/icon.html"> | 7 <link rel="import" href="chrome://resources/html/icon.html"> |
| 9 <link rel="import" href="chrome://resources/html/util.html"> | 8 <link rel="import" href="chrome://resources/html/util.html"> |
| 10 <link rel="import" href="chrome://history/browser_service.html"> | 9 <link rel="import" href="chrome://history/browser_service.html"> |
| 11 <link rel="import" href="chrome://history/constants.html"> | 10 <link rel="import" href="chrome://history/constants.html"> |
| 12 <link rel="import" href="chrome://history/searched_label.html"> | 11 <link rel="import" href="chrome://history/searched_label.html"> |
| 13 <link rel="import" href="chrome://history/shared_style.html"> | 12 <link rel="import" href="chrome://history/shared_style.html"> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 41 | 40 |
| 42 #date-accessed { | 41 #date-accessed { |
| 43 display: none; | 42 display: none; |
| 44 } | 43 } |
| 45 | 44 |
| 46 :host([is-card-start]) #date-accessed { | 45 :host([is-card-start]) #date-accessed { |
| 47 display: flex; | 46 display: flex; |
| 48 } | 47 } |
| 49 | 48 |
| 50 #item-container { | 49 #item-container { |
| 51 @apply(--layout-center); | 50 align-items: center; |
| 52 @apply(--layout-horizontal); | 51 display: flex; |
| 53 min-height: var(--item-height); | 52 min-height: var(--item-height); |
| 54 } | 53 } |
| 55 | 54 |
| 56 :host([is-card-start]) #item-container { | 55 :host([is-card-start]) #item-container { |
| 57 padding-top: var(--card-first-last-item-padding); | 56 padding-top: var(--card-first-last-item-padding); |
| 58 } | 57 } |
| 59 | 58 |
| 60 :host([is-card-end]) #item-container { | 59 :host([is-card-end]) #item-container { |
| 61 padding-bottom: var(--card-first-last-item-padding); | 60 padding-bottom: var(--card-first-last-item-padding); |
| 62 } | 61 } |
| 63 | 62 |
| 64 #title-and-domain { | 63 #title-and-domain { |
| 65 @apply(--layout-center); | 64 align-items: center; |
| 66 @apply(--layout-flex); | 65 display: flex; |
| 67 @apply(--layout-horizontal); | 66 flex: 1; |
| 68 height: var(--item-height); | 67 height: var(--item-height); |
| 69 overflow: hidden; | 68 overflow: hidden; |
| 70 } | 69 } |
| 71 | 70 |
| 72 paper-checkbox { | 71 paper-checkbox { |
| 73 --paper-checkbox-checked-color: rgb(68, 136, 255); | 72 --paper-checkbox-checked-color: rgb(68, 136, 255); |
| 74 --paper-checkbox-size: 16px; | 73 --paper-checkbox-size: 16px; |
| 75 --paper-checkbox-unchecked-color: var(--secondary-text-color); | 74 --paper-checkbox-unchecked-color: var(--secondary-text-color); |
| 76 height: 16px; | 75 height: 16px; |
| 77 margin: 0 16px 0 20px; | 76 margin: 0 16px 0 20px; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 <div></div> | 177 <div></div> |
| 179 <div></div> | 178 <div></div> |
| 180 </button> | 179 </button> |
| 181 </div> | 180 </div> |
| 182 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 181 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 183 </div> | 182 </div> |
| 184 </div> | 183 </div> |
| 185 </template> | 184 </template> |
| 186 <script src="chrome://history/history_item.js"></script> | 185 <script src="chrome://history/history_item.js"></script> |
| 187 </dom-module> | 186 </dom-module> |
| OLD | NEW |