blob: 3ef3c2cefb8b52e0828874f1bdb4d38b3655b668 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
@use '../../global/globalCssVariables.module.scss' as global;
.dashFieldView-active,
.dashFieldView {
position: relative;
display: contents;
align-items: center;
.dashFieldView-enumerables {
width: 10px;
height: 10px;
position: relative;
display: inline-block;
background: dimgray;
}
.dashFieldView-fieldCheck {
min-width: 12px;
position: relative;
display: inline-block;
margin: 0px;
transform: scale(0.7);
background-color: rgba(155, 155, 155, 0.24);
}
.dashFieldView-labelSpan {
position: relative;
display: inline-block;
font-weight: normal;
background: rgba(0, 0, 0, 0.1);
align-content: center;
cursor: default;
}
.dashFieldView-fieldSpan {
min-width: 8px;
margin-left: 2px;
margin-right: 5px;
padding-left: 2px;
font-size: smaller;
display: contents;
> div {
background-color: rgba(155, 155, 155, 0.24);
}
span {
user-select: all;
min-width: 100%;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
}
}
.dashFieldView,
.dashFieldView-active {
.dashFieldView-select {
height: 100%;
font-size: 12px;
background: transparent;
opacity: 0;
width: 5px;
}
}
.dashFieldView-active {
&:hover {
.dashFieldView-select {
opacity: unset;
width: 15px !important;
}
}
}
.ProseMirror-selectedNode {
outline: solid 1px global.$light-blue !important;
}
|