system-copyright-react/src/route/TrademarkMall/components/EditOne/EditOne.css

74 lines
1.3 KiB
CSS
Raw Normal View History

2025-06-04 09:25:40 +08:00
.topLine {
width: 100%;
height: 10px;
background: #F3F3F3;
}
.editFormBox {
/* padding: 10px;
box-sizing: border-box; */
}
2025-06-13 16:43:21 +08:00
.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;
/* 鼠标悬停时滚动条滑块颜色 */
}
2025-06-04 09:25:40 +08:00
.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;
2025-06-04 17:50:49 +08:00
}
2025-06-13 16:43:21 +08:00
.pointerBlue {
2025-06-04 17:50:49 +08:00
color: var(--color-blue);
cursor: pointer;
2025-06-13 16:43:21 +08:00
}
.upBox{
background: skyblue;
2025-06-04 09:25:40 +08:00
}