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

Side by Side Diff: chrome/browser/resources/chromeos/oobe.css

Issue 7076014: [cros] Initial implementation for OOBE WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/bug_report.html ('k') | chrome/browser/resources/chromeos/oobe.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 body {
2 cursor: default;
3 font-size: 13px;
4 background: #f1f1f1;
5 }
6
7 .container {
8 -webkit-box-align: center;
9 -webkit-box-pack: center;
10 display: -webkit-box;
11 position: fixed;
12 left: 0;
13 bottom: 0;
14 right: 0;
15 top: 0;
16 }
17
18 .screen {
19 min-height: 425px;
20 min-width: 720px;
21 padding: 0;
22 position: relative;
23 }
24
25 .screen-header {
26 border-bottom: 1px solid #b7b7b7;
27 display: -webkit-box;
28 height: 70px;
29 }
30
31 .screen-header h1 {
32 color: #7b7b7b;
33 font-size: 200%;
34 font-weight: bold;
35 margin: 0;
36 padding: 14px 0 0 14px;
37 }
38
39 .content-area {
40 border-bottom: 1px solid #b7b7b7;
41 box-sizing: border-box;
42 width: 720px;
43 }
44
45 .action-area {
46 -webkit-box-align: center;
47 -webkit-box-orient: horizontal;
48 -webkit-box-pack: end;
49 display: -webkit-box;
50 padding: 12px;
51 }
52
53 html[dir='rtl'] .action-area {
54 left: 0;
55 }
56
57 .action-area-right {
58 display: -webkit-box;
59 }
60
61 .button-strip {
62 -webkit-box-orient: horizontal;
63 display: -webkit-box;
64 }
65
66 .button-strip > button {
67 -webkit-margin-start: 10px;
68 display: block;
69 }
70
71 #welcome-content-area {
72 /* TODO: Flexible model for i18n */
73 padding: 60px 0 0 145px;
74 min-height: 270px;
75 }
76
77 #eula-content-area {
78 /* TODO: Flexible model for i18n */
79 padding: 15px 0 0 0;
80 min-height: 305px;
81 }
82
83 .eula-columns {
84 display: -webkit-box;
85 width: 700px;
86 }
87
88 .eula-full {
89 width: 100%;
90 }
91
92 .eula-frame {
93 border: none;
94 height: 230px;
95 padding: 0 0 0 10px;
96 width: 345px;
97 }
98
99 .eula-single-frame {
100 border: none;
101 height: 230px;
102 padding: 0 0 0 10px;
103 width: 100%;
104 }
105
106 .control-with-label {
107 margin: 10px 0 10px 0;
108 display: -webkit-box;
109 }
110
111 .label {
112 margin: 5px 5px 5px 0;
113 padding: 5px 5px 5px 0;
114 width: 170px;
115 }
116
117 .menu-area {
118 margin: 5px 5px 5px 5px;
119 }
120
121 .menu-control {
122 width: 170px;
123 }
124
125 #enable-crash-reporting {
126 margin: 10px 0 15px 20px;
127 width: 680px;
128 }
129
130 #logging-label {
131 margin-left: 5px;
132 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/bug_report.html ('k') | chrome/browser/resources/chromeos/oobe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698