Chromium Code Reviews| 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/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 5 <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_lazy_render/cr_lazy_r ender.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml"> | 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml"> |
| 7 <link rel="import" href="chrome://history/browser_service.html"> | 7 <link rel="import" href="chrome://history/browser_service.html"> |
| 8 <link rel="import" href="chrome://history/icons.html"> | 8 <link rel="import" href="chrome://history/icons.html"> |
| 9 <link rel="import" href="chrome://history/shared_style.html"> | 9 <link rel="import" href="chrome://history/shared_style.html"> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 cr-toolbar, | 24 cr-toolbar, |
| 25 #overlay-buttons, | 25 #overlay-buttons, |
| 26 #overlay-wrapper, | 26 #overlay-wrapper, |
| 27 #toolbar-container { | 27 #toolbar-container { |
| 28 align-items: center; | 28 align-items: center; |
| 29 display: flex; | 29 display: flex; |
| 30 width: 100%; | 30 width: 100%; |
| 31 } | 31 } |
| 32 | 32 |
| 33 :host([items-selected_]) { | 33 :host([items-selected_]) { |
| 34 background: rgb(68, 136, 255); | 34 background: var(--toolbar-selected-color); |
| 35 } | 35 } |
| 36 | 36 |
| 37 #toolbar-container { | 37 #toolbar-container { |
| 38 height: var(--toolbar-height); | 38 height: var(--toolbar-height); |
| 39 } | 39 } |
| 40 | 40 |
| 41 cr-toolbar { | 41 cr-toolbar { |
| 42 --cr-toolbar-field-end-padding: 0; | 42 --cr-toolbar-field-end-padding: 0; |
| 43 --cr-toolbar-field-margin: var(--side-bar-width); | 43 --cr-toolbar-field-margin: var(--side-bar-width); |
| 44 --cr-toolbar-right-content-wide: { | 44 --cr-toolbar-right-content-wide: { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 } | 80 } |
| 81 | 81 |
| 82 iron-dropdown { | 82 iron-dropdown { |
| 83 margin-top: 28px; /** Height of icon + 8px spacing. */ | 83 margin-top: 28px; /** Height of icon + 8px spacing. */ |
| 84 } | 84 } |
| 85 | 85 |
| 86 .dropdown-content { | 86 .dropdown-content { |
| 87 @apply(--shadow-elevation-2dp); | 87 @apply(--shadow-elevation-2dp); |
| 88 background-color: white; | 88 background-color: white; |
| 89 border-radius: 2px; | 89 border-radius: 2px; |
| 90 color: var(--paper-grey-800); | 90 color: var(--synced-devices-notice-color); |
|
tsergeant
2016/12/06 06:45:00
This dropdown also has a link in it. Can you make
calamity
2016/12/08 06:36:34
Covered by the a selector added to shared_style.ht
| |
| 91 overflow: hidden; | 91 overflow: hidden; |
| 92 padding: 12px 20px; | 92 padding: 12px 20px; |
| 93 } | 93 } |
| 94 | 94 |
| 95 :host(:not([has-drawer])) #overlay-wrapper { | 95 :host(:not([has-drawer])) #overlay-wrapper { |
| 96 -webkit-margin-start: var(--side-bar-width); | 96 -webkit-margin-start: var(--side-bar-width); |
| 97 } | 97 } |
| 98 | 98 |
| 99 #overlay-buttons { | 99 #overlay-buttons { |
| 100 margin: 0 auto; | 100 margin: 0 auto; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 250 title="$i18n{rangeNext}" | 250 title="$i18n{rangeNext}" |
| 251 class="rtl-reversible" | 251 class="rtl-reversible" |
| 252 on-tap="onNextTap_" | 252 on-tap="onNextTap_" |
| 253 disabled="[[isToday_(groupedOffset)]]"></paper-icon-button> | 253 disabled="[[isToday_(groupedOffset)]]"></paper-icon-button> |
| 254 </div> | 254 </div> |
| 255 </div> | 255 </div> |
| 256 </template> | 256 </template> |
| 257 </template> | 257 </template> |
| 258 <script src="chrome://history/history_toolbar.js"></script> | 258 <script src="chrome://history/history_toolbar.js"></script> |
| 259 </dom-module> | 259 </dom-module> |
| OLD | NEW |