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

Side by Side Diff: chrome/browser/resources/md_user_manager/shared_styles.html

Issue 1916913010: MD User Manager: latest design change, css refactoring, accessiblity, and bug fixes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-stylesheets
Patch Set: Created 4 years, 7 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 <dom-module id="shared-styles"> 1 <dom-module id="shared-styles">
2 <template> 2 <template>
3 <style> 3 <style>
4 a { 4 :root {
5 --main-text-color: var(--paper-grey-800);
6 --title-icon-color: var(--paper-grey-500);
7 }
8
9 a,
10 a:active,
11 a:hover,
12 a:visited {
5 color: var(--google-blue-700); 13 color: var(--google-blue-700);
14 cursor: pointer;
6 text-decoration: none; 15 text-decoration: none;
7 } 16 }
17
18 paper-button.action {
19 border-radius: 2px;
20 line-height: 32px;
21 margin: 0;
22 min-width: 52px;
23 padding: 0 16px;
24 }
25
26 paper-button.action.primary {
27 --paper-button: {
28 background: var(--google-blue-500);
29 color: white;
30 font-weight: 500;
31 };
32 --paper-button-flat-keyboard-focus: {
33 background: rgb(58, 117, 215);
34 font-weight: 500;
35 };
36 --paper-button-disabled: {
37 background: rgba(66, 133, 244, .5);
38 color: white;
39 };
40 }
41
42 paper-button.action.secondary {
43 --paper-button: {
44 color: var(--paper-grey-600);
45 font-weight: 500;
46 };
47 --paper-button-flat-keyboard-focus: {
48 background: rgba(0, 0, 0, .12);
49 font-weight: 500;
50 };
51 }
52
53 paper-button.action + paper-button.action {
54 -webkit-margin-start: 8px;
55 }
8 </style> 56 </style>
9 </template> 57 </template>
10 </dom-module> 58 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698