OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
3 <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-flex-layout/iron-f
lex-layout.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/iron-icons/hardware-ico
ns.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
8 <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-tab.ht
ml"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
10 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 #grouped-nav-container { | 129 #grouped-nav-container { |
130 @apply(--layout-center); | 130 @apply(--layout-center); |
131 @apply(--layout-end-justified); | 131 @apply(--layout-end-justified); |
132 @apply(--layout-flex); | 132 @apply(--layout-flex); |
133 @apply(--layout-horizontal); | 133 @apply(--layout-horizontal); |
134 -webkit-margin-end: 24px; | 134 -webkit-margin-end: 24px; |
135 overflow: hidden; | 135 overflow: hidden; |
136 transition: opacity 150ms; | 136 transition: opacity 150ms; |
137 } | 137 } |
138 | 138 |
139 :host([grouped-range=0]) #grouped-nav-container { | 139 :host([grouped-range="0"]) #grouped-nav-container { |
140 opacity: 0; | 140 opacity: 0; |
141 pointer-events: none; | 141 pointer-events: none; |
142 } | 142 } |
143 | 143 |
144 #grouped-date { | 144 #grouped-date { |
145 flex: 0 1 auto; | 145 flex: 0 1 auto; |
146 opacity: 0.7; | 146 opacity: 0.7; |
147 overflow: hidden; | 147 overflow: hidden; |
148 text-align: right; | 148 text-align: right; |
149 text-overflow: ellipsis; | 149 text-overflow: ellipsis; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 class="rtl-reversible"></paper-icon-button> | 203 class="rtl-reversible"></paper-icon-button> |
204 <paper-icon-button icon="hardware:keyboard-arrow-right" | 204 <paper-icon-button icon="hardware:keyboard-arrow-right" |
205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
206 class="rtl-reversible"></paper-icon-button> | 206 class="rtl-reversible"></paper-icon-button> |
207 </div> | 207 </div> |
208 </div> | 208 </div> |
209 </template> | 209 </template> |
210 </template> | 210 </template> |
211 <script src="chrome://history/history_toolbar.js"></script> | 211 <script src="chrome://history/history_toolbar.js"></script> |
212 </dom-module> | 212 </dom-module> |
OLD | NEW |