| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 -webkit-user-select: none; | 42 -webkit-user-select: none; |
| 43 background-color: transparent; | 43 background-color: transparent; |
| 44 color: var(--sidebar-unselected-color); | 44 color: var(--sidebar-unselected-color); |
| 45 display: flex; | 45 display: flex; |
| 46 flex: 1; | 46 flex: 1; |
| 47 flex-direction: column; | 47 flex-direction: column; |
| 48 padding-top: 8px; | 48 padding-top: 8px; |
| 49 } | 49 } |
| 50 | 50 |
| 51 iron-selector > a { | 51 iron-selector > a { |
| 52 @apply(--paper-font-subhead); | |
| 53 /* Ensure the focus outline appears correctly (crbug.com/655503). */ | 52 /* Ensure the focus outline appears correctly (crbug.com/655503). */ |
| 54 -webkit-margin-end: 4px; | 53 -webkit-margin-end: 4px; |
| 55 -webkit-padding-start: 24px; | 54 -webkit-padding-start: 24px; |
| 56 align-items: center; | 55 align-items: center; |
| 57 box-sizing: border-box; | 56 box-sizing: border-box; |
| 58 color: inherit; | 57 color: inherit; |
| 59 cursor: pointer; | 58 cursor: pointer; |
| 60 display: flex; | 59 display: flex; |
| 61 font-size: 108%; | |
| 62 font-weight: 500; | 60 font-weight: 500; |
| 63 min-height: 48px; | 61 min-height: 40px; |
| 64 position: relative; | 62 position: relative; |
| 65 text-decoration: none; | 63 text-decoration: none; |
| 66 } | 64 } |
| 67 | 65 |
| 68 iron-selector > a.iron-selected { | 66 iron-selector > a.iron-selected { |
| 69 color: var(--link-color); | 67 color: var(--link-color); |
| 70 } | 68 } |
| 71 | 69 |
| 72 #spacer { | 70 #spacer { |
| 73 flex: 1; | 71 flex: 1; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 </a> | 109 </a> |
| 112 <div id="spacer"></div> | 110 <div id="spacer"></div> |
| 113 <div id="footer" hidden="[[!showFooter]]"> | 111 <div id="footer" hidden="[[!showFooter]]"> |
| 114 <div class="separator"></div> | 112 <div class="separator"></div> |
| 115 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 113 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
| 116 </div> | 114 </div> |
| 117 </iron-selector> | 115 </iron-selector> |
| 118 </template> | 116 </template> |
| 119 <script src="chrome://history/side_bar.js"></script> | 117 <script src="chrome://history/side_bar.js"></script> |
| 120 </dom-module> | 118 </dom-module> |
| OLD | NEW |