1/*
2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
4 *
5 * == BEGIN LICENSE ==
6 *
7 * Licensed under the terms of any of the following licenses at your
8 * choice:
9 *
10 *  - GNU General Public License Version 2 or later (the "GPL")
11 *    http://www.gnu.org/licenses/gpl.html
12 *
13 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14 *    http://www.gnu.org/licenses/lgpl.html
15 *
16 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17 *    http://www.mozilla.org/MPL/MPL-1.1.html
18 *
19 * == END LICENSE ==
20 *
21 * CSS styles used by all pages that compose the File Browser.
22 */
23
24body
25{
26	background-color: #f1f1e3;
27}
28
29form
30{
31	margin: 0px 0px 0px 0px ;
32	padding: 0px 0px 0px 0px ;
33}
34
35.Frame
36{
37	background-color: #f1f1e3;
38	border-color: #f1f1e3;
39	border-right: thin inset;
40	border-top: thin inset;
41	border-left: thin inset;
42	border-bottom: thin inset;
43}
44
45body.FileArea
46{
47
48	background-color: #ffffff;
49	margin: 10px;
50}
51
52body, td, input, select
53{
54	font-size: 11px;
55	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
56}
57
58.ActualFolder
59{
60	font-weight: bold;
61	font-size: 14px;
62}
63
64.PopupButtons
65{
66	border-top: #d5d59d 1px solid;
67	background-color: #e3e3c7;
68	padding: 7px 10px 7px 10px;
69}
70
71.Button, button
72{
73	border-right: #737357 1px solid;
74	border-top: #737357 1px solid;
75	border-left: #737357 1px solid;
76	color: #3b3b1f;
77	border-bottom: #737357 1px solid;
78	background-color: #c7c78f;
79}
80
81.FolderListCurrentFolder img
82{
83	background-image: url(images/FolderOpened.gif);
84}
85
86.FolderListFolder img
87{
88	background-image: url(images/Folder.gif);
89}