| 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 14 matching lines...) Expand all Loading... |
| 25 cr-toolbar, | 25 cr-toolbar, |
| 26 #overlay-buttons, | 26 #overlay-buttons, |
| 27 #overlay-wrapper, | 27 #overlay-wrapper, |
| 28 #toolbar-container { | 28 #toolbar-container { |
| 29 align-items: center; | 29 align-items: center; |
| 30 display: flex; | 30 display: flex; |
| 31 width: 100%; | 31 width: 100%; |
| 32 } | 32 } |
| 33 | 33 |
| 34 :host([items-selected_]) { | 34 :host([items-selected_]) { |
| 35 background: rgb(68, 136, 255); | 35 background: var(--interactive-color); |
| 36 } | 36 } |
| 37 | 37 |
| 38 #toolbar-container { | 38 #toolbar-container { |
| 39 height: var(--toolbar-height); | 39 height: var(--toolbar-height); |
| 40 } | 40 } |
| 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: { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 } | 83 } |
| 84 | 84 |
| 85 iron-dropdown { | 85 iron-dropdown { |
| 86 margin-top: 28px; /** Height of icon + 8px spacing. */ | 86 margin-top: 28px; /** Height of icon + 8px spacing. */ |
| 87 } | 87 } |
| 88 | 88 |
| 89 .dropdown-content { | 89 .dropdown-content { |
| 90 @apply(--shadow-elevation-2dp); | 90 @apply(--shadow-elevation-2dp); |
| 91 background-color: white; | 91 background-color: white; |
| 92 border-radius: 2px; | 92 border-radius: 2px; |
| 93 color: var(--paper-grey-800); | 93 color: var(--primary-text-color); |
| 94 overflow: hidden; | 94 overflow: hidden; |
| 95 padding: 12px 20px; | 95 padding: 12px 20px; |
| 96 } | 96 } |
| 97 | 97 |
| 98 /* Selection overlay. */ | 98 /* Selection overlay. */ |
| 99 | 99 |
| 100 :host(:not([has-drawer])) #overlay-wrapper { | 100 :host(:not([has-drawer])) #overlay-wrapper { |
| 101 -webkit-margin-start: var(--side-bar-width); | 101 -webkit-margin-start: var(--side-bar-width); |
| 102 } | 102 } |
| 103 | 103 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 on-tap="onNextTap_" | 266 on-tap="onNextTap_" |
| 267 disabled="[[isToday_(groupedOffset)]]"> | 267 disabled="[[isToday_(groupedOffset)]]"> |
| 268 <iron-icon icon="cr:chevron-right"></iron-icon> | 268 <iron-icon icon="cr:chevron-right"></iron-icon> |
| 269 </button> | 269 </button> |
| 270 </div> | 270 </div> |
| 271 </div> | 271 </div> |
| 272 </template> | 272 </template> |
| 273 </template> | 273 </template> |
| 274 <script src="chrome://history/history_toolbar.js"></script> | 274 <script src="chrome://history/history_toolbar.js"></script> |
| 275 </dom-module> | 275 </dom-module> |
| OLD | NEW |