| 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-dropdown/iron-drop
down.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> |
| 3 <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/iron-icon/iron-icon.htm
l"> |
| 4 <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-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 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: { |
| 46 position: absolute; | 46 position: absolute; |
| 47 right: 0; | 47 right: 0; |
| 48 }; | 48 }; |
| 49 } | 49 } |
| 50 | 50 |
| 51 :host-context([dir=rtl]) cr-toolbar { |
| 52 --cr-toolbar-right-content-wide: { |
| 53 position: absolute; |
| 54 left: 0; |
| 55 }; |
| 56 } |
| 57 |
| 51 :host([has-drawer]) cr-toolbar { | 58 :host([has-drawer]) cr-toolbar { |
| 52 --cr-toolbar-field-margin: 0; | 59 --cr-toolbar-field-margin: 0; |
| 53 } | 60 } |
| 54 | 61 |
| 55 cr-toolbar .more-actions { | 62 cr-toolbar .more-actions { |
| 56 -webkit-margin-end: 12px; | 63 -webkit-margin-end: 12px; |
| 57 } | 64 } |
| 58 | 65 |
| 59 #info-button { | 66 #info-button { |
| 60 height: 32px; | 67 height: 32px; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 class="rtl-reversible"></paper-icon-button> | 229 class="rtl-reversible"></paper-icon-button> |
| 223 <paper-icon-button icon="cr:chevron-right" | 230 <paper-icon-button icon="cr:chevron-right" |
| 224 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 231 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 225 class="rtl-reversible"></paper-icon-button> | 232 class="rtl-reversible"></paper-icon-button> |
| 226 </div> | 233 </div> |
| 227 </div> | 234 </div> |
| 228 </template> | 235 </template> |
| 229 </template> | 236 </template> |
| 230 <script src="chrome://history/history_toolbar.js"></script> | 237 <script src="chrome://history/history_toolbar.js"></script> |
| 231 </dom-module> | 238 </dom-module> |
| OLD | NEW |