| 1 |
- /***** CSS Reset *****/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
#closeBtn{ cursor:pointer;
height:21px;
width:21px;
border-radius:20px;
background-image:url(/ss/GooFlow/theme/img/cross.png); // (/env/js/GooFlow/codebase/img/cross.png)。Lin
background-repeat:no-repeat;
background-position:center center;
background-color:#b2b2b2;
display:inline-block;
position:absolute;
right:-9px;top:-9px;
transition:all .2s ease-in-out ;
-webkit-transition:all .2s ease-in-out;}
#control table{ font-size:12px;font-weight:bold}
#control tr:last-child th{background-color: #fff; border-right: none;}
#control tr:last-child{border:none;}
#control tr{ line-height:29px;height:29px;border:1px solid #e4e4e4;}
#control th{background-color:#f0f0f0;border-right:1px solid #e4e4e4;}
#control input[type=text],
#control input[type=number]{height:17px;width:138px;border:1px solid #eaeaea;margin-left:10px;margin-right:8px;font-weight:bold;padding-left:10px;font-size:12px;}
#control input[type=checkbox]{margin-left: 10px;}
#control select{margin-left:10px;border:1px solid #ececec;border-radius:4px;background-color:#f1f1f1;font-size:12px;font-weight:bold;}
.elementList{
/*height: auto;
width:120px;*/
background: beige;
border:black 2px solid ;
cursor: hand;
position: relative;
padding:5px;
margin: 5px;
}
.elementListSelected {
height: auto;
width:100px;
/*background: whitesmoke;*/
cursor: hand;
position:relative ;
padding:5px;
margin: 5px;
}
.elementListSelected > div{
background:url(img/gooflow_btn_bg.png) repeat-x;
border-color: red 1px solid;
}
.startOption{
background: black url(codebase/img/start.png) no-repeat;
border: solid 0px;
width: 38px;
height: 38px;
}
.endOption{
background: black url(codebase/img/end.png) no-repeat;
border: solid 0px;
width: 38px;
height: 38px;
}
.lineOption{
background: black url(codebase/img/line.jpg) no-repeat;
border: solid 0px;
width: 38px;
height: 38px
}
.mouseOption{
background: black url(codebase/img/mouse.jpg) no-repeat;
border: solid 0px;
width: 38px;
height: 38px;
}
.taskOption{
background: rgba(186, 157, 229, 0.207843);
border: 2px solid rgb(108, 138, 226);
border-radius: 18px;
width: 84px;
height: 46px;
}
html{overflow-x:hidden; }
|