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

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

Issue 9265026: Implement restart on Idle for Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge. Created 8 years, 11 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
OLDNEW
(Empty)
1 /* Copyright (c) 2012 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 html, body {
7 height: 100%;
8 margin: 0;
9 overflow: hidden;
10 }
11
12 #main-box {
13 border: 1px solid black;
14 }
15
16 #title-box {
17 background: -webkit-linear-gradient(left, #FFFFFF, #DADADA);
flackr 2012/01/27 07:48:04 s/#FFFFFF/white s/#DADADA/#dadada or rgb notation
rkc 2012/02/08 02:52:19 Done.
18 border-bottom: 1px solid #bbbbbb;
flackr 2012/01/27 07:48:04 s/#bbbbbb/#bbb
rkc 2012/02/08 02:52:19 Done.
19 display: -webkit-box;
flackr 2012/01/27 07:48:04 Why do you use webkit-box here and below?
rkc 2012/02/08 02:52:19 Not needed, just the regular div works fine; remov
20 padding: 10px;
21 }
22
23 #warning-box {
24 display: -webkit-box;
25 padding: 10px;
26 }
27
28 .text {
29 font-family: Arial, Helvetica, sans-serif;
30 font-size: 13px;
flackr 2012/01/27 07:48:04 This class seems to be applied to all text on the
rkc 2012/02/08 02:52:19 Done.
31 }
32
33 #title {
34 font-weight: bold;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698