source: extensions/ContactForm/include/contactform.css @ 8479

Last change on this file since 8479 was 8479, checked in by Gotcha, 13 years ago

Returns and correction of the jQuery (thank you cljosse) in the header
bug:2065

File size: 2.7 KB
Line 
1div.contact-form {
2        padding-top: 10px;
3        padding-bottom: 10px;
4}
5div.contact-form-content {
6  border-width: 0px;
7  border-style: solid;
8  margin-top: 5px;
9  margin-bottom: 5px;
10  margin-left: 20px;
11  margin-right: 20px;
12  padding: 10px;
13}
14.cf-input-disabled {
15  position: relative;
16}
17.cf-input, .cf-input-disabled {
18  left: 5px;
19}
20td.contact-form-left {
21        padding-right: 5px;
22        text-align: right;
23        vertical-align: middle;
24}
25td.contact-form-left#cf_message_label {
26  vertical-align: top;
27  padding-top: 5px;
28}
29td.contact-form-right {
30  padding-left: 5px;
31  text-align: left;
32}
33#cf-redirect {
34        margin-left: 10em;
35        margin-right: 10em;
36  padding: 5px;
37}
38.cf-log-infos, .cf-log-errors {
39        font-weight: bold;
40}
41div.cf-button {
42        margin-left: 5px;
43}
44
45/* jQuery ui resizable */
46.ui-resizable { position: relative; }
47.ui-wrapper { border: 0; }
48.ui-wrapper input, .ui-wrapper textarea { border: 0; }
49
50/* Global handle styles */
51.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; }
52.ui-resizable .ui-resizable-handle { display: block; }
53body .ui-resizable-disabled .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
54body .ui-resizable-autohide .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
55.ui-resizable-n {
56    cursor: n-resize;
57    height: 6px;
58    width: 100%;
59    top: 0px;
60    left: 0px;
61    background: transparent url('../images/resizable-n.gif') no-repeat scroll center top;
62}
63.ui-resizable-s { cursor: s-resize; height: 6px; width: 100%; bottom: 0px; left: 0px; background: transparent url(../../../admin/themes/roma/images/resizable-s.gif) no-repeat scroll center top; }
64.ui-resizable-e { cursor: e-resize; width: 6px; right: 0px; top: 0px; height: 100%; background: transparent url(../../../admin/themes/roma/images/resizable-e.gif) no-repeat scroll right center; }
65.ui-resizable-w { cursor: w-resize; width: 6px; left: 0px; top: 0px; height: 100%; background: transparent url(../../../admin/themes/roma/images/resizable-w.gif) no-repeat scroll right center; }
66.ui-resizable-se { cursor: se-resize; width: 9px; height: 9px; right: 0px; bottom: 0px; background: transparent url(../../../admin/themes/roma/images/resizable-se.gif); }
67.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: 0px; bottom: 0px; background: transparent url(../../../admin/themes/roma/images/resizable-sw.gif); }
68.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: 0px; top: 0px; background: transparent url(../../../admin/themes/roma/images/resizable-nw.gif); }
69.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: 0px; top: 0px; background: transparent url(../../../admin/themes/roma/images/resizable-ne.gif); }
Note: See TracBrowser for help on using the repository browser.