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