Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: chrome/browser/resources/md_history/side_bar.html

Issue 2195263002: MD History: UI polish pass (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/webui/history_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/history_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698