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.
|
/* Buttons */
.button a, .button-action a, .button-submit-action input, .button-submit input, .button-submit-big input { /* defines general properties of buttons, the font color and typeface, and padding */
color: #ffffff;
font: bold 12px Tahoma;
padding: 2px 8px 3px 8px;
}
.button-submit-action, .button-submit, .button-submit-big, .button, .button-action { /* defines the right part of the background for action button and height */
background: #ef3800 url('images/but_right_action.gif') no-repeat right top;
height: 21px;
}
.button-submit-action, .button-action { /* right padding in action button for all browsers */
padding-right: 17px;
}
.button-submit-action, .button-action, x:-moz-any-link { /* right padding in action button only for Firefox */
padding-right: 15px;
}
.button-submit-action input, .button-submit input, .button-submit-big input, .button-action a { /* defines the left part of the background for action button, height and padding */
background: transparent url('images/but_left_action.gif') no-repeat left top;
padding: 3px 0px 4px 9px;
height: 21px;
line-height: 14px;
}
.button-submit-action input, .button-submit input, .button-submit-big input, .button-action a { /* removes borders and margins */
border: 0px none;
margin: 0px;
}
.button-submit-action input, .button-submit input, .button-submit-big input, .button-action a, x:-moz-any-link { /* defines padding for Firefox */
padding: 1px 0px 4px 6px;
}
.button-submit, .button { /* defines the right part of the background for regular button and right padding */
background: #41ae0e url(images/but_right.gif) no-repeat right top;
padding-right: 1px;
}
.button-submit input, .button a { /* defines the left part of the background for regular button and right padding */
background: url(images/but_left.gif) no-repeat left top;
font: bold 12px Tahoma;
padding: 1px 6px 2px 5px;
}
.button-submit input {
padding-bottom: 4px;
line-height: 16px;
}
/* /Buttons */
|