taskreport
Version:
A Report Render for TaskBuilder
69 lines (61 loc) • 1.19 kB
CSS
* {
font-family: Microsoft YaHei;
font-size: 14px;
box-sizing: border-box;
}
::-webkit-scrollbar {
/*滚动条整体样式*/
width: 6px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 6px;
}
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #666666;
border-radius: 2px;
}
::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #444;
}
::-webkit-scrollbar-corner {
background: #444;
}
body {
margin: 0;
padding: 0;
background-color: #FFFFFF;
font-size: 14px;
}
#toolBar {
position: absolute;
top: 0;
left: 0;
right: 0;
height:40px;
background-color:#333333;
}
#toolBar div {
float: left;
height:24px;
line-height:24px;
padding-left: 10px;
padding-right: 10px;
background-color:#0066FF;
color: #FFFFFF;
margin-left: 10px;
margin-top: 8px;
border: 0;
border-radius: 4px;
cursor: pointer;
text-align: center;
}
#divReport {
position: absolute;
top: 40px;
left: 0;
right: 0;
bottom: 0;
}