.page-container {
|
position: relative;
|
height: 100%;
|
overflow-y: auto;
|
}
|
.page-container.page-container-fixed {
|
position: fixed;
|
top: 0;
|
left: 0;
|
width: 100%;
|
height: 100%;
|
}
|
.page-container .graph{
|
height: 100%;
|
}
|
|
/* height */
|
.h500 {
|
height: 500px;
|
}
|
.h600 {
|
height: 600px;
|
}
|
/* bg-color */
|
.bg-white {
|
background-color: #FFFFFF;
|
}
|
.bg-primary {
|
background-color: #2d8cf0
|
}
|
.bg-info {
|
background-color: #2db7f5;
|
}
|
.bg-success {
|
background-color: #19be6b;
|
}
|
.bg-error {
|
background-color: #ed4014;
|
}
|
/* margin */
|
.mrt8 {
|
margin-top: 8px;
|
}
|
.mrr8 {
|
margin-right: 8px;
|
}
|
/* table cell bg */
|
|
.ivu-table .bg-error {
|
background-color: #ed4014;
|
color: #FFFFFF;
|
}
|
|
/*滚动条整体样式*/
|
::-webkit-scrollbar{
|
width: 10px;/*竖向滚动条的宽度*/
|
height: 10px;/*横向滚动条的高度*/
|
}
|
::-webkit-scrollbar-thumb{/*滚动条里面的小方块*/
|
background: #666666;
|
border-radius: 5px;
|
}
|
::-webkit-scrollbar-track{/*滚动条轨道的样式*/
|
background: #ccc;
|
border-radius: 5px;
|
}
|