Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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