Newer
Older
display: flex;
align-items: center;
// make node title text unselectable
user-select: none;
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
.icon {
width: 4rem;
height: 3rem;
}
.icon.folder {
background-image: url("/assets/images/folder.svg");
background-size: 100% 88%;
}
.icon.document {
background-image: url("/assets/images/document.svg");
background-size: 100% 100%;
}
&.checked {
background-color: #e6f5ff;
outline: 1px solid #A6DAFF;
}
&:hover {
background-color: #8ed2fe66;
outline: 1px solid #6fc5ff;
//border: 1px solid $result_list_hover_border_color;
}
.title {
a {
text-decoration: none;
}
text-align: center;
opacity: 1;
z-index: 0;
}
}
.view-mode-grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
.node {
width: 8rem;
height: 8rem;
flex-direction: column;
margin: 0.75rem;
padding: 0.5rem;
input[type=checkbox] {
align-self: start;
visibility: hidden;
&:hover {
input[type=checkbox] {
visibility: visible;
}
input[type=checkbox] {
visibility: visible;
}
.view-mode-list {
display: flex;
flex-direction: column;
.node {
padding: 0.25rem;
}