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

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

Issue 2274013002: [Signin Error Dialog] (1/3) Added necessary web components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some comments 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
(Empty)
1 <!-- Common styles for signin-related tab modal dialogs. -->
2 <dom-module id="signin-dialog-shared">
3 <template>
4 <style>
5 a {
6 color: var(--google-blue-700);
7 text-decoration: none;
8 }
9
10 body {
11 margin: 0;
12 padding: 0;
13 }
14
15 paper-button {
16 font-weight: 500;
17 line-height: 16px;
18 margin: 0;
19 padding: 8px 16px;
20 }
21
22 paper-button.primary-action {
23 background: var(--google-blue-500);
24 color: white;
25 --paper-button-flat-keyboard-focus: {
26 background: rgb(58, 117, 215);
27 };
28 }
29
30 paper-button.secondary-action {
31 color: var(--paper-grey-600);
32 --paper-button-flat-keyboard-focus: {
33 background: rgba(0, 0, 0, .12);
34 };
35 }
36
37 .container {
38 background-color: white;
39 color: #333;
40 overflow: hidden;
41 width: 448px;
42 }
43
44 .top-title-bar {
45 align-items: center;
46 border-bottom: 1px solid var(--paper-grey-300);
47 display: flex;
48 font-size: 16px;
49 height: 52px;
50 padding: 0 24px;
51 }
52
53 .action-container {
54 display: flex;
55 justify-content: flex-end;
56 padding: 16px;
57 }
58
59 <if expr="is_macosx or is_linux">
60 .action-container {
61 flex-flow: row-reverse;
62 justify-content: flex-start;
63 }
64 </if>
65
66 </style>
67 </template>
68 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698