Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2010 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
body { background-color: #bcd5eb; margin-top: 0; margin-bottom: 0; }
24
body, td, input, select { font-size: 11px; font-family: Arial, Helvetica, Verdana, sans-serif; }
25
body.FileArea { background-color: #f2f9f9; margin: 3px; }
26
form { margin: 0; padding: 0; }
27
img { border: 0; }
28
.ActualFolder {
29
	font-size: 18px;
30
	font-weight: bold;
31
	background-color: #e5eff8;
32
	border: solid 2px #f0f0f0;
33
}
34
.Button, button { -moz-border-radius: 6px; border-radius: 6px; }
35
.FolderListCurrentFolder img { background-image: url(images/FolderOpened.gif); }
36
.FolderListCurrentFolder a { color: #bf2f42; font-weight: bold; }
37
.FolderListFolder img { background-image: url(images/Folder.gif); }
38
.FolderListFolder a { color: #003366; }
39
.fullHeight { height: 100%; }
40
.PopupButtons {
41
	border-top: #d5d59d 1px solid;
42
	background-color: #e3e3c7;
43
	padding: 7px 10px 7px 10px;
44
}
45
.createFolder { background-color: #dbf89f; cursor: pointer; width: 125px; }
46
.createFolder:hover { background-color: #ccff66; }
47
div.file {
48
	background-color: #ffffff;
49
	text-align: center;
50
	margin: 3px;
51
	padding: 3px;
52
	width: 150px;
53
	height: 150px;
54
	float: left;
55
	border: double 3px #cccccc;
56
	border-radius: 8px;
57
	-moz-border-radius: 8px;
58
}
59
div.file:hover { background-color: #dbf89f; }
60
.fSize {
61
	color: #444444;
62
	background-color: #ededed;
63
	text-align: left;
64
	display: block;
65
	padding: 2px;
66
}
67
.icon { padding: 35px 10px 10px; }
68
.thumbnail { margin: 4px auto; height: 64px; overflow: hidden; }
69
img.thumb { padding: 2px; width: auto; height: 78px; }
70
img.icon { padding-top: 37px; }
71
.filename { background-color: #ededed; margin: 2px; padding: 2px; overflow: hidden; }
72
.filename a { color: #003366; font-size: 10px; text-decoration: none; }
73
fieldset.fUpload { background-color: #f0f0f0; -moz-border-radius: 6px; border-radius: 6px; }
(1-1/10)