|
|
|
|
/*
|
|
|
|
|
*这里的值严格按照UI设计图标注值来进行设置
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
*颜色
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
*页面的边距
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
*字体
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
*头像
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* 按钮
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
*对常见的多行样式进行了方法封装,方便调用,加快开发效率
|
|
|
|
|
*/
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-weight: initial !important;
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
color: #333 !important;
|
|
|
|
|
}
|
|
|
|
|
html *,
|
|
|
|
|
body * {
|
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.ms-ellipsis {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.ms-align-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
input::-webkit-input-placeholder,
|
|
|
|
|
textarea::-webkit-input-placeholder {
|
|
|
|
|
font-weight: initial;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #999;
|
|
|
|
|
resize: none;
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
/*定义滚动条轨道 内阴影+圆角*/
|
|
|
|
|
*::-webkit-scrollbar-track {
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
/*滚动条的背景区域的圆角*/
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
/*滚动条的背景颜色*/
|
|
|
|
|
}
|
|
|
|
|
/*定义滑块 内阴影+圆角*/
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
/*滚动条的圆角*/
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
/*滚动条的背景颜色*/
|
|
|
|
|
}
|
|
|
|
|
.ms-container {
|
|
|
|
|
margin: 12px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 14px 14px 0 14px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
.ms-header {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
background: #fff;
|
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
|
|
|
|
.ms-pagination {
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
.ms-fr {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
.ms-tr {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
.el-button + .el-button {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
height: 267px;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply > div:first-child {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs {
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
border-radius: 4px 4px 0 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tabs__header {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tabs__header .el-tabs__nav-scroll {
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .el-icon-delete {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 5px;
|
|
|
|
|
bottom: 66px;
|
|
|
|
|
font-weight: initial;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .el-icon-delete:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content textarea {
|
|
|
|
|
height: 127px !important;
|
|
|
|
|
border: none !important;
|
|
|
|
|
border-bottom: 1px solid #ddd !important;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .footer {
|
|
|
|
|
height: 58px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .footer i {
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .footer a {
|
|
|
|
|
font-weight: initial;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #0099ff;
|
|
|
|
|
}
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .footer i:hover,
|
|
|
|
|
.ms-message-reply .message-reply-tabs .el-tab-pane > .el-form .ms-message-reply-content .el-form-item__content .footer a:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|