2013-06-15 11:24:22 +02:00
|
|
|
form {
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
* {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
fieldset {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border-style: none;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.field {
|
|
|
|
clear: both;
|
|
|
|
padding: 0.2em;
|
|
|
|
margin: 0 0 0 10em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
p.checkbox {
|
|
|
|
margin: 0 0 0 8.5em;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.field.nolabel {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
label.left {
|
|
|
|
float: left;
|
|
|
|
width: 10em;
|
|
|
|
margin-left: -10em;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
input.maxlength {
|
|
|
|
width: auto;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.actions{
|
|
|
|
float : right;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.validation, .error, .required {
|
|
|
|
border: 1px solid #f00;
|
|
|
|
background: #fcc;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.field span.readonly {
|
|
|
|
border: 1px #CCC dotted;
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
display: block;
|
|
|
|
width: 98%;
|
|
|
|
padding: 3px;
|
|
|
|
margin:5px 0;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
2013-06-15 11:24:22 +02:00
|
|
|
.indicator.inline {
|
|
|
|
display: inline;
|
|
|
|
margin-left: 5px;
|
|
|
|
vertical-align: middle;
|
2012-01-07 19:23:25 +01:00
|
|
|
}
|
2013-06-15 11:24:22 +02:00
|
|
|
|
|
|
|
.indicator.block {
|
|
|
|
display: inline;
|
2012-01-07 19:23:25 +01:00
|
|
|
}
|
2013-06-15 11:24:22 +02:00
|
|
|
|
|
|
|
// Emulating link styling for actions requiring lesser attention, e.g. "cancel" FormActions
|
|
|
|
button.minorAction {
|
|
|
|
background: none;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
color: #0074C6;
|
|
|
|
text-decoration: underline;
|
2012-01-07 19:23:25 +01:00
|
|
|
}
|
2013-06-15 11:24:22 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Messages
|
|
|
|
*/
|
|
|
|
.message {
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px black solid;
|
|
|
|
background-color: #B9FFB9;
|
|
|
|
border-color: #00FF00;
|
|
|
|
|
|
|
|
&.notice {
|
|
|
|
background-color: #FCFFDF;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.warning {
|
|
|
|
background-color: #FFD2A6;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bad {
|
|
|
|
background-color: #FF8080;
|
|
|
|
border-color: #FF0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.required, &.validation {
|
|
|
|
display:block;
|
|
|
|
margin-top:5px;
|
|
|
|
color:#FF9300;
|
|
|
|
width:240px;
|
|
|
|
border-color: #FF9300;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.validation {
|
|
|
|
color:#FF4040;
|
|
|
|
width:240px;
|
|
|
|
border-color: #FF4040;
|
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
}
|
2013-06-15 11:24:22 +02:00
|
|
|
}
|
2012-01-07 19:23:25 +01:00
|
|
|
|
|
|
|
.typography .ss-tabset ul {
|
|
|
|
margin: 0;
|
2016-01-06 00:34:58 +01:00
|
|
|
}
|