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

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

Issue 2273563002: MD History: Fix content sidebar in RTL languages (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/resources/md_history/app.vulcanized.html » ('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/html/cr/ui.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui.html">
3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a pp-drawer.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a pp-drawer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-location. html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-location. html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-route.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-route.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
9 <link rel="import" href="chrome://history/history_toolbar.html"> 9 <link rel="import" href="chrome://history/history_toolbar.html">
10 <link rel="import" href="chrome://history/list_container.html"> 10 <link rel="import" href="chrome://history/list_container.html">
(...skipping 23 matching lines...) Expand all
34 } 34 }
35 35
36 :host([grouped_]) #main-container { 36 :host([grouped_]) #main-container {
37 height: calc(100% - var(--toolbar-grouped-height)); 37 height: calc(100% - var(--toolbar-grouped-height));
38 } 38 }
39 39
40 #content-side-bar { 40 #content-side-bar {
41 float: left; 41 float: left;
42 } 42 }
43 43
44 :host-context([dir=rtl]) #content-side-bar {
45 float: right;
46 }
47
44 #content, 48 #content,
45 #content > * { 49 #content > * {
46 height: 100%; 50 height: 100%;
47 } 51 }
48 52
49 #drawer-header { 53 #drawer-header {
50 align-items: center; 54 align-items: center;
51 border-bottom: 1px solid rgba(0, 0, 0, 0.08); 55 border-bottom: 1px solid rgba(0, 0, 0, 0.08);
52 display: flex; 56 display: flex;
53 height: var(--toolbar-height); 57 height: var(--toolbar-height);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 </history-side-bar> 114 </history-side-bar>
111 </app-drawer> 115 </app-drawer>
112 </template> 116 </template>
113 117
114 <iron-media-query query="(max-width: 1023px)" 118 <iron-media-query query="(max-width: 1023px)"
115 query-matches="{{hasDrawer_}}"> 119 query-matches="{{hasDrawer_}}">
116 </iron-media-query> 120 </iron-media-query>
117 </template> 121 </template>
118 <script src="chrome://history/app.js"></script> 122 <script src="chrome://history/app.js"></script>
119 </dom-module> 123 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.vulcanized.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698