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
 * This is the CSS file used for interface details in some dialog
22
 * windows.
1075 ddelon 23
 */
24
 
1921 jp_milcent 25
/* #########
26
 *  WARNING
27
 * #########
28
 * When changing this file, the minified version of it must be updated in the
29
 * fck_dialog_common.js file (see GetCommonDialogCss).
30
 */
31
 
1075 ddelon 32
.ImagePreviewArea
33
{
34
	border: #000000 1px solid;
35
	overflow: auto;
36
	width: 100%;
37
	height: 170px;
38
	background-color: #ffffff;
39
}
40
 
41
.FlashPreviewArea
42
{
43
	border: #000000 1px solid;
44
	padding: 5px;
45
	overflow: auto;
46
	width: 100%;
47
	height: 170px;
48
	background-color: #ffffff;
49
}
50
 
51
.BtnReset
52
{
53
	float: left;
54
	background-position: center center;
55
	background-image: url(images/reset.gif);
56
	width: 16px;
57
	height: 16px;
58
	background-repeat: no-repeat;
59
	border: 1px none;
60
	font-size: 1px ;
61
}
62
 
63
.BtnLocked, .BtnUnlocked
64
{
65
	float: left;
66
	background-position: center center;
67
	background-image: url(images/locked.gif);
68
	width: 16px;
69
	height: 16px;
70
	background-repeat: no-repeat;
71
	border: none 1px;
72
	font-size: 1px ;
73
}
74
 
75
.BtnUnlocked
76
{
77
	background-image: url(images/unlocked.gif);
78
}
79
 
80
.BtnOver
81
{
82
	border: outset 1px;
83
	cursor: pointer;
84
	cursor: hand;
85
}