Subversion Repositories Applications.papyrus

Rev

Rev 431 | 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
3
 * Copyright (C) 2003-2005 Frederico Caldeira Knabben
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
	padding: 5px;
25
	overflow: auto;
26
	width: 100%;
27
	height: 170px;
28
	background-color: #ffffff;
29
}
30
 
31
.FlashPreviewArea
32
{
33
	border: #000000 1px solid;
34
	padding: 5px;
35
	overflow: auto;
36
	width: 100%;
37
	height: 170px;
38
	background-color: #ffffff;
39
}
40
 
41
.BtnReset
42
{
43
	float: left;
44
	background-position: center center;
45
	background-image: url(images/reset.gif);
46
	width: 16px;
47
	height: 16px;
48
	background-repeat: no-repeat;
49
	border: 1px none;
50
	font-size: 1px ;
51
}
52
 
53
.BtnLocked, .BtnUnlocked
54
{
55
	float: left;
56
	background-position: center center;
57
	background-image: url(images/locked.gif);
58
	width: 16px;
59
	height: 16px;
60
	background-repeat: no-repeat;
61
	border: 1px none;
62
	font-size: 1px ;
63
}
64
 
65
.BtnUnlocked
66
{
67
	background-image: url(images/unlocked.gif);
68
}
69
 
70
.BtnOver
71
{
72
	border: 1px outset;
73
	cursor: pointer;
74
	cursor: hand;
75
}
76
 
77
.FCK__FieldNumeric
78
{
521 ddelon 79
	behavior: url(common/fcknumericfield.htc) ;
431 ddelon 80
}