| 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/iron-icons/hardware-ico
ns.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> |
| 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.html"> | 5 <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-tabs/paper-tab.ht
ml"> | 6 <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-tabs.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 10 <link rel="import" href="chrome://history/icons.html"> | 10 <link rel="import" href="chrome://history/icons.html"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #toolbar-container { | 35 #toolbar-container { |
| 36 height: 56px; | 36 height: 56px; |
| 37 } | 37 } |
| 38 | 38 |
| 39 #overlay-buttons { | 39 #overlay-buttons { |
| 40 margin: 0 auto; | 40 margin: 0 auto; |
| 41 max-width: var(--card-max-width); | 41 max-width: var(--card-max-width); |
| 42 padding: 0 var(--card-padding-side); | 42 padding: 0 var(--card-padding-side); |
| 43 } | 43 } |
| 44 | 44 |
| 45 #overlay-wrapper { | |
| 46 -webkit-margin-start: var(--side-bar-width); | |
| 47 } | |
| 48 | |
| 49 #number-selected { | 45 #number-selected { |
| 50 @apply(--layout-flex); | 46 @apply(--layout-flex); |
| 51 } | 47 } |
| 52 | 48 |
| 53 #cancel-icon-button { | 49 #cancel-icon-button { |
| 54 -webkit-margin-end: 24px; | 50 -webkit-margin-end: 24px; |
| 55 -webkit-margin-start: 2px; | 51 -webkit-margin-start: 2px; |
| 56 height: 36px; | 52 height: 36px; |
| 57 min-width: 36px; | 53 min-width: 36px; |
| 58 width: 36px; | 54 width: 36px; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 class="rtl-reversible"></paper-icon-button> | 148 class="rtl-reversible"></paper-icon-button> |
| 153 <paper-icon-button icon="cr:chevron-right" | 149 <paper-icon-button icon="cr:chevron-right" |
| 154 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 150 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 155 class="rtl-reversible"></paper-icon-button> | 151 class="rtl-reversible"></paper-icon-button> |
| 156 </div> | 152 </div> |
| 157 </div> | 153 </div> |
| 158 </template> | 154 </template> |
| 159 </template> | 155 </template> |
| 160 <script src="chrome://history/history_toolbar.js"></script> | 156 <script src="chrome://history/history_toolbar.js"></script> |
| 161 </dom-module> | 157 </dom-module> |
| OLD | NEW |