Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 694b1e4

Browse files
committed
v2.0.0
1 parent 21c8271 commit 694b1e4

File tree

4 files changed

+24
-17
lines changed

4 files changed

+24
-17
lines changed

logs/v1.3.6.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

logs/v2.0.0.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- use manager from modal “check wiki”
2+
- you can now download all selected files, thanx to https://github.com/PixelsCommander/Download-File-JS
3+
- now the manager will have its own script file so you only load it when needed instead of merging it with your main script, better loading time for users.
4+
- fix pattern for names with `()`
5+
- fix file names cleanup not working properly
6+
- change config sanitized text to `uniqid()` instead for better ux
7+
- add new “folder restriction” feature “check wiki”
8+
- changed js structure instead of the bazillion folders everywhere
9+
- fix move btn not updating correctly on first load
10+
- remove event listener on destroy
11+
- update assets
12+
- update read me

src/resources/assets/sass/media-bulma.scss

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ $orange: #ff470f;
3030
&.is-success {
3131
background-color: $green;
3232
}
33-
}
3433

35-
.is-danger,
36-
.is-link,
37-
.is-primary,
38-
.is-success {
39-
* {
40-
color: white;
34+
&.is-danger,
35+
&.is-link,
36+
&.is-primary,
37+
&.is-success {
38+
* {
39+
color: white;
40+
}
4141
}
4242
}
4343

@@ -57,8 +57,8 @@ table,
5757

5858
td,
5959
th {
60-
border: none !important;
6160
vertical-align: middle;
61+
border: none !important;
6262
}
6363

6464
tr:hover {
@@ -72,6 +72,6 @@ table,
7272
}
7373

7474
.modal-card-foot {
75-
background-color: white;
7675
justify-content: flex-end;
76+
background-color: white;
7777
}

src/resources/assets/sass/shared/animate.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
.animated {
22
animation-duration: 600ms;
3-
animation-fill-mode: both;
43
animation-timing-function: cubic-bezier(1, 0, 0, 1);
4+
animation-fill-mode: both;
55
}
66

77
@keyframes fadeInDown {
88
from {
9-
opacity: 0;
109
transform: translate3d(0, -100%, 0);
10+
opacity: 0;
1111
}
1212

1313
to {
14-
opacity: 1;
1514
transform: none;
15+
opacity: 1;
1616
}
1717
}
1818

0 commit comments

Comments
 (0)