forked from artefactual/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
90 lines (74 loc) · 2.03 KB
/
form.css
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*********************************************************
ABOUT: form.css
**********************************************************/
/* This stylesheet is used to assign styles to all input form elements
- layout.css is used to structure and style the physical page layout
- menu.css is used to structure and style menus
- all other graphical elements are handled by graphic.css */
/*********************************************************
LANGUAGE - SELECTBOX
**********************************************************/
#language-selector table {
border: 0;
border-collapse: collapse;
margin: 0;
padding: 0;
}
#language-selector td {
border: 0;
vertical-align: center;
}
#language-selector select {
background-color: #FFFFFF;
border: 1px solid #a3a3a3;
width: 153px;
padding: 0 2px 2px 2px;
margin: 5px 0 0 2px;
font: normal 12px Verdana, Arial, Sans-Serif;
float: left;
color: #000000;
}
#language-selector select:focus {
background: #cccccc;
}
#language-selector .form-submit {
font: 11px Verdana, Arial, Sans-Serif;
margin: 5px 0 0 5px;
width: auto;
min-width: 130px;
}
#language-selector .form-submit:hover {
font: 11px Verdana, Arial, Sans-Serif;
margin: 5px 0 0 5px;
width: auto;
min-width: 130px;
}
/*********************************************************
EDIT FORM TRANSLATION BOXES
**********************************************************/
.default-translation {
padding: 0.2em;
margin-bottom: 1em;
margin-right: 1em;
color: #000000;
background: #FFFFE0;
border: 1px dashed #FFD700;
}
.form-item li:hover {
list-style-image: url(../images/delete.png);
}
span.form-required {
/* Reset garland style */
color: #f00;
}
/*********************************************************
FIELDSETS UNDER YUI PANELS
**********************************************************/
.yui-panel fieldset {
background: none;
border: 1px solid #ccc;
}
.form-item-checkbox > label {
display: inline !important;
margin-left: 4px;
}