2010-12-01 19:40:02 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
2010-12-10 20:25:54 +00:00
|
|
|
input[type="text"],
|
|
|
|
input[type="password"]{
|
2010-12-02 22:46:06 +00:00
|
|
|
border: 0;
|
|
|
|
font-size: 14px;
|
2010-12-10 20:25:54 +00:00
|
|
|
padding: .5em;
|
2010-12-02 22:46:06 +00:00
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #e0dfdf;
|
|
|
|
border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
2010-12-06 22:04:40 +00:00
|
|
|
-webkit-border-radius: 5px;
|
2010-12-20 13:41:34 +00:00
|
|
|
margin-bottom: 0.8em;
|
2010-12-01 19:40:02 +00:00
|
|
|
}
|
2010-12-06 22:04:40 +00:00
|
|
|
label{
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
input#submit,
|
2010-12-13 20:16:26 +00:00
|
|
|
input#submit:visited{
|
2010-12-02 22:46:06 +00:00
|
|
|
background: #222 url(../images/alert-overlay.png) repeat-x;
|
|
|
|
display: inline-block;
|
2010-12-06 22:04:40 +00:00
|
|
|
padding: 5px 18px 7px;
|
2010-12-02 22:46:06 +00:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
position: relative;
|
|
|
|
border: 0;
|
2010-12-06 22:04:40 +00:00
|
|
|
margin: 0;
|
2010-12-02 22:46:06 +00:00
|
|
|
background-color: #749a02;
|
|
|
|
color: #fff;
|
2010-12-06 22:04:40 +00:00
|
|
|
font-size: 14px;
|
2010-12-02 22:46:06 +00:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1;
|
2010-12-10 20:25:54 +00:00
|
|
|
margin-right: .6em;
|
2010-12-20 21:04:45 +00:00
|
|
|
margin-top: .5em;
|
2010-12-02 22:46:06 +00:00
|
|
|
}
|
2010-12-10 20:25:54 +00:00
|
|
|
input#delete,
|
2010-12-13 20:16:26 +00:00
|
|
|
input#delete:visited{
|
2010-12-08 20:45:13 +00:00
|
|
|
background: #222 url(../images/alert-overlay.png) repeat-x;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 18px 7px;
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #398aac;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1;
|
2010-12-10 20:25:54 +00:00
|
|
|
margin-right: .6em;
|
2010-12-08 20:45:13 +00:00
|
|
|
}
|
2010-12-13 20:16:26 +00:00
|
|
|
input#submit:hover{
|
2010-12-02 22:46:06 +00:00
|
|
|
color: #fff;
|
2010-12-06 22:04:40 +00:00
|
|
|
background-color: #b2d15a;
|
|
|
|
}
|
2010-12-13 20:16:26 +00:00
|
|
|
input#delete:hover{
|
2010-12-08 20:45:13 +00:00
|
|
|
color: #fff;
|
|
|
|
background-color: #93c3d4;
|
|
|
|
}
|
2010-12-10 20:25:54 +00:00
|
|
|
input#delete:active,
|
2010-12-13 20:16:26 +00:00
|
|
|
input#submit:active{
|
2010-12-06 22:04:40 +00:00
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
form textarea {
|
|
|
|
border: 1px solid #e0dfdf;
|
2010-12-02 22:46:06 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
2010-12-06 22:04:40 +00:00
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
}
|
|
|
|
form a:link.cancel, form a:visited.cancel {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: #f70;
|
|
|
|
border-color: none;
|
|
|
|
}
|
|
|
|
form a:hover.cancel, form a:active.cancel {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #f70;
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.validationError {
|
2010-12-02 22:46:06 +00:00
|
|
|
font-weight: normal;
|
2010-12-06 22:04:40 +00:00
|
|
|
color: #cc0000;
|
2010-12-10 20:25:54 +00:00
|
|
|
margin-bottom: .3em;
|
2010-12-02 22:46:06 +00:00
|
|
|
}
|
2010-12-06 22:04:40 +00:00
|
|
|
p.submit {
|
2010-12-10 20:25:54 +00:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
2010-12-06 22:04:40 +00:00
|
|
|
}
|
|
|
|
.editingForm table {
|
|
|
|
border-color: #dfe6e6;
|
|
|
|
}
|
|
|
|
.editingForm td{
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
.editingForm .entryFormHead {
|
|
|
|
background-color: #f1f2ee;
|
|
|
|
border-color: #dfe6e6;
|
|
|
|
}
|
|
|
|
.editingForm .entryFormHead h2{
|
|
|
|
color: #5F6464;
|
|
|
|
}
|
|
|
|
.form-item {
|
|
|
|
margin-top:.3em;
|
|
|
|
background-color: #fff;
|
2010-12-10 20:25:54 +00:00
|
|
|
border-color: #e0dfdf;
|
2010-12-06 22:04:40 +00:00
|
|
|
font-size: .8em;
|
|
|
|
border-width: 1px;
|
|
|
|
color: #595B5B;
|
|
|
|
padding: .3em;
|
|
|
|
}
|
|
|
|
.navlinkblock {
|
|
|
|
color: #5F6464;
|
|
|
|
}
|
|
|
|
.header {
|
|
|
|
color: #5F6464;
|
|
|
|
}
|
|
|
|
.database_header {
|
|
|
|
background-color: #f1f2ee;
|
|
|
|
color: #2485ae;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.database_upperleftcorner {
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.database_upperleftcenter {
|
|
|
|
background-color: #B0C4DE;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.rownumheader {
|
|
|
|
background-color: #F1F2EE;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.headercenter {
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 10pt;
|
|
|
|
font-style: normal;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.postheader {
|
|
|
|
background-color: #E6E6FA;
|
|
|
|
color: #777;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.database_postheader {
|
|
|
|
background-color: #f7f9f9;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.postheadercenter {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.postheaderright {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
.verticalfieldlabel {
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: .8em;
|
|
|
|
}
|
|
|
|
.row, .rowvert {
|
|
|
|
background-color: #f7f9f9;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 10pt;
|
|
|
|
font-style: normal;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
|
|
|
.rowalternate {
|
|
|
|
background-color: #fff;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
|
|
|
.rowbold {
|
|
|
|
background-color: #FFFAFA;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
2010-12-02 22:46:06 +00:00
|
|
|
}
|
2010-12-06 22:04:40 +00:00
|
|
|
.rownum {
|
|
|
|
background-color: #F1F2EE;
|
|
|
|
color: #5F6464;
|
|
|
|
font-size: 1em;
|
2010-12-09 19:11:44 +00:00
|
|
|
}
|
|
|
|
.form-background {
|
|
|
|
background-color: #fff;
|
2010-12-10 20:25:54 +00:00
|
|
|
}
|
|
|
|
.formsEdit p{
|
2010-12-17 16:41:24 +00:00
|
|
|
/*padding-top: 1em;*/
|
2010-12-20 21:04:45 +00:00
|
|
|
margin-bottom: 1.8em;
|
2010-12-10 20:25:54 +00:00
|
|
|
padding-bottom: 0;
|
2010-12-20 21:04:45 +00:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.formsEdit p.validationError{
|
|
|
|
margin-bottom: 1.8em;
|
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
font-size: .8em;
|
2010-12-10 20:25:54 +00:00
|
|
|
}
|
|
|
|
form.deleteForm{
|
|
|
|
margin-top: 2em;
|
|
|
|
padding-top: 1em;
|
|
|
|
border-top: 1px dotted #e3e9e9;
|
|
|
|
}
|
|
|
|
form h3.delete-entry{
|
|
|
|
padding-right: .8em;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
form h2{
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
form select{
|
|
|
|
border: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: .5em;
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #e0dfdf;
|
|
|
|
border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
2010-12-20 13:54:57 +00:00
|
|
|
margin-bottom: 0.8em;
|
2010-12-10 20:25:54 +00:00
|
|
|
margin-top: .7em;
|
|
|
|
margin-right: .5em;
|
2010-12-13 20:16:26 +00:00
|
|
|
}
|
|
|
|
.notice{
|
|
|
|
margin-top: 1em;
|
|
|
|
border: 1px dotted #FFD324;
|
2010-12-06 22:04:40 +00:00
|
|
|
}
|