muf-ui
Version:
MUF-UI,基于Vue的Web多样化组件库
131 lines (104 loc) • 2.12 kB
CSS
.window_footer {
position: absolute;
bottom: 0px;
width: 100%;
height: 50px;
}
.window_state {
position: fixed;
}
/*滚动条整体样式*/
.window_content::-webkit-scrollbar {
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}
/*滚动条里面小方块*/
.window_content::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 5px rgba(80, 188, 202, 0.2);
background: rgb(196, 196, 196);
}
/*滚动条里面轨道*/
.window_content::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(8, 88, 102, 0.2);
background: #ededed;
}
.min {
width: 190px;
height: 45px;
}
.max {
width: 100%;
height: 100%;
}
.window {
width: 60%;
height: 70%;
}
.footOpen {
bottom: 50px ;
}
.window_content {
position: absolute;
top: 45px;
bottom: 0px;
right: 0px;
left: 0px;
box-sizing: border-box;
overflow-y: auto;
}
.window_icon:hover {
cursor: pointer;
background-color: #878787;
}
/* close window icon hover state */
.muf-icon-close:hover {
background-color: #FA8E73 ;
}
.window_icon {
color: white;
display: inline-block;
width: 30px;
height: 30px;
line-height: 2;
text-align: center;
transition: all 0.35s;
border-radius: 5px 5px;
}
.title_function {
float: right;
height: 100%;
padding: 8px;
box-sizing: border-box;
}
.title_text {
float: left;
padding-left: 10px;
line-height: 3;
color: white;
height: 95%;
box-sizing: border-box;
}
.window_title {
width: 100%;
height: 45px;
border-radius: 3px 3px 0px 0px;
}
.muf-window {
position: fixed;
margin: auto;
border-radius: 3px 3px;
box-shadow: 1px 1px 50px rgb(0 0 0 / 30%) ;
background-color: white;
z-index: 2000;
}
.is_drag:hover {
cursor: move;
}
.dragON {
transition: none ;
cursor: move;
}
.dragOFF {
transition: all 0.5s;
}