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="/about_page/about_page_browser_proxy.html"> | 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> |
3 <link rel="import" href="/i18n_setup.html"> | 3 <link rel="import" href="/i18n_setup.html"> |
4 <link rel="import" href="/icons.html"> | 4 <link rel="import" href="/icons.html"> |
5 <link rel="import" href="/lifetime_browser_proxy.html"> | 5 <link rel="import" href="/lifetime_browser_proxy.html"> |
6 <link rel="import" href="/route.html"> | 6 <link rel="import" href="/route.html"> |
7 <link rel="import" href="/settings_page/main_page_behavior.html"> | 7 <link rel="import" href="/settings_page/main_page_behavior.html"> |
8 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 8 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
9 <link rel="import" href="/settings_page/settings_section.html"> | 9 <link rel="import" href="/settings_page/settings_section.html"> |
10 <link rel="import" href="/settings_page_css.html"> | 10 <link rel="import" href="/settings_page_css.html"> |
(...skipping 17 matching lines...) Expand all Loading... |
28 .copyable { | 28 .copyable { |
29 -webkit-user-select: text; | 29 -webkit-user-select: text; |
30 } | 30 } |
31 | 31 |
32 .product-title { | 32 .product-title { |
33 font-size: 20px; | 33 font-size: 20px; |
34 margin-bottom: auto; | 34 margin-bottom: auto; |
35 margin-top: auto; | 35 margin-top: auto; |
36 } | 36 } |
37 | 37 |
38 @-webkit-keyframes spin { | |
39 to { transform: rotate(-10turn); } | |
40 } | |
41 | |
42 #product-logo.spin { | |
43 -webkit-animation: spin 500ms cubic-bezier(1, 0, 0, 1) forwards; | |
44 } | |
45 | |
46 img { | 38 img { |
47 -webkit-margin-end: 10px; | 39 -webkit-margin-end: 10px; |
48 } | 40 } |
49 | 41 |
50 iron-icon { | 42 iron-icon { |
51 -webkit-margin-end: var(--iron-icon-spacing); | 43 -webkit-margin-end: var(--iron-icon-spacing); |
52 } | 44 } |
53 | 45 |
54 iron-icon[icon='settings:check-circle'] { | 46 iron-icon[icon='settings:check-circle'] { |
55 fill: var(--paper-blue-600); | 47 fill: var(--paper-blue-600); |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 <settings-detailed-build-info></settings-detailed-build-info> | 175 <settings-detailed-build-info></settings-detailed-build-info> |
184 </settings-subpage> | 176 </settings-subpage> |
185 </template> | 177 </template> |
186 </if> | 178 </if> |
187 </settings-animated-pages> | 179 </settings-animated-pages> |
188 </settings-section> | 180 </settings-section> |
189 </div> | 181 </div> |
190 </template> | 182 </template> |
191 <script src="about_page.js"></script> | 183 <script src="about_page.js"></script> |
192 </dom-module> | 184 </dom-module> |
OLD | NEW |