Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1075 ddelon 1
/*
1921 jp_milcent 2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 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.
1075 ddelon 22
 */
23
 
24
body
25
{
26
	background-color: #f1f1e3;
1921 jp_milcent 27
	margin-top:0;
28
	margin-bottom:0;
1075 ddelon 29
}
30
 
31
form
32
{
1921 jp_milcent 33
	margin: 0;
34
	padding: 0;
1075 ddelon 35
}
36
 
37
.Frame
38
{
39
	background-color: #f1f1e3;
1921 jp_milcent 40
	border: thin inset #f1f1e3;
1075 ddelon 41
}
42
 
43
body.FileArea
44
{
45
	background-color: #ffffff;
1921 jp_milcent 46
	margin: 10px;
1075 ddelon 47
}
48
 
49
body, td, input, select
50
{
51
	font-size: 11px;
52
	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
53
}
54
 
55
.ActualFolder
56
{
57
	font-weight: bold;
58
	font-size: 14px;
59
}
60
 
61
.PopupButtons
62
{
63
	border-top: #d5d59d 1px solid;
64
	background-color: #e3e3c7;
65
	padding: 7px 10px 7px 10px;
66
}
67
 
68
.Button, button
69
{
70
	color: #3b3b1f;
1921 jp_milcent 71
	border: #737357 1px solid;
1075 ddelon 72
	background-color: #c7c78f;
73
}
74
 
75
.FolderListCurrentFolder img
76
{
77
	background-image: url(images/FolderOpened.gif);
78
}
79
 
80
.FolderListFolder img
81
{
82
	background-image: url(images/Folder.gif);
1921 jp_milcent 83
}
84
 
85
.fullHeight {
86
	height: 100%;
87
}