2009-07-06 16:51:28 +00:00
|
|
|
body {
|
|
|
|
margin : 0px;
|
|
|
|
padding : 0px;
|
|
|
|
text-align : center;
|
|
|
|
font-family : "Lucida Sans Unicode", Verdana, Helvetica, sans-serif;
|
2009-07-08 09:33:23 +00:00
|
|
|
background-color : #001;
|
2009-07-06 16:51:28 +00:00
|
|
|
color : #000000;
|
|
|
|
font-size : 11pt;
|
|
|
|
|
|
|
|
/* we've avoided Tantek Hacks so far,
|
|
|
|
** but we can't avoid using the non-w3c method of
|
|
|
|
** box rendering. (and therefore one of mozilla's
|
|
|
|
** proprietry -moz properties (which hopefully they'll
|
|
|
|
** drop soon).
|
|
|
|
*/
|
|
|
|
-moz-box-sizing : border-box;
|
|
|
|
box-sizing : border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
-moz-box-sizing : border-box;
|
|
|
|
box-sizing : border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4, label {
|
2009-07-11 03:35:39 +00:00
|
|
|
margin : 0;
|
2009-07-08 09:33:23 +00:00
|
|
|
padding : 4px 2px 2px 0px;
|
2009-07-06 16:51:28 +00:00
|
|
|
float : left;
|
|
|
|
width : 150px;
|
2009-07-08 09:33:23 +00:00
|
|
|
/* height : 24px; */
|
2009-07-06 16:51:28 +00:00
|
|
|
font-weight : bold;
|
|
|
|
text-align : right;
|
|
|
|
font-size : 1.0em;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing : border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size : 1.2em;
|
|
|
|
text-align : center;
|
|
|
|
width : 750px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration : none;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin : 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea, input, select, button, a {
|
|
|
|
font-family : "Lucida Sans Unicode", Verdana, Helvetica, sans-serif;
|
|
|
|
-moz-box-sizing : border-box;
|
|
|
|
box-sizing : border-box;
|
|
|
|
font-size : 1.0em;
|
|
|
|
float : left;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
float : none;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
border : 1px solid #9999ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
br {
|
|
|
|
clear : left;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
div.statusNotRunning {
|
|
|
|
float : left;
|
|
|
|
width : 82px;
|
|
|
|
height : 24px;
|
|
|
|
color : #dd0000;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
div.statusRunning {
|
|
|
|
float : left;
|
|
|
|
width : 82px;
|
|
|
|
height : 24px;
|
|
|
|
color : #00dd00;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
div.statusStarting {
|
|
|
|
float : left;
|
|
|
|
width : 82px;
|
|
|
|
height : 24px;
|
|
|
|
color : #339933;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.statusNotRunning {
|
|
|
|
float : left;
|
|
|
|
width : 78px;
|
|
|
|
height : 24px;
|
|
|
|
overflow : hidden;
|
|
|
|
color : #dd0000;
|
|
|
|
padding-top: 24px;
|
2009-07-11 03:35:39 +00:00
|
|
|
margin-top: 6px;
|
2009-07-06 16:51:28 +00:00
|
|
|
background: url('images/console_status_stopped.png') 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
div.statusRunning {
|
|
|
|
float : left;
|
|
|
|
width : 78px;
|
|
|
|
height : 24px;
|
|
|
|
overflow : hidden;
|
|
|
|
color : #00dd00;
|
|
|
|
padding-top: 24px;
|
2009-07-11 03:35:39 +00:00
|
|
|
margin-top: 6px;
|
2009-07-06 16:51:28 +00:00
|
|
|
background: url('images/console_status_running.png') 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
div.statusStarting {
|
|
|
|
float : left;
|
|
|
|
width : 78px;
|
|
|
|
height : 24px;
|
|
|
|
overflow : hidden;
|
|
|
|
color : #339933;
|
|
|
|
padding-top: 24px;
|
2009-07-11 03:35:39 +00:00
|
|
|
margin-top: 6px;
|
2009-07-06 16:51:28 +00:00
|
|
|
background: url('images/console_status_starting.png') 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
display : none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator, .subdivider {
|
|
|
|
clear : both;
|
|
|
|
height : 1px;
|
|
|
|
margin : 3px 0px 3px 0px;
|
|
|
|
border-bottom : 1px solid #9999ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subdivider {
|
|
|
|
border-bottom : 1px solid #9999ff;
|
|
|
|
padding: 5px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.freetext {
|
|
|
|
width : 150px;
|
2009-07-08 09:33:23 +00:00
|
|
|
/* height : 22px; */
|
2009-07-06 16:51:28 +00:00
|
|
|
border : 1px solid #9999ff;
|
2009-07-08 09:33:23 +00:00
|
|
|
padding: 2px;
|
|
|
|
margin: 4px 0 2px 4px;
|
2009-07-09 20:43:59 +00:00
|
|
|
background-color: #002;
|
2009-07-08 09:33:23 +00:00
|
|
|
font-family: "Lucida Console", Courier, mono;
|
|
|
|
font-weight: bold;
|
2009-07-06 16:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.control {
|
2009-07-11 03:35:39 +00:00
|
|
|
margin : 0 4px 0 4px;
|
2009-07-09 20:43:59 +00:00
|
|
|
padding : 0 0 2px 0;
|
2009-07-06 16:51:28 +00:00
|
|
|
overflow : hidden;
|
2009-07-09 20:43:59 +00:00
|
|
|
height : 20px;
|
2009-07-06 16:51:28 +00:00
|
|
|
width : 60px;
|
|
|
|
font-weight : normal;
|
|
|
|
background-color : #bbbbff;
|
|
|
|
color : black;
|
|
|
|
border : 1px outset #ddddc0;
|
|
|
|
text-align : center;
|
|
|
|
white-space : nowrap;
|
|
|
|
-moz-border-radius: 4px 4px 4px 4px;
|
|
|
|
border 1px solid #000022;
|
|
|
|
font-weight: bold;
|
2009-07-11 03:35:39 +00:00
|
|
|
margin-top: 8px;
|
2009-07-06 16:51:28 +00:00
|
|
|
}
|
|
|
|
|
2009-07-08 09:33:23 +00:00
|
|
|
.control:link {
|
|
|
|
color: #001;
|
|
|
|
}
|
|
|
|
|
2009-07-06 16:51:28 +00:00
|
|
|
.control:hover {
|
2009-07-08 09:33:23 +00:00
|
|
|
|
2009-07-06 16:51:28 +00:00
|
|
|
border: 1px solid #eeeeff;
|
|
|
|
background-color: #003;
|
|
|
|
color:#ff6600
|
|
|
|
}
|
|
|
|
|
|
|
|
.control:active {
|
|
|
|
border : 2px inset;
|
|
|
|
}
|
|
|
|
|
2009-07-08 10:10:03 +00:00
|
|
|
.control:visited {
|
|
|
|
color: #001;
|
|
|
|
}
|
|
|
|
|
2009-07-06 16:51:28 +00:00
|
|
|
.panel {
|
2009-07-11 03:35:39 +00:00
|
|
|
width : 800px;
|
2009-07-06 16:51:28 +00:00
|
|
|
margin : 16px auto 16px auto;
|
|
|
|
overflow : hidden;
|
|
|
|
text-align : left;
|
|
|
|
font-size : 0.8em;
|
2009-07-08 09:33:23 +00:00
|
|
|
color: white;
|
|
|
|
background-color : #002;
|
|
|
|
background: url(images/darkbluebg.png);
|
2009-07-06 16:51:28 +00:00
|
|
|
-moz-border-radius: 4px 4px 4px 4px;
|
2009-07-08 09:33:23 +00:00
|
|
|
border: 1px solid #99f;
|
2009-07-06 16:51:28 +00:00
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel .footer {
|
|
|
|
float : right;
|
|
|
|
padding : 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbox {
|
|
|
|
float : right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rowItem {
|
|
|
|
width : 750px;
|
|
|
|
float : left;
|
|
|
|
margin : 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment {
|
|
|
|
font-style : italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
height : 24px;
|
|
|
|
width : 150px;
|
2009-07-08 09:33:23 +00:00
|
|
|
padding : 4px 0 0 2px;
|
2009-07-06 16:51:28 +00:00
|
|
|
float : left;
|
|
|
|
margin : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accessKey {
|
|
|
|
text-decoration : underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#globalOperationsPanel {
|
2009-07-08 09:33:23 +00:00
|
|
|
background-color : #003;
|
|
|
|
border : 1px solid #f22;
|
|
|
|
background: url(images/lightbluetile.png);
|
2009-07-06 16:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#globalOperationsPanel .control {
|
|
|
|
width : 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2009-07-11 03:35:39 +00:00
|
|
|
-moz-border-radius: 4px;
|
2009-07-06 16:51:28 +00:00
|
|
|
border 1px solid #ff0000;
|
2009-07-08 09:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:link{color:#99f}
|
|
|
|
a:visited{color:#7bb}
|
|
|
|
a:hover{color:#ff6600}
|
2009-07-09 20:43:59 +00:00
|
|
|
a:active{color:#900}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: #002;
|
|
|
|
color: #eef;
|
|
|
|
margin: 0 2px 0 2px;
|
|
|
|
font-family: "Lucida Sans Unicode", Verdana, Tahoma, Helvetica, sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid #99f;
|
|
|
|
padding: 0px 2px 1px 2px;
|
|
|
|
background-color: #001;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input hover {
|
|
|
|
background-color: #f00;
|
|
|
|
color: #eef;
|
|
|
|
margin: 0 2px 0 2px;
|
|
|
|
font-family: "Lucida Sans Unicode", Verdana, Tahoma, Helvetica, sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid #99f;
|
|
|
|
padding: 0px 2px 1px 2px;
|
|
|
|
background-color: #001;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
background-color: #001;
|
|
|
|
color: #eef;
|
2009-07-11 03:35:39 +00:00
|
|
|
margin: 8px 2px 0 2px;
|
2009-07-09 20:43:59 +00:00
|
|
|
font-family: "Lucida Sans Unicode", Verdana, Tahoma, Helvetica, sans-serif;
|
|
|
|
border: 1px solid #99f;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
}
|