| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.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/iron-icons/iron-icons.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 5 <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-button/paper-butt
on.html"> |
| 6 <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-checkbox/paper-ch
eckbox.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 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/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 border-color: var(--card-border-color); | 24 border-color: var(--card-border-color); |
| 25 border-style: solid; | 25 border-style: solid; |
| 26 border-width: 0 1px; | 26 border-width: 0 1px; |
| 27 max-width: var(--card-max-width); | 27 max-width: var(--card-max-width); |
| 28 min-width: var(--card-min-width); | 28 min-width: var(--card-min-width); |
| 29 width: 100%; | 29 width: 100%; |
| 30 } | 30 } |
| 31 | 31 |
| 32 :host([is-card-start]) #main-container { | 32 :host([is-card-start]) #main-container { |
| 33 border-top-width: 1px; | 33 border-top-width: 1px; |
| 34 margin-top: 20px; | |
| 35 } | 34 } |
| 36 | 35 |
| 37 :host([is-card-end]) #main-container { | 36 :host([is-card-end]) #main-container { |
| 38 border-bottom-width: 2px; | 37 border-bottom-width: 2px; |
| 38 margin-bottom: 20px; |
| 39 } | 39 } |
| 40 | 40 |
| 41 #date-accessed { | 41 #date-accessed { |
| 42 display: none; | 42 display: none; |
| 43 } | 43 } |
| 44 | 44 |
| 45 :host([is-card-start]) #date-accessed { | 45 :host([is-card-start]) #date-accessed { |
| 46 display: flex; | 46 display: flex; |
| 47 } | 47 } |
| 48 | 48 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 on-tap="onMenuButtonTap_"> | 133 on-tap="onMenuButtonTap_"> |
| 134 </paper-icon-button> | 134 </paper-icon-button> |
| 135 </div> | 135 </div> |
| 136 <template is="dom-if" if="{{hasTimeGap}}"> | 136 <template is="dom-if" if="{{hasTimeGap}}"> |
| 137 <div id="time-gap-separator"></div> | 137 <div id="time-gap-separator"></div> |
| 138 </template> | 138 </template> |
| 139 </div> | 139 </div> |
| 140 </template> | 140 </template> |
| 141 <script src="chrome://history/history_item.js"></script> | 141 <script src="chrome://history/history_item.js"></script> |
| 142 </dom-module> | 142 </dom-module> |
| OLD | NEW |