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

Side by Side Diff: chrome/browser/resources/signin/signin_shared_css.html

Issue 2569243002: Change the radio button styling to the sign-in confirmation dialog (Closed)
Patch Set: Nit Created 4 years 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 | « no previous file | 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 <!-- Common styles for signin-related tab modal dialogs. --> 1 <!-- Common styles for signin-related tab modal dialogs. -->
2 <dom-module id="signin-dialog-shared"> 2 <dom-module id="signin-dialog-shared">
3 <template> 3 <template>
4 <style> 4 <style>
5 a { 5 a {
6 color: var(--google-blue-700); 6 color: var(--google-blue-700);
7 text-decoration: none; 7 text-decoration: none;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 20 matching lines...) Expand all
31 } 31 }
32 32
33 paper-button.secondary-action { 33 paper-button.secondary-action {
34 --paper-button-flat-keyboard-focus: { 34 --paper-button-flat-keyboard-focus: {
35 background: rgba(0, 0, 0, .12); 35 background: rgba(0, 0, 0, .12);
36 }; 36 };
37 color: var(--paper-grey-600); 37 color: var(--paper-grey-600);
38 } 38 }
39 39
40 paper-radio-button { 40 paper-radio-button {
41 color: #333; 41 --paper-radio-button-checked-color: var(--google-blue-500);
42 --paper-radio-button-ink-size: 40px;
43 --paper-radio-button-label-spacing: 16px;
42 } 44 }
43 45
44 .container { 46 .container {
45 background-color: white; 47 background-color: white;
46 color: #333; 48 color: #333;
47 /* Scrollbars are hidden as the sign-in dialogs are automatically 49 /* Scrollbars are hidden as the sign-in dialogs are automatically
48 resized.*/ 50 resized.*/
49 overflow: hidden; 51 overflow: hidden;
50 width: 448px; 52 width: 448px;
51 } 53 }
(...skipping 16 matching lines...) Expand all
68 <if expr="is_macosx or is_linux"> 70 <if expr="is_macosx or is_linux">
69 .action-container { 71 .action-container {
70 flex-flow: row-reverse; 72 flex-flow: row-reverse;
71 justify-content: flex-start; 73 justify-content: flex-start;
72 } 74 }
73 </if> 75 </if>
74 76
75 </style> 77 </style>
76 </template> 78 </template>
77 </dom-module> 79 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698