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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.css

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments #2 Created 4 years, 10 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 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .container {
6 font-size: 13px;
7 margin: 64px auto;
8 width: 556px;
9 }
10
11 #title-bar {
12 border-bottom: 1px solid rgba(0, 0, 0, .12);
13 font-size: 16px;
14 padding-bottom: 20px;
15 }
16
17 #nameInput {
18 --paper-input-container-input: {
19 color: #333;
20 font-size: inherit;
21 };
22 width: 300px;
23 }
24
25 paper-dropdown-menu {
26 --paper-input-container-input: {
27 color: #333;
28 font-size: inherit;
29 };
30 position: relative;
31 top: -1px;
32 width: 200px;
33 }
34
35 #icons {
36 margin-top: 24px;
37 }
38
39 #icons #wrapper {
40 margin: -12px -10px;
41 }
42
43 #icons paper-button {
44 background: rgb(222, 222, 222);
45 border: 1px solid rgba(0, 0, 0, .12);
46 margin: 12px 10px;
47 min-width: 0;
48 padding: 6px 4px;
49 }
50
51 #icons paper-button[active] {
52 border-color: var(--google-blue-500);
53 }
54
55 #icons paper-button:focus:not([active]) {
56 outline: 1px dotted #666;
57 }
58
59 #createSupervisedContainer {
60 color: #333;
61 margin-top: 10px;
62 }
63
64 #messageBubble {
65 -webkit-transition: max-height 200ms, padding 200ms;
66 background-color: rgb(238, 185, 57);
67 border-radius: 4px;
68 font-weight: bold;
69 margin-left: auto;
70 margin-right: auto;
71 margin-top: 16px;
72 max-height: 50px;
73 overflow: hidden;
74 padding: 10px 10px;
75 text-align: center;
76 width: 80%;
77 }
78
79 #messageBubble:empty {
80 display: none;
81 }
82
83 #actions {
84 margin-top: 32px;
85 }
86
87 #actions paper-button {
88 border-radius: 2px;
89 line-height: 32px;
90 min-width: 52px;
91 padding: 0 16px;
92 }
93
94 #cancel-button {
95 color: rgb(90, 90, 90);
96 }
97
98 #ok-button {
99 -webkit-margin-end: 0;
100 background: var(--google-blue-500);
101 color: #fff;
102 }
103
104 #ok-button[disabled] {
105 background: rgba(66, 133, 244, .5);
106 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_user_manager/control_bar.js ('k') | chrome/browser/resources/md_user_manager/create_profile.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698