You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
424 lines
7.7 KiB
424 lines
7.7 KiB
13 years ago
|
html, body{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
12 years ago
|
border-radius: 35px;
|
||
12 years ago
|
overflow: hidden;
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
}
|
||
|
|
||
|
body{
|
||
|
background-image: url(../images/bg.png);
|
||
|
}
|
||
|
|
||
|
.toggleButton, .addButton{
|
||
|
width: 20px;
|
||
|
height: 28px;
|
||
|
border: none;
|
||
|
background-image: url(../images/greySquare.png);
|
||
|
font-weight: bold;
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
color: yellow;
|
||
|
cursor: pointer;
|
||
|
border-top-left-radius: 5px;
|
||
|
border-bottom-left-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.buttonDiv, .addButtonDiv{
|
||
|
position: fixed;
|
||
|
float: right;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
.addButtonDiv{
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.leftDiv{
|
||
|
width: 50%;
|
||
|
height: 100%;
|
||
|
float: left;
|
||
|
background-color: black;
|
||
|
border-top-left-radius: 7px;
|
||
|
border-bottom-left-radius: 7px;
|
||
|
}
|
||
|
|
||
|
.rightDiv{
|
||
|
width: 50%;
|
||
|
height: 100%;
|
||
|
float: right;
|
||
|
background-color: yellow;
|
||
|
border-top-right-radius: 7px;
|
||
|
border-bottom-right-radius: 7px;
|
||
|
}
|
||
|
|
||
|
.shadowDiv{
|
||
|
width: 100%;
|
||
12 years ago
|
height: 100%;
|
||
13 years ago
|
display: none;
|
||
|
opacity: 0.7;
|
||
|
background-color: black;
|
||
|
-webkit-border-radius: 3px;
|
||
|
-webkit-border-radius: 3px;
|
||
|
border-radius: 3px;
|
||
|
border-radius: 3px;
|
||
12 years ago
|
z-index: 400;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
13 years ago
|
}
|
||
|
|
||
|
.popupBack{
|
||
|
width: 360px;
|
||
|
height: 138px;
|
||
|
position: absolute;
|
||
|
background-image: url(../images/popupBack.png);
|
||
|
background-repeat: repeat;
|
||
|
-webkit-border-radius: 10px;
|
||
|
-webkit-border-radius: 10px;
|
||
|
border-radius: 10px;
|
||
|
border-radius: 10px;
|
||
|
display: none;
|
||
|
z-index: 500;
|
||
|
}
|
||
|
|
||
|
.popupContainers{
|
||
|
float: left;
|
||
|
width: 98%;
|
||
|
height: 36px;
|
||
|
padding: 5px 3px 5px 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.popupLabels{
|
||
|
color: yellow;
|
||
|
margin: 0 5px;
|
||
|
}
|
||
|
|
||
|
.expresionInput{
|
||
|
float: right;
|
||
|
width: 70%;
|
||
|
border: none;
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
background-color: #ffc;
|
||
|
-webkit-border-radius: 5px;
|
||
|
-webkit-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.popupButtons{
|
||
|
float: right;
|
||
|
width: 74px;
|
||
|
height: 28px;
|
||
|
margin: 4px 5px;
|
||
|
border: none;
|
||
|
background-image: url(../images/greySquare2.png);
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
color: yellow;
|
||
|
cursor: pointer;
|
||
|
-webkit-border-radius: 5px;
|
||
|
-webkit-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.readyTask{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
.taskContainer{
|
||
|
width: 96%;
|
||
|
padding: 2px;
|
||
|
float: left;
|
||
|
text-align: center;
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
font-weight: bold;
|
||
13 years ago
|
font-size:24px;
|
||
12 years ago
|
word-wrap: break-word;
|
||
13 years ago
|
}
|
||
|
|
||
|
.editContainer{
|
||
12 years ago
|
min-width: 200px;
|
||
|
max-width: 240px;
|
||
|
height: auto;
|
||
13 years ago
|
position: absolute;
|
||
|
border: 5px solid #c7c7c7;
|
||
|
-webkit-border-radius: 5px;
|
||
|
-webkit-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.closeItem{
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
position: absolute;
|
||
|
background-image: url(../images/icon-close.png);
|
||
|
right: -15px;
|
||
|
top: -15px;
|
||
|
}
|
||
|
|
||
|
.rightResize{
|
||
|
width: 10px;
|
||
|
height: 65%;
|
||
|
cursor: e-resize;
|
||
|
position: absolute;
|
||
12 years ago
|
background-image: url(../images/trgRight.png);
|
||
|
background-position: center;
|
||
|
background-repeat: no-repeat;
|
||
13 years ago
|
right: -10px;
|
||
12 years ago
|
top: 18%;
|
||
13 years ago
|
}
|
||
|
|
||
|
.bottomResize{
|
||
|
width: 65%;
|
||
|
height: 10px;
|
||
|
cursor: n-resize;
|
||
|
position: absolute;
|
||
12 years ago
|
background-image: url(../images/trgDown.png);
|
||
|
background-position: center;
|
||
|
background-repeat: no-repeat;
|
||
13 years ago
|
bottom: -10px;
|
||
12 years ago
|
left: 18%;
|
||
13 years ago
|
}
|
||
|
|
||
|
/*new design*/
|
||
|
|
||
|
.body_table{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
.selected{
|
||
|
|
||
|
}
|
||
|
|
||
|
/*top*/
|
||
|
|
||
|
.b_top_left{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/top_left.png);
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.b_top_right{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/top_right.png);
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.b_top_center{
|
||
|
height: 54px;
|
||
|
background-image: url(../images/top.png);
|
||
|
background-repeat: repeat-x;
|
||
|
}
|
||
|
|
||
|
/*bottom*/
|
||
|
|
||
|
.b_bottom_left{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/bottom_left.png);
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.b_bottom_right{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/bottom_right.png);
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.b_bottom_center{
|
||
|
background-image: url(../images/bottom.png);
|
||
|
background-repeat: repeat-x;
|
||
|
}
|
||
|
|
||
|
/*center*/
|
||
|
|
||
|
.b_center_left{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/left.png);
|
||
|
background-repeat: repeat-y;
|
||
|
}
|
||
|
|
||
|
.b_center_right{
|
||
|
width: 54px;
|
||
|
background-image: url(../images/right.png);
|
||
|
background-repeat: repeat-y;
|
||
|
}
|
||
|
|
||
|
#data{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
min-height: 250px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
#wgt_name{
|
||
|
height: 44px;
|
||
|
margin: 10px 10px 0 10px;
|
||
|
padding: 0;
|
||
|
float: left;
|
||
12 years ago
|
font-family: sans-serif;
|
||
13 years ago
|
font-size: 24px;
|
||
12 years ago
|
color: #7F613F;
|
||
|
text-shadow: #FFDCA9 0 1px 0;
|
||
13 years ago
|
}
|
||
|
|
||
12 years ago
|
#wgt_reload, #wgt_edit, #wgt_display, #wgt_help{
|
||
13 years ago
|
cursor: pointer;
|
||
|
margin: 10px 10px 0 0;
|
||
|
float: right;
|
||
12 years ago
|
font-family: sans-serif;
|
||
12 years ago
|
font-size: 24px;
|
||
|
line-height: 32px;
|
||
13 years ago
|
}
|
||
|
|
||
|
#wgt_display{
|
||
12 years ago
|
padding-left: 35px;
|
||
|
background: url(../images/toolbar-edit.png) left -32px no-repeat;
|
||
|
color: white;
|
||
13 years ago
|
display: none;
|
||
|
}
|
||
|
|
||
|
#wgt_edit{
|
||
12 years ago
|
padding-left: 35px;
|
||
|
background: url(../images/slate-toolbar-edit.png) left top no-repeat;
|
||
|
color: #7F613F;
|
||
|
text-shadow: #FFDCA9 0 1px 0;
|
||
13 years ago
|
}
|
||
|
|
||
|
#wgt_reload{
|
||
12 years ago
|
padding-left: 35px;
|
||
|
background: url(../images/slate-toolbar-reload.png) left top no-repeat;
|
||
|
color: #7F613F;
|
||
|
text-shadow: #FFDCA9 0 1px 0;
|
||
13 years ago
|
}
|
||
|
|
||
|
#wgt_add{
|
||
11 years ago
|
margin: 0 0 0 10px;
|
||
13 years ago
|
}
|
||
|
|
||
|
.btl_pad{
|
||
|
background-image: url(../images/pad-top-left.png) !important;
|
||
|
}
|
||
|
|
||
|
.btc_pad{
|
||
|
background-image: url(../images/pad-top.png) !important;
|
||
|
}
|
||
|
|
||
|
.btr_pad{
|
||
|
background-image: url(../images/pad-top-right.png) !important;
|
||
|
}
|
||
|
|
||
|
.bcl_pad{
|
||
|
background-image: url(../images/pad-left.png) !important;
|
||
|
}
|
||
|
|
||
|
.bcr_pad{
|
||
|
background-image: url(../images/pad-right.png) !important;
|
||
|
}
|
||
|
|
||
|
.bbl_pad{
|
||
|
background-image: url(../images/pad-bottom-left.png) !important;
|
||
|
}
|
||
|
|
||
|
.bbc_pad{
|
||
|
background-image: url(../images/pad-bottom.png) !important;
|
||
|
}
|
||
|
|
||
|
.bbr_pad{
|
||
|
background-image: url(../images/pad-bottom-right.png) !important;
|
||
|
}
|
||
|
|
||
12 years ago
|
.without_radius{
|
||
|
border-radius: 0 !important;
|
||
13 years ago
|
}
|
||
|
|
||
12 years ago
|
.without_back{
|
||
|
background: none !important;
|
||
13 years ago
|
}
|
||
|
|
||
12 years ago
|
.pad_color{
|
||
|
color: #FC9 !important;
|
||
|
text-shadow: none !important;
|
||
13 years ago
|
}
|
||
|
|
||
12 years ago
|
.pad_reload{
|
||
|
background: url(../images/toolbar-reload.png) left top no-repeat !important;
|
||
13 years ago
|
}
|
||
12 years ago
|
|
||
12 years ago
|
.pad_edit{
|
||
|
background: url(../images/toolbar-edit.png) left top no-repeat !important;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
.pad_help{
|
||
|
background: url(../images/toolbar-help.png) left top no-repeat !important;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
.help_wood{
|
||
|
background: url(../images/slate-toolbar-help.png) left -32px no-repeat !important;
|
||
12 years ago
|
color: white !important;
|
||
12 years ago
|
text-shadow: #7F613F 0 -1px 0 !important;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
.help_pad{
|
||
|
background: url(../images/toolbar-help.png) left -32px no-repeat !important;
|
||
|
color: white !important;
|
||
12 years ago
|
}
|
||
|
|
||
|
#wgt_help{
|
||
12 years ago
|
padding-left: 35px;
|
||
|
background: url(../images/slate-toolbar-help.png) left top no-repeat;
|
||
|
color: #7F613F;
|
||
|
text-shadow: #FFDCA9 0 1px 0;
|
||
12 years ago
|
}
|
||
|
|
||
|
#help{
|
||
|
height: 100%;
|
||
|
overflow: auto;
|
||
|
display: none;
|
||
|
background-color: #ccc;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.open{
|
||
12 years ago
|
|
||
|
}
|
||
|
|
||
|
#parameters{
|
||
|
display: none;
|
||
|
margin: 40px 0 0 0;
|
||
|
padding: 10px 20px;
|
||
|
background: url("../images/parameters-bg.png");
|
||
|
border-radius: 4px 4px 0 0;
|
||
|
}
|
||
|
|
||
|
.inline{
|
||
|
display: inline-block;
|
||
12 years ago
|
font-family: sans-serif;
|
||
12 years ago
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
#parameters label {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
#style_select{
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
|
||
|
.display_wood{
|
||
|
background: url(../images/slate-toolbar-edit.png) left -32px no-repeat !important;
|
||
|
text-shadow: #7F613F 0 -1px 0;
|
||
|
}
|
||
|
|
||
|
.radius_ft{
|
||
|
border-radius: 45px !important;
|
||
12 years ago
|
}
|