-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathFileManager.scss
More file actions
140 lines (115 loc) · 2.42 KB
/
FileManager.scss
File metadata and controls
140 lines (115 loc) · 2.42 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import "../styles/variables";
.text-white {
color: white;
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
img,
svg {
vertical-align: middle;
}
.fm-modal {
border: 1px solid #c6c6c6;
border-radius: 5px;
width: fit-content;
overflow-x: hidden;
padding: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.253);
}
.w-25 {
width: 25%;
}
.file-explorer {
min-height: 400px;
height: 100%;
width: 100%;
font-family: var(--file-manager-font-family);
* {
box-sizing: unset;
}
button {
font-family: var(--file-manager-font-family);
}
border-radius: 8px;
position: relative;
background-color: white;
cursor: default;
// Disable Text Selection on Double Click
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
.files-container {
display: flex;
height: calc(100% - 46px); // Toolbar total height = baseHeight: 35px, padding top + bottom: 10px, border: 1px.
.navigation-pane {
z-index: 1;
padding-top: 8px;
position: relative;
.sidebar-resize {
position: absolute;
right: 0px;
top: 0px;
bottom: 0px;
width: 5px;
cursor: col-resize;
z-index: 10;
border-right: 1px solid $border-color;
&:hover {
border-right: 1px solid #1e3a8a;
}
}
.sidebar-dragging {
border-right: 1px solid #1e3a8a;
}
}
.navigation-pane.open {
display: block;
}
.navigation-pane.closed {
display: none;
}
.folders-preview {
z-index: 2;
background-color: white;
padding-right: 0px;
padding-left: 0px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
}
}
.close-icon {
padding: 5px;
border-radius: 50%;
&:hover {
cursor: pointer;
background-color: rgb(0, 0, 0, 0.07);
}
}
.fm-rename-folder-container {
padding: 8px 0;
.fm-rename-folder-input {
border-bottom: 1px solid #c6c6c6;
padding: 8px 12px 12px;
.fm-rename-warning {
display: flex;
align-items: center;
gap: 10px;
}
}
.fm-rename-folder-action {
display: flex;
gap: 8px;
justify-content: flex-end;
padding: 8px 8px 0 0;
}
}
.file-selcted {
.select-files {
width: 40%;
}
}