forked from alibaba/lowcode-engine-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.less
More file actions
122 lines (112 loc) · 2.55 KB
/
style.less
File metadata and controls
122 lines (112 loc) · 2.55 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.lc-setter-list {
[draggable] {
cursor: move;
}
.next-btn {
display: inline-flex;
align-items: center;
line-height: 1 !important;
max-width: 100%;
text-overflow: ellipsis;
}
.next-btn.next-btn-primary {
.lc-title {
color: var(--btn-pure-primary-color) !important;
}
}
.lc-setter-list-add {
display: block;
width: 100%;
padding: 12px 8px 0 0;
}
.lc-setter-list-columns {
display: flex;
> .lc-title {
flex: 1;
justify-content: flex-start;
}
margin-left: 0;
margin-right: 0;
padding: 0 72px 4px 36px;
gap: 8px;
}
.lc-setter-list-scroll-body {
margin: -8px -16px;
padding: 8px 16px;
overflow-y: auto;
max-height: 300px;
}
.lc-setter-list-notice {
height: 50px;
display: flex;
flex-direction: column;
justify-content: center;
}
.lc-setter-list-card {
border: none;
background-color: transparent;
border-radius: 0;
&:not(:last-child) {
margin-bottom: 8px;
}
.lc-listitem {
position: relative;
outline: none;
display: flex;
align-items: stretch;
height: 28px;
.lc-listitem-actions {
margin: 0 4px;
gap: var(--s-1);
display: inline-flex;
align-items: center;
justify-content: flex-end;
.lc-listitem-action {
width: var(--s-7, 28px) !important;
height: var(--s-7, 28px) !important;
display: flex !important;
align-items: center;
justify-content: center;
cursor: pointer;
}
}
.lc-listitem-body {
flex: 1;
display: flex;
align-items: stretch;
overflow: hidden;
min-width: 0;
text-overflow: ellipsis;
.lc-field {
padding: 0 !important;
display: flex;
align-items: center;
> .lc-field-body {
width: 100%;
justify-content: center;
}
}
> * {
width: 100%;
}
.next-btn {
display: block;
width: 100%;
}
}
.lc-listitem-handler {
margin-left: 0;
width: var(--s-7, 28px) !important;
height: var(--s-7, 28px) !important;
display: flex !important;
align-items: center;
justify-content: center;
cursor: pointer;
}
}
}
}
.lc-setter-list .lc-setter-list-card .lc-listitem .lc-listitem-handler,
.lc-setter-list .lc-setter-list-card .lc-listitem .lc-listitem-actions .lc-listitem-action {
opacity: 1;
}