1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
| .single-search-edit-list {
| min-height: 50px;
| position: relative;
| background: #ffffff;
|
| >.anticon-tool {
| position: absolute;
| z-index: 3;
| font-size: 16px;
| right: 1px;
| top: 1px;
| cursor: pointer;
| padding: 5px;
| background: rgba(255, 255, 255, 0.55);
| }
| .ant-input, .ant-input:hover, .ant-input:focus {
| border: none;
| box-shadow: none;
| }
| .search-wrap {
| border: 1px solid #d9d9d9;
| display: flex;
| background: #ffffff;
| overflow: hidden;
| .ant-input {
| flex: 1;
| border-radius: 0;
| height: 100%;
| }
| .anticon-scan {
| font-size: 18px;
| padding: 0px 10px;
| color: #959595;
| }
| .ant-btn {
| border-radius: 0;
| position: relative;
| right: -1px;
| min-width: 45px;
| height: 100%;
| }
| }
| }
|
| .single-search-edit-list::after {
| display: block;
| content: ' ';
| clear: both;
| }
| .single-search-edit-list:hover {
| z-index: 1;
| box-shadow: 0px 0px 4px #1890ff;
| }
|
|