| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp
le.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp
le.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography
.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography
.html"> |
| 7 <link rel="import" href="chrome://history/browser_service.html"> | 7 <link rel="import" href="chrome://history/browser_service.html"> |
| 8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
| 9 | 9 |
| 10 <dom-module id="history-side-bar"> | 10 <dom-module id="history-side-bar"> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 font-weight: 500; | 60 font-weight: 500; |
| 61 min-height: 40px; | 61 min-height: 40px; |
| 62 position: relative; | 62 position: relative; |
| 63 text-decoration: none; | 63 text-decoration: none; |
| 64 } | 64 } |
| 65 | 65 |
| 66 iron-selector > a.iron-selected { | 66 iron-selector > a.iron-selected { |
| 67 color: var(--link-color); | 67 color: var(--link-color); |
| 68 } | 68 } |
| 69 | 69 |
| 70 iron-selector > a[disabled] { |
| 71 opacity: 0.65; |
| 72 pointer-events: none; |
| 73 } |
| 74 |
| 70 #spacer { | 75 #spacer { |
| 71 flex: 1; | 76 flex: 1; |
| 72 } | 77 } |
| 73 | 78 |
| 74 #footer { | 79 #footer { |
| 75 color: var(--sidebar-footer-text-color); | 80 color: var(--sidebar-footer-text-color); |
| 76 width: var(--side-bar-width); | 81 width: var(--side-bar-width); |
| 77 } | 82 } |
| 78 | 83 |
| 79 #footer-text { | 84 #footer-text { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 94 <a href="/" class="page-item" path="history" on-click="onItemClick_"> | 99 <a href="/" class="page-item" path="history" on-click="onItemClick_"> |
| 95 $i18n{historyMenuItem} | 100 $i18n{historyMenuItem} |
| 96 <paper-ripple></paper-ripple> | 101 <paper-ripple></paper-ripple> |
| 97 </a> | 102 </a> |
| 98 <a href="/syncedTabs" class="page-item" path="syncedTabs" | 103 <a href="/syncedTabs" class="page-item" path="syncedTabs" |
| 99 on-click="onItemClick_"> | 104 on-click="onItemClick_"> |
| 100 $i18n{openTabsMenuItem} | 105 $i18n{openTabsMenuItem} |
| 101 <paper-ripple></paper-ripple> | 106 <paper-ripple></paper-ripple> |
| 102 </a> | 107 </a> |
| 103 <div class="separator"></div> | 108 <div class="separator"></div> |
| 104 <a href="chrome://settings/clearBrowserData" | 109 <a id="clear-browsing-data" |
| 105 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> | 110 href="chrome://settings/clearBrowserData" |
| 111 on-tap="onClearBrowsingDataTap_" |
| 112 disabled$="[[guestSession_]]" |
| 113 tabindex$="[[computeClearBrowsingDataTabIndex_(guestSession_)]]"> |
| 106 $i18n{clearBrowsingData} | 114 $i18n{clearBrowsingData} |
| 107 <iron-icon icon="cr:open-in-new"></iron-icon> | 115 <iron-icon icon="cr:open-in-new"></iron-icon> |
| 108 <paper-ripple id="cbd-ripple"></paper-ripple> | 116 <paper-ripple id="cbd-ripple"></paper-ripple> |
| 109 </a> | 117 </a> |
| 110 <div id="spacer"></div> | 118 <div id="spacer"></div> |
| 111 <div id="footer" hidden="[[!showFooter]]"> | 119 <div id="footer" hidden="[[!showFooter]]"> |
| 112 <div class="separator"></div> | 120 <div class="separator"></div> |
| 113 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 121 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
| 114 </div> | 122 </div> |
| 115 </iron-selector> | 123 </iron-selector> |
| 116 </template> | 124 </template> |
| 117 <script src="chrome://history/side_bar.js"></script> | 125 <script src="chrome://history/side_bar.js"></script> |
| 118 </dom-module> | 126 </dom-module> |
| OLD | NEW |