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-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.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-styles/color.html
"> | 4 <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/typography
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography
.html"> |
6 <link rel="import" href="chrome://history/browser_service.html"> | 6 <link rel="import" href="chrome://history/browser_service.html"> |
7 <link rel="import" href="chrome://history/shared_style.html"> | 7 <link rel="import" href="chrome://history/shared_style.html"> |
8 | 8 |
9 <dom-module id="history-side-bar"> | 9 <dom-module id="history-side-bar"> |
10 <template> | 10 <template> |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 :host([drawer]) #footer { | 82 :host([drawer]) #footer { |
83 /* This compensates the 120px by which app-drawer protrudes under | 83 /* This compensates the 120px by which app-drawer protrudes under |
84 * the viewport. */ | 84 * the viewport. */ |
85 bottom: 120px; | 85 bottom: 120px; |
86 } | 86 } |
87 | 87 |
88 #footer-text { | 88 #footer-text { |
89 -webkit-padding-end: 16px; | 89 -webkit-padding-end: 16px; |
90 -webkit-padding-start: 24px; | 90 -webkit-padding-start: 24px; |
| 91 line-height: 20px; |
91 margin: 24px 0; | 92 margin: 24px 0; |
92 } | 93 } |
93 | 94 |
94 #footer a { | 95 #footer a { |
95 color: var(--google-blue-700); | 96 color: var(--google-blue-700); |
96 text-decoration: none; | 97 text-decoration: none; |
97 } | 98 } |
98 </style> | 99 </style> |
99 | 100 |
100 <iron-selector id="menu" selected="{{selectedPage}}" | 101 <iron-selector id="menu" selected="{{selectedPage}}" |
(...skipping 13 matching lines...) Expand all Loading... |
114 $i18n{clearBrowsingData} | 115 $i18n{clearBrowsingData} |
115 </a> | 116 </a> |
116 <div id="footer" hidden="[[!showFooter]]"> | 117 <div id="footer" hidden="[[!showFooter]]"> |
117 <div class="separator"></div> | 118 <div class="separator"></div> |
118 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 119 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
119 </div> | 120 </div> |
120 </iron-selector> | 121 </iron-selector> |
121 </template> | 122 </template> |
122 <script src="chrome://history/side_bar.js"></script> | 123 <script src="chrome://history/side_bar.js"></script> |
123 </dom-module> | 124 </dom-module> |
OLD | NEW |