2007-07-19 12:40:05 +02:00
|
|
|
@import url("typography.css");
|
|
|
|
|
|
|
|
html,body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border-style: none;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin: 0; padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Selection Groups
|
|
|
|
*/
|
|
|
|
.SelectionGroup {
|
|
|
|
padding: 0;
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
}
|
|
|
|
.SelectionGroup li {
|
|
|
|
list-style-type: none;
|
2007-11-11 23:08:50 +01:00
|
|
|
margin: 0 0 4px;
|
|
|
|
}
|
|
|
|
.SelectionGroup li label {
|
|
|
|
font-size: 11px;
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
|
|
|
.SelectionGroup li input.selector {
|
|
|
|
width: 20px;
|
2007-11-11 23:08:50 +01:00
|
|
|
margin-top: 0;
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.SelectionGroup li div.field {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.SelectionGroup li.selected div.field {
|
|
|
|
display: block;
|
2007-11-11 23:08:50 +01:00
|
|
|
margin-left: 30px;
|
2007-07-19 12:40:05 +02:00
|
|
|
margin-bottom: 1em;
|
2007-11-11 23:08:50 +01:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.mainblock .SelectionGroup li.selected div.field {
|
|
|
|
margin-left: 27px;
|
|
|
|
margin-bottom: 4px;
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
2007-11-11 23:08:50 +01:00
|
|
|
|
2007-07-19 12:40:05 +02:00
|
|
|
.SelectionGroup li.selected label.selector {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TreeDropdownField stying
|
|
|
|
*/
|
2007-11-11 23:08:50 +01:00
|
|
|
.SelectionGroup div.TreeDropdownField {
|
2007-07-19 12:40:05 +02:00
|
|
|
width: 241px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
html>body div.TreeDropdownField {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
2007-11-11 23:08:50 +01:00
|
|
|
.SelectionGroup div.TreeDropdownField span.items {
|
2007-07-19 12:40:05 +02:00
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
border: 1px #7f9db9 solid;
|
|
|
|
cursor: pointer;
|
2007-11-11 23:08:50 +01:00
|
|
|
width: 214px;
|
2007-07-19 12:40:05 +02:00
|
|
|
float: left;
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2007-11-11 23:08:50 +01:00
|
|
|
.SelectionGroup div.TreeDropdownField div.tree_holder {
|
2007-07-19 12:40:05 +02:00
|
|
|
clear: left;
|
|
|
|
cursor: default;
|
|
|
|
border: 1px black solid;
|
|
|
|
margin: 0;
|
|
|
|
height: 180px;
|
|
|
|
overflow: auto;
|
|
|
|
background-color: white;
|
|
|
|
/**
|
|
|
|
* HACK IE6, see http://www.hedgerwow.com/360/bugs/css-select-free.html
|
|
|
|
*/
|
|
|
|
position:absolute;
|
|
|
|
z-index:10;
|
2007-11-11 23:08:50 +01:00
|
|
|
width:238px;/*must have for any value*/
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html>body div.TreeDropdownField div.tree_holder {
|
|
|
|
top: 20px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HACK IE6, see http://www.hedgerwow.com/360/bugs/css-select-free.html
|
|
|
|
*/
|
2007-11-11 23:08:50 +01:00
|
|
|
.SelectionGroup div.TreeDropdownField div.tree_holder iframe {
|
2007-07-19 12:40:05 +02:00
|
|
|
display:none;/* IE5*/
|
|
|
|
display/**/:block;/* IE5*/
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
z-index:-1;
|
|
|
|
filter:mask();
|
|
|
|
width:180px; /*must have for any big value*/
|
|
|
|
height:200px/*must have for any big value*/;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.TreeDropdownField a.editLink {
|
|
|
|
border-width: 1px 1px 1px 0;
|
|
|
|
background: url(../../sapphire/images/TreeDropdownField_button.gif) left top no-repeat;
|
|
|
|
width: 19px;
|
|
|
|
height: 21px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
float: left;
|
|
|
|
clear: right;
|
|
|
|
z-index: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.Actions {
|
|
|
|
text-align: right;
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainblock {
|
|
|
|
float: left;
|
|
|
|
border: 1px #CCC solid;
|
|
|
|
padding: 5px;
|
|
|
|
margin-right: 5px;
|
2007-09-14 21:41:51 +02:00
|
|
|
height: 140px;
|
2007-07-19 12:40:05 +02:00
|
|
|
position: relative;
|
2007-11-11 23:08:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainblock form fieldset {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainblock form div.Actions input {
|
|
|
|
font-size: 11px;
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|