| 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/cr/ui/focus_row.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.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-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 6 <link rel="import" href="chrome://resources/html/icon.html"> | 6 <link rel="import" href="chrome://resources/html/icon.html"> |
| 7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
| 8 <link rel="import" href="chrome://history/browser_service.html"> | 8 <link rel="import" href="chrome://history/browser_service.html"> |
| 9 <link rel="import" href="chrome://history/constants.html"> | 9 <link rel="import" href="chrome://history/constants.html"> |
| 10 <link rel="import" href="chrome://history/searched_label.html"> | 10 <link rel="import" href="chrome://history/searched_label.html"> |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 } | 114 } |
| 115 | 115 |
| 116 :host([selected]) #checkmark::after { | 116 :host([selected]) #checkmark::after { |
| 117 border-color: white; | 117 border-color: white; |
| 118 transform: scale(1) rotate(45deg); | 118 transform: scale(1) rotate(45deg); |
| 119 /* Only animate when showing checkmark. */ | 119 /* Only animate when showing checkmark. */ |
| 120 transition: transform 140ms ease-out; | 120 transition: transform 140ms ease-out; |
| 121 } | 121 } |
| 122 | 122 |
| 123 #time-accessed { | 123 #time-accessed { |
| 124 color: #646464; | 124 color: var(--history-item-time-color); |
| 125 min-width: 96px; | 125 min-width: 96px; |
| 126 } | 126 } |
| 127 | 127 |
| 128 #domain { | 128 #domain { |
| 129 -webkit-margin-start: 16px; | 129 -webkit-margin-start: 16px; |
| 130 color: var(--secondary-text-color); | 130 color: var(--secondary-text-color); |
| 131 flex-shrink: 0; | 131 flex-shrink: 0; |
| 132 } | 132 } |
| 133 | 133 |
| 134 #menu-button { | 134 #menu-button { |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 <div></div> | 249 <div></div> |
| 250 <div></div> | 250 <div></div> |
| 251 <div></div> | 251 <div></div> |
| 252 </button> | 252 </button> |
| 253 </div> | 253 </div> |
| 254 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 254 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 255 </div> | 255 </div> |
| 256 </template> | 256 </template> |
| 257 <script src="chrome://history/history_item.js"></script> | 257 <script src="chrome://history/history_item.js"></script> |
| 258 </dom-module> | 258 </dom-module> |
| OLD | NEW |