| 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 25 matching lines...) Expand all Loading... |
| 36 #toolbar-container { | 36 #toolbar-container { |
| 37 height: var(--toolbar-height); | 37 height: var(--toolbar-height); |
| 38 } | 38 } |
| 39 | 39 |
| 40 #overlay-buttons { | 40 #overlay-buttons { |
| 41 margin: 0 auto; | 41 margin: 0 auto; |
| 42 max-width: var(--card-max-width); | 42 max-width: var(--card-max-width); |
| 43 padding: 0 var(--card-padding-side); | 43 padding: 0 var(--card-padding-side); |
| 44 } | 44 } |
| 45 | 45 |
| 46 paper-button { |
| 47 font-weight: 500; |
| 48 } |
| 49 |
| 46 #number-selected { | 50 #number-selected { |
| 47 @apply(--layout-flex); | 51 @apply(--layout-flex); |
| 48 } | 52 } |
| 49 | 53 |
| 50 #cancel-icon-button { | 54 #cancel-icon-button { |
| 51 -webkit-margin-end: 24px; | 55 -webkit-margin-end: 24px; |
| 52 -webkit-margin-start: 2px; | 56 -webkit-margin-start: 2px; |
| 53 height: 36px; | 57 height: 36px; |
| 54 min-width: 36px; | 58 min-width: 36px; |
| 55 width: 36px; | 59 width: 36px; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 class="rtl-reversible"></paper-icon-button> | 153 class="rtl-reversible"></paper-icon-button> |
| 150 <paper-icon-button icon="cr:chevron-right" | 154 <paper-icon-button icon="cr:chevron-right" |
| 151 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 155 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 152 class="rtl-reversible"></paper-icon-button> | 156 class="rtl-reversible"></paper-icon-button> |
| 153 </div> | 157 </div> |
| 154 </div> | 158 </div> |
| 155 </template> | 159 </template> |
| 156 </template> | 160 </template> |
| 157 <script src="chrome://history/history_toolbar.js"></script> | 161 <script src="chrome://history/history_toolbar.js"></script> |
| 158 </dom-module> | 162 </dom-module> |
| OLD | NEW |