blob: e0fd36b86a417b2c7924d02693c84590f57f2341 (
plain)
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
|
.columnManagerRow {
width: 280px;
display: flex;
margin: 4px 0;
padding: 8px 12px;
align-items: center;
background: var(--bg-near-transparent);
border-radius: 10px;
transition: all 0.2s ease;
&:hover {
background: rgba(66, 133, 244, 0.1);
}
.columnManageLabel {
flex: 1;
margin-left: 12px;
font-size: 0.95em;
font-weight: 500;
}
.columnMoveButtons {
display: flex;
flex-direction: column;
margin-right: 8px;
gap: 2px;
}
.moveBtn {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 16px;
padding: 0;
border: none;
border-radius: 4px;
background-color: transparent;
color: var(--color-text-secondary);
cursor: pointer;
transition: all 0.15s ease;
&:hover:not(:disabled) {
background-color: var(--color-focus-blue);
color: white;
transform: scale(1.1);
}
&:disabled {
opacity: 0.25;
cursor: not-allowed;
}
}
.columnManageSwitch {
transform: scale(0.75);
height: 22px;
display: flex;
align-items: center;
}
}
|