| 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 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 /** Unresolved paper-icon-button-light styles. */ | 24 /** Unresolved paper-icon-button-light styles. */ |
| 25 button { | 25 button { |
| 26 background: none; | 26 background: none; |
| 27 border: none; | 27 border: none; |
| 28 outline: none; | 28 outline: none; |
| 29 padding: 0; | 29 padding: 0; |
| 30 } | 30 } |
| 31 | 31 |
| 32 :host(:not([embedded])) #main-container { | 32 #main-container { |
| 33 position: relative; | 33 position: relative; |
| 34 } | 34 } |
| 35 | 35 |
| 36 :host([is-card-end]) #main-container { | 36 :host([is-card-end]) #main-container { |
| 37 margin-bottom: var(--card-padding-between); | 37 margin-bottom: var(--card-padding-between); |
| 38 } | 38 } |
| 39 | 39 |
| 40 :host([is-card-start][is-card-end]) #main-container { | 40 :host([is-card-start][is-card-end]) #main-container { |
| 41 border-radius: 2px; | 41 border-radius: 2px; |
| 42 } | 42 } |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 #background { | 176 #background { |
| 177 @apply(--shadow-elevation-2dp); | 177 @apply(--shadow-elevation-2dp); |
| 178 background: #fff; | 178 background: #fff; |
| 179 bottom: 0; | 179 bottom: 0; |
| 180 left: 0; | 180 left: 0; |
| 181 position: absolute; | 181 position: absolute; |
| 182 right: 0; | 182 right: 0; |
| 183 top: 0; | 183 top: 0; |
| 184 } | 184 } |
| 185 | 185 |
| 186 :host([embedded]) #background { | |
| 187 display: none; | |
| 188 } | |
| 189 | |
| 190 :host(:not([is-card-start])) #background { | 186 :host(:not([is-card-start])) #background { |
| 191 top: -5px; /* Draw the box shadow up the full edge of the background. */ | 187 top: -5px; /* Draw the box shadow up the full edge of the background. */ |
| 192 } | 188 } |
| 193 | 189 |
| 194 :host([is-card-start]) #background { | 190 :host([is-card-start]) #background { |
| 195 border-radius: 2px 2px 0 0; | 191 border-radius: 2px 2px 0 0; |
| 196 } | 192 } |
| 197 | 193 |
| 198 :host([is-card-end]) #background { | 194 :host([is-card-end]) #background { |
| 199 border-radius: 0 0 2px 2px; | 195 border-radius: 0 0 2px 2px; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 <div></div> | 244 <div></div> |
| 249 <div></div> | 245 <div></div> |
| 250 <div></div> | 246 <div></div> |
| 251 </button> | 247 </button> |
| 252 </div> | 248 </div> |
| 253 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 249 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 254 </div> | 250 </div> |
| 255 </template> | 251 </template> |
| 256 <script src="chrome://history/history_item.js"></script> | 252 <script src="chrome://history/history_item.js"></script> |
| 257 </dom-module> | 253 </dom-module> |
| OLD | NEW |