| 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-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/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"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 8 <link rel="import" href="chrome://resources/html/icon.html"> | 8 <link rel="import" href="chrome://resources/html/icon.html"> |
| 9 <link rel="import" href="chrome://history/browser_service.html"> | 9 <link rel="import" href="chrome://history/browser_service.html"> |
| 10 <link rel="import" href="chrome://history/constants.html"> | 10 <link rel="import" href="chrome://history/constants.html"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 | 42 |
| 43 #device-name { | 43 #device-name { |
| 44 overflow: hidden; | 44 overflow: hidden; |
| 45 padding-right: 3px; | 45 padding-right: 3px; |
| 46 text-overflow: ellipsis; | 46 text-overflow: ellipsis; |
| 47 } | 47 } |
| 48 | 48 |
| 49 #right-buttons { | 49 #right-buttons { |
| 50 -webkit-margin-end: 4px; | 50 -webkit-margin-end: 4px; |
| 51 color: var(--secondary-text-color); |
| 51 } | 52 } |
| 52 | 53 |
| 53 #menu-button { | 54 #menu-button { |
| 54 -webkit-margin-end: 8px; | 55 -webkit-margin-end: 8px; |
| 55 } | 56 } |
| 56 | 57 |
| 57 #collapse { | 58 #collapse { |
| 58 overflow: hidden; | 59 overflow: hidden; |
| 59 } | 60 } |
| 60 | 61 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 <div class="window-separator" | 119 <div class="window-separator" |
| 119 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> | 120 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> |
| 120 </div> | 121 </div> |
| 121 </template> | 122 </template> |
| 122 </div> | 123 </div> |
| 123 </iron-collapse> | 124 </iron-collapse> |
| 124 </div> | 125 </div> |
| 125 </template> | 126 </template> |
| 126 <script src="chrome://history/synced_device_card.js"></script> | 127 <script src="chrome://history/synced_device_card.js"></script> |
| 127 </dom-module> | 128 </dom-module> |
| OLD | NEW |