| 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 23 matching lines...) Expand all Loading... |
| 34 -webkit-margin-start: 20px; | 34 -webkit-margin-start: 20px; |
| 35 color: rgb(102, 136, 238); | 35 color: rgb(102, 136, 238); |
| 36 cursor: pointer; | 36 cursor: pointer; |
| 37 } | 37 } |
| 38 | 38 |
| 39 #open-tabs:hover { | 39 #open-tabs:hover { |
| 40 text-decoration: underline; | 40 text-decoration: underline; |
| 41 } | 41 } |
| 42 | 42 |
| 43 #last-update-time { | 43 #last-update-time { |
| 44 color: #969696; | 44 color: var(--secondary-text-color); |
| 45 } | 45 } |
| 46 | 46 |
| 47 #dropdown-indicator { | 47 #dropdown-indicator { |
| 48 -webkit-margin-end: 12px; | 48 -webkit-margin-end: 12px; |
| 49 color: var(--secondary-text-color); |
| 49 height: 20px; | 50 height: 20px; |
| 50 width: 20px; | 51 width: 20px; |
| 51 } | 52 } |
| 52 | 53 |
| 53 #collapse { | 54 #collapse { |
| 54 overflow: hidden; | 55 overflow: hidden; |
| 55 } | 56 } |
| 56 | 57 |
| 57 #history-item-container { | 58 #history-item-container { |
| 58 background: #fff; | 59 background: #fff; |
| 59 border: 1px solid var(--card-border-color); | 60 border: 1px solid var(--card-border-color); |
| 60 border-bottom-width: 2px; | 61 border-bottom-width: 2px; |
| 62 border-radius: 2px; |
| 61 max-width: var(--card-max-width); | 63 max-width: var(--card-max-width); |
| 62 min-width: var(--card-min-width); | 64 min-width: var(--card-min-width); |
| 63 width: 100%; | 65 width: 100%; |
| 64 } | 66 } |
| 65 | 67 |
| 66 #item-container { | 68 #item-container { |
| 67 @apply(--layout-center); | 69 @apply(--layout-center); |
| 68 @apply(--layout-horizontal); | 70 @apply(--layout-horizontal); |
| 69 min-height: 40px; | 71 min-height: var(--item-height); |
| 70 } | 72 } |
| 71 | 73 |
| 72 #window-separator { | 74 #window-separator { |
| 73 background-color: var(--card-border-color); | 75 background-color: var(--card-border-color); |
| 74 height: 1px; | 76 height: 1px; |
| 75 margin: 5px auto; | 77 margin: 5px auto; |
| 76 width: 80%; | 78 width: 80%; |
| 77 } | 79 } |
| 78 </style> | 80 </style> |
| 79 <div id="history-item-container"> | 81 <div id="history-item-container"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 102 </template> | 104 </template> |
| 103 <div class="item-container"> | 105 <div class="item-container"> |
| 104 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> | 106 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> |
| 105 </div> | 107 </div> |
| 106 </div> | 108 </div> |
| 107 </iron-collapse> | 109 </iron-collapse> |
| 108 </div> | 110 </div> |
| 109 </template> | 111 </template> |
| 110 <script src="chrome://history/synced_device_card.js"></script> | 112 <script src="chrome://history/synced_device_card.js"></script> |
| 111 </dom-module> | 113 </dom-module> |
| OLD | NEW |