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

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

Issue 2342243002: MD History: Fix sync info icon in RTL languages (Closed)
Patch Set: Created 4 years, 3 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-dropdown/iron-drop down.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht ml"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht ml">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h tml">
9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 9 <link rel="import" href="chrome://resources/cr_elements/icons.html">
10 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 10 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
(...skipping 30 matching lines...) Expand all
41 41
42 cr-toolbar { 42 cr-toolbar {
43 --cr-toolbar-field-end-padding: 0; 43 --cr-toolbar-field-end-padding: 0;
44 --cr-toolbar-field-margin: var(--side-bar-width); 44 --cr-toolbar-field-margin: var(--side-bar-width);
45 --cr-toolbar-right-content-wide: { 45 --cr-toolbar-right-content-wide: {
46 position: absolute; 46 position: absolute;
47 right: 0; 47 right: 0;
48 }; 48 };
49 } 49 }
50 50
51 :host-context([dir=rtl]) cr-toolbar {
52 --cr-toolbar-right-content-wide: {
53 position: absolute;
54 left: 0;
55 };
56 }
57
51 :host([has-drawer]) cr-toolbar { 58 :host([has-drawer]) cr-toolbar {
52 --cr-toolbar-field-margin: 0; 59 --cr-toolbar-field-margin: 0;
53 } 60 }
54 61
55 cr-toolbar .more-actions { 62 cr-toolbar .more-actions {
56 -webkit-margin-end: 12px; 63 -webkit-margin-end: 12px;
57 } 64 }
58 65
59 #info-button { 66 #info-button {
60 height: 32px; 67 height: 32px;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 class="rtl-reversible"></paper-icon-button> 229 class="rtl-reversible"></paper-icon-button>
223 <paper-icon-button icon="cr:chevron-right" 230 <paper-icon-button icon="cr:chevron-right"
224 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" 231 alt="$i18n{rangeNext}" title="$i18n{rangeNext}"
225 class="rtl-reversible"></paper-icon-button> 232 class="rtl-reversible"></paper-icon-button>
226 </div> 233 </div>
227 </div> 234 </div>
228 </template> 235 </template>
229 </template> 236 </template>
230 <script src="chrome://history/history_toolbar.js"></script> 237 <script src="chrome://history/history_toolbar.js"></script>
231 </dom-module> 238 </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