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
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
|
| .mySearch {
| display: flex;
| align-items: center;
| padding: 8px 12px;
| background-color: @common_bg_z1_color;
|
| &-search {
| height: 36px;
| flex: 1;
| background: #f6f6f6;
| border-radius: 5px;
| padding: 0 12px;
| color: rgba(0, 0, 0, 0.5);
| line-height: 36px;
| display: flex;
| align-items: center;
|
| & .dtm-input-item-input {
| background-color: #f6f6f6;
| margin-left: 8px;
| // padding-left: 34px;
| // padding-right: 32px;
| }
| }
|
| &-scan {
| display: flex;
| align-items: center;
|
| &-icon {
| font-size: 16px;
| margin-right: 4px;
| }
|
| &-active {
| color: @theme_primary1_color;
| }
| }
| }
|
|