Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Side by Side Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 2324523002: MD Settings: restore super important about page functionality (Closed)
Patch Set: typo Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
38 img { 46 img {
39 -webkit-margin-end: 10px; 47 -webkit-margin-end: 10px;
40 } 48 }
41 49
42 iron-icon { 50 iron-icon {
43 -webkit-margin-end: var(--iron-icon-spacing); 51 -webkit-margin-end: var(--iron-icon-spacing);
44 } 52 }
45 53
46 iron-icon[icon='settings:check-circle'] { 54 iron-icon[icon='settings:check-circle'] {
47 fill: var(--paper-blue-600); 55 fill: var(--paper-blue-600);
(...skipping 15 matching lines...) Expand all
63 71
64 #regulatoryInfo img { 72 #regulatoryInfo img {
65 width: 330px; 73 width: 330px;
66 } 74 }
67 </style> 75 </style>
68 <div> 76 <div>
69 <settings-section page-title="$i18n{aboutPageTitle}" section="about"> 77 <settings-section page-title="$i18n{aboutPageTitle}" section="about">
70 <settings-animated-pages id="pages" section="about"> 78 <settings-animated-pages id="pages" section="about">
71 <neon-animatable route-path="default"> 79 <neon-animatable route-path="default">
72 <div class="settings-box"> 80 <div class="settings-box">
73 <img id="product-logo" 81 <img id="product-logo" on-tap="onProductLogoTap_"
74 srcset="chrome://theme/current-channel-logo@1x 1x, 82 srcset="chrome://theme/current-channel-logo@1x 1x,
75 chrome://theme/current-channel-logo@2x 2x" alt=""> 83 chrome://theme/current-channel-logo@2x 2x" alt="">
76 <span class="product-title">$i18n{aboutProductTitle}</span> 84 <span class="product-title">$i18n{aboutProductTitle}</span>
77 </div> 85 </div>
78 <div class="settings-box two-line"> 86 <div class="settings-box two-line">
79 <iron-icon 87 <iron-icon
80 hidden="[[!shouldShowUpdateStatusIcon_( 88 hidden="[[!shouldShowUpdateStatusIcon_(
81 currentUpdateStatusEvent_)]]" 89 currentUpdateStatusEvent_)]]"
82 icon$="[[getIcon_(currentUpdateStatusEvent_)]]" 90 icon$="[[getIcon_(currentUpdateStatusEvent_)]]"
83 src="[[getIconSrc_(currentUpdateStatusEvent_)]]"> 91 src="[[getIconSrc_(currentUpdateStatusEvent_)]]">
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 <settings-detailed-build-info></settings-detailed-build-info> 183 <settings-detailed-build-info></settings-detailed-build-info>
176 </settings-subpage> 184 </settings-subpage>
177 </template> 185 </template>
178 </if> 186 </if>
179 </settings-animated-pages> 187 </settings-animated-pages>
180 </settings-section> 188 </settings-section>
181 </div> 189 </div>
182 </template> 190 </template>
183 <script src="about_page.js"></script> 191 <script src="about_page.js"></script>
184 </dom-module> 192 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698