2007-09-27 22:56:55 +02:00
|
|
|
/**
|
|
|
|
* Fields
|
|
|
|
*/
|
|
|
|
form fieldset {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .field {
|
|
|
|
clear: both;
|
2007-11-05 22:34:35 +01:00
|
|
|
padding: 0.2em;
|
2007-09-27 22:56:55 +02:00
|
|
|
margin: 0 0 0 10em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2009-02-12 03:54:32 +01:00
|
|
|
form p.checkbox {
|
2009-02-11 22:56:58 +01:00
|
|
|
margin: 0 0 0 8.5em;
|
|
|
|
}
|
|
|
|
|
2007-09-27 22:56:55 +02:00
|
|
|
form .field.nolabel {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
form label.left {
|
|
|
|
float: left;
|
|
|
|
width: 10em;
|
|
|
|
margin-left: -10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
form input.maxlength {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2007-10-18 03:07:35 +02:00
|
|
|
form .actions{
|
2007-09-27 22:56:55 +02:00
|
|
|
float : right;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .validation,
|
|
|
|
form .error,
|
|
|
|
form .required
|
|
|
|
{
|
|
|
|
border: 1px solid #f00;
|
|
|
|
background: #fcc;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .field span.readonly {
|
|
|
|
border: 1px #CCC dotted;
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
display: block;
|
|
|
|
width: 98%;
|
|
|
|
padding: 3px;
|
|
|
|
margin:5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .indicator.inline {
|
|
|
|
display: inline;
|
|
|
|
margin-left: 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .indicator.block {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2008-08-11 02:21:44 +02:00
|
|
|
/* Emulating link styling for actions requiring lesser attention, e.g. "cancel" FormActions */
|
|
|
|
form button.minorAction {
|
|
|
|
background: none;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
color: #0074C6; /* same for "a" tag in cms/css/typography.css */
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2007-09-27 22:56:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Composite Fields - raw concatenation of fields for programmatic purposes.
|
|
|
|
*/
|
2009-05-19 12:32:06 +02:00
|
|
|
.right form div.CompositeField {
|
2007-09-27 22:56:55 +02:00
|
|
|
margin-left: 7.5em;
|
|
|
|
}
|
2009-05-19 12:32:06 +02:00
|
|
|
.right form div.CompositeField div.field {
|
2007-09-27 22:56:55 +02:00
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
2009-05-19 12:32:06 +02:00
|
|
|
.right form div.CompositeField {
|
2007-09-27 22:56:55 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
2009-05-19 12:32:06 +02:00
|
|
|
.right form div.CompositeField label.left {
|
2007-09-27 22:56:55 +02:00
|
|
|
float: left;
|
|
|
|
width: 10em;
|
|
|
|
margin-left: -10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right form div.column2 {
|
|
|
|
float: left;
|
|
|
|
width: 45%;
|
|
|
|
margin-right: 4%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right form div.multicolumn {
|
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Messages
|
|
|
|
*/
|
2009-01-05 07:19:48 +01:00
|
|
|
form .message.notice {
|
|
|
|
background-color: #FCFFDF;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
2007-09-27 22:56:55 +02:00
|
|
|
form .message {
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px black solid;
|
|
|
|
background-color: #B9FFB9;
|
|
|
|
border-color: #00FF00;
|
|
|
|
}
|
|
|
|
form .message.warning {
|
|
|
|
background-color: #FFD2A6;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
|
|
|
form .message.bad {
|
|
|
|
background-color: #FF8080;
|
|
|
|
border-color: #FF0000;
|
|
|
|
}
|
|
|
|
form .message.required,
|
|
|
|
form .message.validation {
|
|
|
|
display:block;
|
|
|
|
margin-top:5px;
|
|
|
|
color:#FF9300;
|
|
|
|
width:240px;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
|
|
|
form .message.validation {
|
|
|
|
color:#FF4040;
|
|
|
|
width:240px;
|
|
|
|
border-color: #FF4040;
|
2009-02-02 00:49:53 +01:00
|
|
|
}
|
2009-11-21 03:22:36 +01:00
|
|
|
|
|
|
|
.typography .ss-tabset ul {
|
|
|
|
margin: 0;
|
|
|
|
}
|