dareway-rui
Version:
57 lines (50 loc) • 847 B
CSS
.rui-dockbar {
display: flex;
flex-direction: column;
flex: 1 1 auto;
}
/**
* dockbar 的上下结构
*/
.rui-dockbar-menus {
height: 35px;
line-height: 35px;
}
.rui-dockbar-contents {
position: relative;
flex: 1 1 auto;
}
/**
* dockbar 的 item
*/
.rui-menuItem-btn-close {
display: inline-block;
position: relative;
top: -5px;
margin-left: 5px;
}
/**
* dockbar 的 content
*/
.rui-dockbar-content-wrapper {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.rui-dockbar-content-wrapper-hidden {
display: none;
}
.rui-dockbar-content-wrapper-sheet{
height: 100%;
display: flex;
flex-direction: column;
overflow: auto;
}
/**
* dockbar 颜色变黑
*/
.ant-menu {
color: black;
}