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

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

Issue 9568038: Implement the auto-logout on idle feature for Kiosk mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 font-family: Arial, Helvetica, sans-serif;
8 font-size: 13px;
9 height: 100%;
10 margin: 0;
11 overflow: hidden;
xiyuan 2012/03/01 23:15:56 nit: "width: 100%"?
rkc 2012/03/02 00:10:19 Done.
12 }
13
14 #main-box {
15 border: 1px solid black;
16 }
17
18 #title {
19 background: -webkit-linear-gradient(left, white, #dadada);
20 border-bottom: 1px solid #bbb;
21 font-weight: bold;
22 padding: 10px;
23 }
24
25 #warning {
26 padding: 10px;
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698