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
| .relations {
| &__item {
| cursor: default;
| user-select: none;
| padding: 0 8px;
| transition: all 150ms ease-out;
|
| &_hidden {
| opacity: 0.4;
| }
|
| &:hover {
| background-color: var(--color-primary-emphasis-subtle);
| }
| }
|
| &__content {
| display: flex;
| align-items: center;
| padding: 5px 0;
| }
|
| &__nodes {
| display: flex;
| flex-direction: column;
| gap: 8px;
| }
|
| &__direction {
| height: 100%;
| width: 100%;
| z-index: 1;
| cursor: pointer;
| position: absolute;
| display: flex;
| align-items: center;
| justify-content: flex-end;
| color: var(--color-neutral-content-subtle);
|
| &:hover {
| color: var(--color-neutral-content);
| }
| }
|
| &__icon {
| width: 24px;
| min-height: 24px;
| display: flex;
| flex: none;
| position: relative;
| align-items: center;
| justify-content: center;
| }
|
| &__actions {
| flex: 1;
| display: grid;
| justify-content: flex-end;
| grid-auto-flow: column;
| grid-auto-columns: minmax(32px, min-content);
| }
|
| &__action {
| display: flex;
| height: 32px;
| width: 32px;
| align-items: center;
| justify-content: center;
|
| svg {
| width: 18px;
| height: 18px;
| }
|
| .button {
| width: 100%;
| height: 100%;
| }
| }
| }
|
| .region-meta {
| margin: 8px 0;
| }
|
| .relation-meta {
| display: flex;
| padding-left: 64px;
| padding-bottom: 5px;
| align-items: center;
|
| &__title {
| flex: none;
| padding-right: 8px;
| }
|
| &__select {
| flex: 1;
| }
| }
|
|