Skip to content

Commit 40256f1

Browse files
authored
Class change for latest version of file manager. (hestiacp#4871)
* Class change for new latest version of file manager. * Remove unique hash in css styles
1 parent 65dee1e commit 40256f1

File tree

1 file changed

+28
-29
lines changed

1 file changed

+28
-29
lines changed

install/deb/filemanager/filegator/dist/css/hst-custom.css

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -74,70 +74,70 @@ html {
7474

7575
/* ------------------------------ */
7676

77-
#single-actions[data-v-0e9ddddb] {
77+
#single-actions:not([data-v]) {
7878
padding: 0 !important;
7979
}
8080

81-
#multi-actions a[data-v-0e9ddddb],
82-
#multi-actions .upload a[data-v-0e9ddddb] {
81+
#multi-actions a:not([data-v]),
82+
#multi-actions .upload a:not([data-v]) {
8383
background: #fff !important;
8484
padding: 3px 11px !important;
8585
border-radius: 6px !important;
8686
color: #424242 !important;
8787
border: 1px solid #26232c26 !important;
8888
}
8989

90-
#multi-actions a[data-v-0e9ddddb]:hover {
90+
#multi-actions a:not([data-v]):hover {
9191
background: #343b44 !important;
9292
color: #fff !important;
9393
}
9494

95-
#multi-actions .upload a[data-v-0e9ddddb] {
95+
#multi-actions .upload a:not([data-v]) {
9696
background: #343b44 !important;
9797
color: #fff !important;
9898
}
9999

100-
#multi-actions .upload a[data-v-0e9ddddb]:hover {
100+
#multi-actions .upload a:not([data-v]):hover {
101101
background: #424952 !important;
102102
color: #fff !important;
103103
}
104104

105-
#multi-actions a[data-v-0e9ddddb] .dropdown-item {
105+
#multi-actions a:not([data-v]) .dropdown-item {
106106
background: none !important;
107107
border: none !important;
108108
padding: 5px 15px !important;
109109
border-radius: 0 !important;
110110
}
111111

112-
#multi-actions a[data-v-0e9ddddb] .dropdown-item:hover {
112+
#multi-actions a:not([data-v]) .dropdown-item:hover {
113113
background: #f5f5f5 !important;
114114
color: #343434 !important;
115115
}
116116

117117
@media (prefers-color-scheme: dark) {
118-
#multi-actions a[data-v-0e9ddddb] {
118+
#multi-actions a:not([data-v]) {
119119
background: #222 !important;
120120
color: #fff !important;
121121
border: 1px solid #222 !important;
122122
}
123123

124-
#multi-actions a[data-v-0e9ddddb]:hover {
124+
#multi-actions a:not([data-v]):hover {
125125
background: #303030 !important;
126126
color: #fff !important;
127127
}
128128

129-
#multi-actions a[data-v-0e9ddddb] .dropdown-item:hover {
129+
#multi-actions a:not([data-v]) .dropdown-item:hover {
130130
background: #545454 !important;
131131
color: #fff !important;
132132
}
133133

134-
#multi-actions .upload a[data-v-0e9ddddb] {
134+
#multi-actions .upload a:not([data-v]) {
135135
background: #172924 !important;
136136
color: #34b891 !important;
137137
border: 1px solid #26232c26 !important;
138138
}
139139

140-
#multi-actions .upload a[data-v-0e9ddddb]:hover {
140+
#multi-actions .upload a:not([data-v]):hover {
141141
background: #083426 !important;
142142
color: #34b891 !important;
143143
}
@@ -149,25 +149,25 @@ html {
149149

150150
/* ------------------------------ */
151151

152-
.file-row.type-dir a.name[data-v-0e9ddddb]::before,
153-
.file-row.type-file a.name[data-v-0e9ddddb]::before {
152+
.file-row.type-dir a.name:not([data-v])::before,
153+
.file-row.type-file a.name:not([data-v])::before {
154154
/* stylelint-disable */
155155
font-family: "Font Awesome 5 Free" !important;
156156
/* stylelint-enable */
157157
}
158158

159-
.file-row.type-dir a.name[data-v-0e9ddddb]::before {
159+
.file-row.type-dir a.name:not([data-v])::before {
160160
content: "\f07b" !important;
161161
color: #f9b30f !important;
162162
}
163163

164-
.file-row.type-file a.name[data-v-0e9ddddb]::before {
164+
.file-row.type-file a.name:not([data-v])::before {
165165
content: "\f15c" !important;
166166
color: #363636 !important;
167167
}
168168

169169
@media (prefers-color-scheme: dark) {
170-
.file-row.type-file a.name[data-v-0e9ddddb]::before {
170+
.file-row.type-file a.name:not([data-v])::before {
171171
color: #cbcbcb !important;
172172
}
173173
}
@@ -178,20 +178,20 @@ html {
178178

179179
/* ------------------------------ */
180180

181-
.breadcrumb a[data-v-0e9ddddb],
181+
.breadcrumb a:not([data-v]),
182182
.breadcrumb li + li::before {
183183
font-weight: 400 !important;
184184
padding: 1px 6px !important;
185185
border-radius: 5px !important;
186186
}
187187

188-
.breadcrumb a[data-v-0e9ddddb] {
188+
.breadcrumb a:not([data-v]) {
189189
background: #fff !important;
190190
color: #343b44 !important;
191191
border: 1px solid #00000017 !important;
192192
}
193193

194-
.breadcrumb a[data-v-0e9ddddb]:hover {
194+
.breadcrumb a:not([data-v]):hover {
195195
background: #343b44 !important;
196196
color: #fff !important;
197197
}
@@ -203,13 +203,13 @@ html {
203203
}
204204

205205
@media (prefers-color-scheme: dark) {
206-
.breadcrumb a[data-v-0e9ddddb] {
206+
.breadcrumb a:not([data-v]) {
207207
background: #172924 !important;
208208
color: #34b891 !important;
209209
border: 1px solid #00000017 !important;
210210
}
211211

212-
.breadcrumb a[data-v-0e9ddddb]:hover {
212+
.breadcrumb a:not([data-v]):hover {
213213
background: #083426 !important;
214214
color: #34b891 !important;
215215
}
@@ -284,19 +284,18 @@ html {
284284
}
285285
}
286286

287-
a[data-v-45d0a157],
288-
a[data-v-45d0a157]::before {
289-
color: #373737 !important;
287+
.tree-list a:not([data-v]),
288+
a:not([data-v])::before {
290289
font-weight: 700 !important;
291290
padding: 4px 6px !important;
292291
border-radius: 5px !important;
293292
}
294293

295-
a[data-v-45d0a157]:hover {
294+
.tree-list a:not([data-v]):hover {
296295
background: #efefef !important;
297296
}
298297

299-
a[data-v-45d0a157]::before {
298+
.tree-list a:not([data-v])::before {
300299
content: "\f07b" !important;
301300
/* stylelint-disable */
302301
font-family: "Font Awesome 5 Free" !important;
@@ -305,7 +304,7 @@ a[data-v-45d0a157]::before {
305304
}
306305

307306
@media (prefers-color-scheme: dark) {
308-
a[data-v-45d0a157]:hover {
307+
.tree-list a:not([data-v]):hover {
309308
background: #282828 !important;
310309
}
311310
}

0 commit comments

Comments
 (0)