Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
431 ddelon 1
/*
2
 * FCKeditor - The text editor for internet
875 ddelon 3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
431 ddelon 4
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
7
 *
8
 * For further information visit:
9
 * 		http://www.fckeditor.net/
10
 *
521 ddelon 11
 * "Support Open Source software. What about a donation today?"
12
 *
431 ddelon 13
 * File Name: fck_dialog_common.css
14
 * 	This is the CSS file used for interface details in some dialog
15
 * 	windows.
16
 *
17
 * File Authors:
18
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
19
 */
20
 
21
.ImagePreviewArea
22
{
23
	border: #000000 1px solid;
24
	overflow: auto;
25
	width: 100%;
26
	height: 170px;
27
	background-color: #ffffff;
28
}
29
 
30
.FlashPreviewArea
31
{
32
	border: #000000 1px solid;
33
	padding: 5px;
34
	overflow: auto;
35
	width: 100%;
36
	height: 170px;
37
	background-color: #ffffff;
38
}
39
 
40
.BtnReset
41
{
42
	float: left;
43
	background-position: center center;
44
	background-image: url(images/reset.gif);
45
	width: 16px;
46
	height: 16px;
47
	background-repeat: no-repeat;
48
	border: 1px none;
49
	font-size: 1px ;
50
}
51
 
52
.BtnLocked, .BtnUnlocked
53
{
54
	float: left;
55
	background-position: center center;
56
	background-image: url(images/locked.gif);
57
	width: 16px;
58
	height: 16px;
59
	background-repeat: no-repeat;
60
	border: 1px none;
61
	font-size: 1px ;
62
}
63
 
64
.BtnUnlocked
65
{
66
	background-image: url(images/unlocked.gif);
67
}
68
 
69
.BtnOver
70
{
71
	border: 1px outset;
72
	cursor: pointer;
73
	cursor: hand;
74
}
75
 
76
.FCK__FieldNumeric
77
{
521 ddelon 78
	behavior: url(common/fcknumericfield.htc) ;
431 ddelon 79
}