| 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-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 8 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 9 <link rel="import" href="chrome://history/icons.html"> | 9 <link rel="import" href="chrome://history/icons.html"> |
| 10 <link rel="import" href="chrome://history/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 #toolbar-container { | 35 #toolbar-container { |
| 36 height: var(--toolbar-height); | 36 height: var(--toolbar-height); |
| 37 } | 37 } |
| 38 | 38 |
| 39 cr-toolbar { | 39 cr-toolbar { |
| 40 --cr-toolbar-field-margin: var(--side-bar-width); | 40 --cr-toolbar-field-margin: var(--side-bar-width); |
| 41 } | 41 } |
| 42 | 42 |
| 43 cr-toolbar[show-menu] { | 43 :host([has-drawer]) cr-toolbar { |
| 44 --cr-toolbar-field-margin: 0; | 44 --cr-toolbar-field-margin: 0; |
| 45 } | 45 } |
| 46 | 46 |
| 47 :host(:not([has-drawer])) #overlay-wrapper { | 47 :host(:not([has-drawer])) #overlay-wrapper { |
| 48 -webkit-margin-start: var(--side-bar-width); | 48 -webkit-margin-start: var(--side-bar-width); |
| 49 } | 49 } |
| 50 | 50 |
| 51 #overlay-buttons { | 51 #overlay-buttons { |
| 52 margin: 0 auto; | 52 margin: 0 auto; |
| 53 max-width: var(--card-max-width); | 53 max-width: var(--card-max-width); |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 class="rtl-reversible"></paper-icon-button> | 167 class="rtl-reversible"></paper-icon-button> |
| 168 <paper-icon-button icon="cr:chevron-right" | 168 <paper-icon-button icon="cr:chevron-right" |
| 169 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 169 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 170 class="rtl-reversible"></paper-icon-button> | 170 class="rtl-reversible"></paper-icon-button> |
| 171 </div> | 171 </div> |
| 172 </div> | 172 </div> |
| 173 </template> | 173 </template> |
| 174 </template> | 174 </template> |
| 175 <script src="chrome://history/history_toolbar.js"></script> | 175 <script src="chrome://history/history_toolbar.js"></script> |
| 176 </dom-module> | 176 </dom-module> |
| OLD | NEW |