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

Side by Side Diff: ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar.html

Issue 2609933003: MD History: Fix position of Clear Browsing Data menu promo (Closed)
Patch Set: Created 3 years, 11 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 | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | no next file » | 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-media-query/iron-m edia-query.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se arch_field.html"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se arch_field.html">
5 5
6 <dom-module id="cr-toolbar"> 6 <dom-module id="cr-toolbar">
7 <template> 7 <template>
8 <style> 8 <style>
9 :host { 9 :host {
10 --cr-toolbar-field-width: 580px; 10 --cr-toolbar-field-width: 580px;
(...skipping 11 matching lines...) Expand all
22 font-size: 123%; 22 font-size: 123%;
23 font-weight: 400; 23 font-weight: 400;
24 text-overflow: ellipsis; 24 text-overflow: ellipsis;
25 overflow: hidden; 25 overflow: hidden;
26 white-space: nowrap; 26 white-space: nowrap;
27 } 27 }
28 28
29 #leftContent { 29 #leftContent {
30 /* margin-start here must match margin-end on #rightContent. */ 30 /* margin-start here must match margin-end on #rightContent. */
31 -webkit-margin-start: 12px; 31 -webkit-margin-start: 12px;
32 position: relative;
32 transition: opacity 100ms; 33 transition: opacity 100ms;
33 } 34 }
34 35
35 #leftSpacer { 36 #leftSpacer {
36 -webkit-margin-start: 6px; 37 -webkit-margin-start: 6px;
37 align-items: center; 38 align-items: center;
38 display: flex; 39 display: flex;
39 } 40 }
40 41
41 #menuButton { 42 #menuButton {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}"> 153 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}">
153 </iron-media-query> 154 </iron-media-query>
154 </div> 155 </div>
155 156
156 <div id="rightContent"> 157 <div id="rightContent">
157 <content select=".more-actions"></content> 158 <content select=".more-actions"></content>
158 </div> 159 </div>
159 </template> 160 </template>
160 <script src="cr_toolbar.js"></script> 161 <script src="cr_toolbar.js"></script>
161 </dom-module> 162 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698