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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_enable_debugging.css

Issue 539273002: Added UI to enable debugging features on CrOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 2013 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
6 #debugging {
7 display: flex;
8 flex-flow: column;
9 font-size: 16px;
10 min-height: 423px;
11 padding: 40px 17px 80px;
12 text-align: center;
13 width: 722px;
14 }
15
16 #debugging #debugging-controls {
17 bottom: 40px;
18 justify-content: center;
19 margin-top: auto;
20 }
21
22 #debugging-controls button {
23 margin: 0 10px;
24 }
25
26 #debugging #debugging-warning-icon {
27 height: 112px;
28 }
29
30 #debugging #enable-debugging-warning-msg {
31 color: #606060;
32 font-size: 22px;
33 padding: 5px 45px 30px;
34 }
35
36 .enable-debugging-text {
37 color: #606060;
38 }
39
40 #debugging #debugging-warning-details,
41 #debugging #debugging-done-msg {
42 padding: 20px 40px 0;
43 }
44
45 #debugging #debugging-warning-restart {
46 padding: 30px 40px 0;
47 }
48
49 #debugging #enable-debugging-wait-msg {
50 display: inline-block;
51 padding: 25px 0;
52 vertical-align: middle;
53 }
54
55 #debugging #enable-debugging-spinner {
56 margin-top: 0;
57 vertical-align: middle;
58 }
59
60 #enable-debugging-passwords {
61 margin-bottom: 10px;
62 margin-top: 10px;
63 }
64
65 .enable-debugging-password-label {
66 width: 200px;
67 }
68
69 .enable-debugging-password-input {
70 display: flex;
71 flex-wrap: nowrap;
72 justify-content: center;
73 margin-top: 5px;
74 }
75
76 .remove-protection-specific,
77 .setup-specific,
78 .done-specific,
79 .wait-specific {
80 display: none;
81 }
82
83 .remove-protection-view .remove-protection-specific,
84 .setup-view .setup-specific,
85 .wait-view .wait-specific,
86 .done-view .done-specific {
87 display: block;
88 }
89
90 #debugging-remove-protection-button,
91 #debugging-enable-button,
92 #debugging-cancel-button,
93 #debugging-ok-button {
94 display: none;
95 }
96
97 .remove-protection-view #debugging-remove-protection-button,
98 .remove-protection-view #debugging-cancel-button,
99 .setup-view #debugging-enable-button,
100 .setup-view #debugging-cancel-button,
101 .dibe-view #debugging-ok-button {
102 display: inline-block;
103 }
104
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698