| 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/paper-styles/shadow.htm
l"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <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/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 7 <link rel="import" href="chrome://resources/html/icon.html"> | 7 <link rel="import" href="chrome://resources/html/icon.html"> |
| 8 <link rel="import" href="chrome://history/searched_label.html"> | 8 <link rel="import" href="chrome://history/searched_label.html"> |
| 9 <link rel="import" href="chrome://history/shared_style.html"> | 9 <link rel="import" href="chrome://history/shared_style.html"> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 | 42 |
| 43 #dropdown-indicator { | 43 #dropdown-indicator { |
| 44 -webkit-margin-end: 12px; | 44 -webkit-margin-end: 12px; |
| 45 color: var(--secondary-text-color); | 45 color: var(--secondary-text-color); |
| 46 height: 20px; | 46 height: 20px; |
| 47 width: 20px; | 47 width: 20px; |
| 48 } | 48 } |
| 49 | 49 |
| 50 #collapse { | 50 #collapse { |
| 51 border-bottom: 1px solid var(--card-border-color); |
| 51 overflow: hidden; | 52 overflow: hidden; |
| 52 } | 53 } |
| 53 | 54 |
| 54 #history-item-container { | 55 #history-item-container { |
| 55 background: #fff; | 56 background: #fff; |
| 56 border: 1px solid var(--card-border-color); | 57 border: 1px solid var(--card-border-color); |
| 57 border-bottom-width: 2px; | |
| 58 border-radius: 2px; | 58 border-radius: 2px; |
| 59 } | 59 } |
| 60 | 60 |
| 61 #item-container { | 61 #item-container { |
| 62 @apply(--layout-center); | 62 @apply(--layout-center); |
| 63 @apply(--layout-horizontal); | 63 @apply(--layout-horizontal); |
| 64 min-height: var(--item-height); | 64 min-height: var(--item-height); |
| 65 } | 65 } |
| 66 | 66 |
| 67 #window-separator { | 67 #window-separator { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 97 </template> | 97 </template> |
| 98 <div class="item-container"> | 98 <div class="item-container"> |
| 99 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> | 99 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> |
| 100 </div> | 100 </div> |
| 101 </div> | 101 </div> |
| 102 </iron-collapse> | 102 </iron-collapse> |
| 103 </div> | 103 </div> |
| 104 </template> | 104 </template> |
| 105 <script src="chrome://history/synced_device_card.js"></script> | 105 <script src="chrome://history/synced_device_card.js"></script> |
| 106 </dom-module> | 106 </dom-module> |
| OLD | NEW |