Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2009 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

    
24
body
25
{
26
	background-color: #f1f1e3;
27
	margin-top:0;
28
	margin-bottom:0;
29
}
30

    
31
form
32
{
33
	margin: 0;
34
	padding: 0;
35
}
36
img {
37
	border: 0px;
38
}
39
.icon {
40
	width: 16px;
41
	padding: 10px;
42
}
43
.filename {
44
	width: 50%;
45
	padding: 10px;
46
}
47
.thumbnail {
48
	width: 80px;
49
	padding: 10px;
50
}
51
.Frame
52
{
53
	background-color: #f1f1e3;
54
	border: thin inset #f1f1e3;
55
}
56

    
57
body.FileArea
58
{
59
	background-color: #ffffff;
60
	margin: 10px;
61
}
62

    
63
body, td, input, select
64
{
65
	font-size: 11px;
66
	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
67
}
68

    
69
.ActualFolder
70
{
71
	font-weight: bold;
72
	font-size: 14px;
73
}
74

    
75
.PopupButtons
76
{
77
	border-top: #d5d59d 1px solid;
78
	background-color: #C1D3FB;
79
	padding: 7px 10px 7px 10px;
80
}
81

    
82
.Button, button
83
{
84
	color: #0000CD;
85
	border: 1px solid #0000CD;
86
	background-color: #B3C9FA;
87
}
88

    
89
.FolderListCurrentFolder img
90
{
91
	background-image: url(images/FolderOpened.gif);
92
}
93

    
94
.FolderListFolder img
95
{
96
	background-image: url(images/Folder.gif);
97
}
98

    
99
.fullHeight {
100
	height: 100%;
101
}
102

    
(1-1/12)