1ab447b1 by 杨威

自然幢表单整体样式修改

1 parent 0cb6a8ca
1 .content_box { 1 .content_box {
2 padding: 18px; 2 padding: 0 0 18px;
3 padding-top: 0;
4 box-sizing: border-box; 3 box-sizing: border-box;
5 width: 100%; 4 width: 100%;
5
6 } 6 }
7 .el-table .success-row { 7 .el-table .success-row {
8 background:@tablebg; 8 background:@tablebg;
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
10 .main{ 10 .main{
11 width: 100%; 11 width: 100%;
12 height: 100%; 12 height: 100%;
13 box-sizing: border-box;
13 padding: 18px 18px 0!important; 14 padding: 18px 18px 0!important;
14 } 15 }
15 .pagination { 16 .pagination {
...@@ -48,4 +49,25 @@ ol, ul { list-style:none; } ...@@ -48,4 +49,25 @@ ol, ul { list-style:none; }
48 .requisite{ 49 .requisite{
49 font-style: normal; 50 font-style: normal;
50 color: red; 51 color: red;
52 }
53 // 滚动条样式
54 ::-webkit-scrollbar {
55 width: 6px;
56 }
57 ::-webkit-scrollbar {
58 height: 6px;
59 }
60 ::-webkit-scrollbar-thumb {
61 border-radius: 3px;
62 background: #cbcbcb;
63 }
64 ::-webkit-scrollbar-thumb {
65 border-radius: 3px;
66 background: #cbcbcb;
67 }
68 ::-webkit-scrollbar-track {
69 border-radius: 0;
70 }
71 ::-webkit-scrollbar-track {
72 border-radius: 0;
51 } 73 }
...\ No newline at end of file ...\ No newline at end of file
......