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

Side by Side Diff: chrome/browser/resources/welcome/win10/inline.html

Issue 2764623002: [FRE] Unify chrome://welcome and chrome://welcome-win10 button styles. (Closed)
Patch Set: Add missing ';'. Created 3 years, 9 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
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>$i18n{headerText}</title> 5 <title>$i18n{headerText}</title>
6 6
7 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 7 <link rel="import" href="chrome://resources/cr_elements/icons.html">
8 <link rel="import" href="chrome://resources/html/cr.html"> 8 <link rel="import" href="chrome://resources/html/cr.html">
9 <link rel="import" href="chrome://resources/html/action_link.html"> 9 <link rel="import" href="chrome://resources/html/action_link.html">
10 <link rel="import" href="chrome://resources/html/action_link_css.html"> 10 <link rel="import" href="chrome://resources/html/action_link_css.html">
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 line-height: 2.25rem; 146 line-height: 2.25rem;
147 padding: 0 1em; 147 padding: 0 1em;
148 text-align: center; 148 text-align: center;
149 transition: 300ms cubic-bezier(.4, .2, 0, 1); 149 transition: 300ms cubic-bezier(.4, .2, 0, 1);
150 will-change: box-shadow; 150 will-change: box-shadow;
151 } 151 }
152 152
153 .button:hover { 153 .button:hover {
154 background: var(--paper-blue-a400); 154 background: var(--paper-blue-a400);
155 box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1), 0 1px 2px 155 box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1), 0 1px 2px
156 rgba(0, 0, 0, .24) 156 rgba(0, 0, 0, .24);
157 }
158
159 .button:active {
160 background: var(--google-blue-500);
161 }
162
163 .button.keyboard-focus {
164 background: var(--google-blue-700);
157 } 165 }
158 166
159 .logo-small { 167 .logo-small {
160 content: url(chrome://welcome-win10/logo-small.png); 168 content: url(chrome://welcome-win10/logo-small.png);
161 display: inline; 169 display: inline;
162 height: 1.25em; 170 height: 1.25em;
163 vertical-align: top; 171 vertical-align: top;
164 width: 1.25em; 172 width: 1.25em;
165 } 173 }
166 174
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 $i18n{continueText} 362 $i18n{continueText}
355 </paper-button> 363 </paper-button>
356 </template> 364 </template>
357 <script src="/welcome.js"></script> 365 <script src="/welcome.js"></script>
358 </dom-module> 366 </dom-module>
359 </head> 367 </head>
360 <body> 368 <body>
361 <welcome-win10-inline></welcome-win10-inline> 369 <welcome-win10-inline></welcome-win10-inline>
362 </body> 370 </body>
363 </html> 371 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698