blob: 411d67ff7b068a6b9a88c1bc06157624d395e49e (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
|
@import "../globalCssVariables";
.collectionTreeView-dropTarget {
border-width: $COLLECTION_BORDER_WIDTH;
border-color: transparent;
border-style: solid;
border-radius: $border-radius;
box-sizing: border-box;
height: 100%;
padding: 20px;
padding-left: 10px;
padding-right: 0px;
background: $light-color-secondary;
font-size: 13px;
overflow: scroll;
ul {
list-style: none;
padding-left: 20px;
}
li {
margin: 5px 0;
}
.no-indent {
padding-left: 0;
}
.bullet {
float:left;
position: relative;
width: 15px;
display: block;
color: $intermediate-color;
margin-top: 3px;
transform: scale(1.3,1.3);
}
.docContainer {
margin-left: 10px;
display: block;
// width:100%;//width: max-content;
}
.docContainer:hover {
.treeViewItem-openRight {
display:inline;
}
}
.editableView-container {
font-weight: bold;
}
.delete-button {
color: $intermediate-color;
// float: right;
margin-left: 15px;
// margin-top: 3px;
display: inline;
}
.treeViewItem-openRight {
margin-left: 5px;
display:none;
}
.docContainer:hover {
.delete-button {
display: inline;
// width: auto;
}
}
.coll-title {
width:max-content;
display: block;
font-size: 24px;
}
.collection-child {
margin-top: 10px;
margin-bottom: 10px;
}
.collectionTreeView-keyHeader {
font-style: italic;
font-size: 8pt;
}
}
|