inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
commit | author | age
9bcb19 1 .table-wrapper{
I 2   background: #fff;
3 }
4 .s-table-tool{
5   display: flex;
6   margin-bottom: 16px;
7   .s-table-tool-left{
8     flex: 1;
9   }
10   .s-table-tool-right{
11     display: inline-flex;
12     align-items: center;
13     .s-tool-item{
14       font-size: 16px;
15       margin-left: 16px;
16       cursor: pointer;
17
18     }
19   }
20 }
21
22 .s-tool-column-item{
23   display: flex;
24   align-items: center;
25   padding: 4px 16px 4px 4px;
26   .ant-checkbox-wrapper{
27     flex: 1;
28   }
29   .s-tool-column-handle{
30     opacity: .8;
31     cursor: move;
32     .anticon-more{
33       font-size: 12px;
34       margin-top: 2px;
35       & + .anticon-more{
36         margin: 2px 4px 0 -8px;
37       }
38     }
39   }
40 }
41 .s-tool-column-header{
42   padding: 5px 16px 10px 24px;
43   min-width: 180px;
44 }
45 .s-tool-column{
46   .ant-divider{
47     margin: 0;
48   }
49   .ant-checkbox-group{
50     padding: 4px 0;
51     display: block;
52   }
53 }
54