You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
2.2 KiB
146 lines
2.2 KiB
4 years ago
|
.content {
|
||
|
width: 100%;
|
||
|
height: 90%;
|
||
|
padding: 10px;
|
||
|
overflow-y: auto;
|
||
|
.contentBox {
|
||
|
width: 90%;
|
||
|
height: 100%;
|
||
|
margin: 0 auto;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
}
|
||
|
.mat-icon {
|
||
|
color: black;
|
||
|
cursor:pointer;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//可展开面板每一行css
|
||
|
.mat-expansion-panel-header {
|
||
|
padding: 3px 24px;
|
||
|
}
|
||
|
|
||
|
.firstContent {
|
||
|
width: 3%;
|
||
|
}
|
||
|
.textContent {
|
||
|
width: 12%;
|
||
|
color: black;
|
||
|
text-align: center;
|
||
|
overflow: hidden;
|
||
|
text-overflow:ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
.totalContent {
|
||
|
width: 25%;
|
||
|
color: black;
|
||
|
text-align: center;
|
||
|
white-space: pre-line;
|
||
|
max-height: 48px;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
.lastTextContent { //textarea多行文本
|
||
|
width: 45%;
|
||
|
color: black;
|
||
|
text-align: center;
|
||
|
}
|
||
|
input {
|
||
|
height: 22px;
|
||
|
line-height: 22px;
|
||
|
padding-left: 5px;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
a {
|
||
|
color: #0000ff;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//bottom用户输入框
|
||
|
.InputField {
|
||
|
display: inline-block;
|
||
|
width: 40%;
|
||
|
text-align: right;
|
||
|
margin: 10px 25px;
|
||
|
input {width: 60%;}
|
||
|
label {margin-right: 10px;}
|
||
|
}
|
||
|
textarea {
|
||
|
vertical-align: middle;
|
||
|
border-radius: 5px;
|
||
|
padding: 5px;
|
||
|
width: 60%;
|
||
|
height: 36px;
|
||
|
resize: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//表格样式
|
||
|
.overflowTable {
|
||
|
width: 95%;
|
||
|
margin: 0 auto;
|
||
|
max-height: 300px;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
.detailsTable {
|
||
|
margin: 10px 0;
|
||
|
table {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
border-collapse:collapse;
|
||
|
word-break:break-all;
|
||
|
word-wrap:break-all;
|
||
|
table-layout:fixed;
|
||
|
th {
|
||
|
height: 35px;
|
||
|
border: 1px solid #999;}
|
||
|
td {
|
||
|
height: 35px;
|
||
|
border: 1px solid #999;}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//滚动条样式
|
||
|
::-webkit-scrollbar{
|
||
|
width: 5px;
|
||
|
background-color: white;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb{
|
||
|
background-color: #999;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//img图片列表页面
|
||
|
.imageList {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow-y: auto;
|
||
|
.imageListBox {
|
||
|
width: 100%;
|
||
|
height: 90%;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
.imagesBox {
|
||
|
width: 300px;
|
||
|
height: 200px;
|
||
|
margin: 0 11px 0 11px;
|
||
|
display: inline-block;
|
||
|
img {
|
||
|
border: 1px solid #999;
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
max-width: 100%;
|
||
|
height: 170px;
|
||
|
cursor:pointer;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|