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

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

Issue 2625663003: Layout nits for the signin email confirmation dialog. (Closed)
Patch Set: Created 3 years, 11 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 <!-- 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 23 matching lines...) Expand all
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 --paper-radio-button-checked-color: var(--google-blue-500); 41 --paper-radio-button-checked-color: var(--google-blue-500);
42 --paper-radio-button-ink-size: 40px; 42 --paper-radio-button-ink-size: 40px;
43 --paper-radio-button-label-spacing: 16px; 43 --paper-radio-button-label-spacing: 16px;
44 --paper-radio-button-unchecked-color: var(--google-grey-600);
44 } 45 }
45 46
46 .container { 47 .container {
47 background-color: white; 48 background-color: white;
48 color: #333; 49 color: #333;
49 /* Scrollbars are hidden as the sign-in dialogs are automatically 50 /* Scrollbars are hidden as the sign-in dialogs are automatically
50 resized.*/ 51 resized.*/
51 overflow: hidden; 52 overflow: hidden;
52 width: 448px; 53 width: 448px;
53 } 54 }
(...skipping 16 matching lines...) Expand all
70 <if expr="is_macosx or is_linux"> 71 <if expr="is_macosx or is_linux">
71 .action-container { 72 .action-container {
72 flex-flow: row-reverse; 73 flex-flow: row-reverse;
73 justify-content: flex-start; 74 justify-content: flex-start;
74 } 75 }
75 </if> 76 </if>
76 77
77 </style> 78 </style>
78 </template> 79 </template>
79 </dom-module> 80 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698