74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
.topLine {
|
||
width: 100%;
|
||
height: 10px;
|
||
background: #F3F3F3;
|
||
}
|
||
|
||
.editFormBox {
|
||
/* padding: 10px;
|
||
box-sizing: border-box; */
|
||
}
|
||
|
||
.editOneFomrBox {
|
||
/* WebKit 浏览器(Chrome、Safari 等) */
|
||
scrollbar-width: thin;
|
||
/* Firefox */
|
||
scrollbar-color: #888 #f1f1f1;
|
||
/* Firefox */
|
||
}
|
||
.editOneFomrBox ::-webkit-scrollbar {
|
||
width: 8px;
|
||
/* 垂直滚动条宽度 */
|
||
}
|
||
.editOneFomrBox ::-webkit-scrollbar-track {
|
||
background: #f1f1f1;
|
||
/* 滚动条轨道背景颜色 */
|
||
}
|
||
.editOneFomrBox ::-webkit-scrollbar-thumb {
|
||
background: #888;
|
||
/* 滚动条滑块颜色 */
|
||
border-radius: 4px;
|
||
/* 滚动条滑块圆角 */
|
||
}
|
||
.editOneFomrBox ::-webkit-scrollbar-thumb:hover {
|
||
background: #555;
|
||
/* 鼠标悬停时滚动条滑块颜色 */
|
||
}
|
||
|
||
.editFormTitle {
|
||
font-size: 18px;
|
||
margin-bottom: 20px;
|
||
/* height: 46px; */
|
||
}
|
||
|
||
.editFormItem {
|
||
display: flex;
|
||
/* align-items: center; */
|
||
height: 46px;
|
||
/* background-color: pink; */
|
||
line-height: 46px;
|
||
/* width: 200px; */
|
||
}
|
||
|
||
.firstItem {
|
||
/* background: skyblue; */
|
||
align-items: center;
|
||
|
||
}
|
||
|
||
.editFormItemTitle {
|
||
font-size: 16px;
|
||
/* width: 120px; */
|
||
}
|
||
|
||
.redTitle {
|
||
color: red;
|
||
}
|
||
|
||
.pointerBlue {
|
||
color: var(--color-blue);
|
||
cursor: pointer;
|
||
}
|
||
.upBox{
|
||
background: skyblue;
|
||
} |