summaryrefslogtreecommitdiffstats
path: root/frontends/php/styles/form.css
blob: 46a7514feec8e4fd6c3e21858e49b500a03389b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* CSS Document */

/**************** FORM ELEMENTS ****************/
select{
	cursor: pointer;
}

.biginput{
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	border: 1px solid gray;
	background-color: white;
	margin: 2px;
}
.biginput:focus	{
	border-color: black;
}
.biginput:hover	{
	border-color: black;
}

.biginput[readonly]{
/* NOTE: Ignored by IE */
	border-color: #D0D0D0;
	background-color: #EEEEEE;
}

.button{
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	background: #F0F0F0 url('../images/gradients/button.gif') repeat-x top left;
	border: 1px solid #808080;
	height: 18px;
	padding: 0px 5px 0px 5px;
	margin: 2px;
	cursor: pointer;
}

.button:hover{
	text-decoration: underline;
	border-color: black;
}

.checkbox{
	cursor: pointer;
}