| 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/iron-media-query/iron-m
edia-query.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m
edia-query.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h
tml"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha
vior/iron-scroll-target-behavior.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha
vior/iron-scroll-target-behavior.html"> |
| 7 <link rel="import" href="chrome://history/history_toolbar.html"> | 7 <link rel="import" href="chrome://history/history_toolbar.html"> |
| 8 <link rel="import" href="chrome://history/list_container.html"> | 8 <link rel="import" href="chrome://history/list_container.html"> |
| 9 <link rel="import" href="chrome://history/router.html"> | 9 <link rel="import" href="chrome://history/router.html"> |
| 10 <link rel="import" href="chrome://history/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| 11 <link rel="import" href="chrome://history/side_bar.html"> | 11 <link rel="import" href="chrome://history/side_bar.html"> |
| 12 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 12 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 13 | 13 |
| 14 <!-- Lazy loaded: history-synced-device-manager, app-drawer. --> | 14 <!-- Lazy loaded: history-synced-device-manager, app-drawer. --> |
| 15 | 15 |
| 16 <dom-module id="history-app"> | 16 <dom-module id="history-app"> |
| 17 <template> | 17 <template> |
| 18 <style include="shared-style"> | 18 <style include="shared-style"> |
| 19 :host { | 19 :host { |
| 20 color: var(--primary-text-color); |
| 20 display: block; | 21 display: block; |
| 21 height: 100%; | 22 height: 100%; |
| 22 overflow: hidden; | 23 overflow: hidden; |
| 23 z-index: 0; | 24 z-index: 0; |
| 24 } | 25 } |
| 25 | 26 |
| 26 history-toolbar { | 27 history-toolbar { |
| 27 background: var(--md-toolbar-color); | 28 background: var(--md-toolbar-color); |
| 28 z-index: 2; | 29 z-index: 2; |
| 29 } | 30 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 56 #drawer:unresolved { | 57 #drawer:unresolved { |
| 57 display: none; | 58 display: none; |
| 58 } | 59 } |
| 59 | 60 |
| 60 #drawer { | 61 #drawer { |
| 61 z-index: 3; | 62 z-index: 3; |
| 62 } | 63 } |
| 63 | 64 |
| 64 #drawer-header { | 65 #drawer-header { |
| 65 align-items: center; | 66 align-items: center; |
| 66 border-bottom: 1px solid rgba(0, 0, 0, 0.08); | 67 border-bottom: 1px solid var(--separator-color); |
| 67 box-sizing: border-box; | 68 box-sizing: border-box; |
| 68 display: flex; | 69 display: flex; |
| 69 height: var(--toolbar-height); | 70 height: var(--toolbar-height); |
| 70 } | 71 } |
| 71 | 72 |
| 72 h1 { | 73 h1 { |
| 73 -webkit-padding-start: 24px; | 74 -webkit-padding-start: 24px; |
| 74 color: rgb(66, 66, 66); | 75 color: var(--primary-text-color); |
| 75 font-size: 123%; | 76 font-size: 123%; |
| 76 font-weight: 400; | 77 font-weight: 400; |
| 77 } | 78 } |
| 78 | 79 |
| 79 #drop-shadow { | 80 #drop-shadow { |
| 80 box-shadow: inset 0 5px 6px -3px rgba(0, 0, 0, 0.4); | 81 box-shadow: inset 0 5px 6px -3px rgba(0, 0, 0, 0.4); |
| 81 height: 6px; | 82 height: 6px; |
| 82 left: 0; | 83 left: 0; |
| 83 opacity: 0; | 84 opacity: 0; |
| 84 pointer-events: none; | 85 pointer-events: none; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 </history-side-bar> | 148 </history-side-bar> |
| 148 </app-drawer> | 149 </app-drawer> |
| 149 </template> | 150 </template> |
| 150 | 151 |
| 151 <iron-media-query query="(max-width: 1023px)" | 152 <iron-media-query query="(max-width: 1023px)" |
| 152 query-matches="{{hasDrawer_}}"> | 153 query-matches="{{hasDrawer_}}"> |
| 153 </iron-media-query> | 154 </iron-media-query> |
| 154 </template> | 155 </template> |
| 155 <script src="chrome://history/app.js"></script> | 156 <script src="chrome://history/app.js"></script> |
| 156 </dom-module> | 157 </dom-module> |
| OLD | NEW |