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-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 Loading... |
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 Loading... |
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> |
OLD | NEW |