| 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-icon/iron-icon.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 6 <link rel="import" href="chrome://history/browser_service.html"> | 6 <link rel="import" href="chrome://history/browser_service.html"> |
| 7 <link rel="import" href="chrome://history/icons.html"> | 7 <link rel="import" href="chrome://history/icons.html"> |
| 8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
| 9 | 9 |
| 10 <!-- Lazy loaded: iron-dropdown, paper-button, paper-icon-button-light, | 10 <!-- Lazy loaded: iron-dropdown, paper-button, paper-icon-button-light, |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 flex: 1; | 104 flex: 1; |
| 105 } | 105 } |
| 106 | 106 |
| 107 #cancel-icon-button { | 107 #cancel-icon-button { |
| 108 -webkit-margin-end: 24px; | 108 -webkit-margin-end: 24px; |
| 109 -webkit-margin-start: 2px; | 109 -webkit-margin-start: 2px; |
| 110 } | 110 } |
| 111 | 111 |
| 112 /* Grouped toolbar. */ | 112 /* Grouped toolbar. */ |
| 113 | 113 |
| 114 paper-tabs:unresolved { |
| 115 visibility: hidden; |
| 116 } |
| 117 |
| 114 paper-tabs { | 118 paper-tabs { |
| 115 /* TODO(tsergeant): Align tabs with cards. */ | 119 /* TODO(tsergeant): Align tabs with cards. */ |
| 116 --paper-tabs: { | 120 --paper-tabs: { |
| 117 font-size: inherit; | 121 font-size: inherit; |
| 118 }; | 122 }; |
| 119 --paper-tabs-selection-bar-color: #fff; | 123 --paper-tabs-selection-bar-color: #fff; |
| 120 -webkit-margin-start: 32px; | 124 -webkit-margin-start: 32px; |
| 121 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height)); | 125 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height)); |
| 122 min-width: 300px; | 126 min-width: 300px; |
| 123 } | 127 } |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 on-click="onNextTap_" | 257 on-click="onNextTap_" |
| 254 disabled="[[isToday_(groupedOffset)]]"> | 258 disabled="[[isToday_(groupedOffset)]]"> |
| 255 <iron-icon icon="cr:chevron-right"></iron-icon> | 259 <iron-icon icon="cr:chevron-right"></iron-icon> |
| 256 </button> | 260 </button> |
| 257 </div> | 261 </div> |
| 258 </div> | 262 </div> |
| 259 </template> | 263 </template> |
| 260 </template> | 264 </template> |
| 261 <script src="chrome://history/history_toolbar.js"></script> | 265 <script src="chrome://history/history_toolbar.js"></script> |
| 262 </dom-module> | 266 </dom-module> |
| OLD | NEW |