| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 iron-selector > a { | 55 iron-selector > a { |
| 56 @apply(--paper-font-subhead); | 56 @apply(--paper-font-subhead); |
| 57 /* Ensure the focus outline appears correctly (crbug.com/655503). */ | 57 /* Ensure the focus outline appears correctly (crbug.com/655503). */ |
| 58 -webkit-margin-end: 4px; | 58 -webkit-margin-end: 4px; |
| 59 -webkit-padding-start: 24px; | 59 -webkit-padding-start: 24px; |
| 60 align-items: center; | 60 align-items: center; |
| 61 box-sizing: border-box; | 61 box-sizing: border-box; |
| 62 color: inherit; | 62 color: inherit; |
| 63 cursor: pointer; | 63 cursor: pointer; |
| 64 display: flex; | 64 display: flex; |
| 65 font-size: 14px; | 65 font-size: 108%; |
| 66 font-weight: 500; | 66 font-weight: 500; |
| 67 min-height: 48px; | 67 min-height: 48px; |
| 68 position: relative; | 68 position: relative; |
| 69 text-decoration: none; | 69 text-decoration: none; |
| 70 } | 70 } |
| 71 | 71 |
| 72 iron-selector > a.iron-selected { | 72 iron-selector > a.iron-selected { |
| 73 color: var(--link-color); | 73 color: var(--link-color); |
| 74 } | 74 } |
| 75 | 75 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 </a> | 116 </a> |
| 117 <div id="spacer"></div> | 117 <div id="spacer"></div> |
| 118 <div id="footer" hidden="[[!showFooter]]"> | 118 <div id="footer" hidden="[[!showFooter]]"> |
| 119 <div class="separator"></div> | 119 <div class="separator"></div> |
| 120 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 120 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
| 121 </div> | 121 </div> |
| 122 </iron-selector> | 122 </iron-selector> |
| 123 </template> | 123 </template> |
| 124 <script src="chrome://history/side_bar.js"></script> | 124 <script src="chrome://history/side_bar.js"></script> |
| 125 </dom-module> | 125 </dom-module> |
| OLD | NEW |