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 18 matching lines...) Expand all Loading... |
29 #tab-item-list { | 29 #tab-item-list { |
30 padding: 8px 0; | 30 padding: 8px 0; |
31 } | 31 } |
32 | 32 |
33 #open-tabs { | 33 #open-tabs { |
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 { | |
40 text-decoration: underline; | |
41 } | |
42 | |
43 #last-update-time { | 39 #last-update-time { |
44 color: var(--secondary-text-color); | 40 color: var(--secondary-text-color); |
45 } | 41 } |
46 | 42 |
47 #dropdown-indicator { | 43 #dropdown-indicator { |
48 -webkit-margin-end: 12px; | 44 -webkit-margin-end: 12px; |
49 color: var(--secondary-text-color); | 45 color: var(--secondary-text-color); |
50 height: 20px; | 46 height: 20px; |
51 width: 20px; | 47 width: 20px; |
52 } | 48 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 </template> | 97 </template> |
102 <div class="item-container"> | 98 <div class="item-container"> |
103 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> | 99 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> |
104 </div> | 100 </div> |
105 </div> | 101 </div> |
106 </iron-collapse> | 102 </iron-collapse> |
107 </div> | 103 </div> |
108 </template> | 104 </template> |
109 <script src="chrome://history/synced_device_card.js"></script> | 105 <script src="chrome://history/synced_device_card.js"></script> |
110 </dom-module> | 106 </dom-module> |
OLD | NEW |