v1.6.2 released

This commit is contained in:
carodej
2020-05-31 19:48:22 +02:00
parent 181f090901
commit 6392ce1727
8 changed files with 28 additions and 50 deletions

View File

@@ -2,7 +2,7 @@
return [
'version' => '1.6',
'version' => '1.6.2',
// Your app name
'app_name' => 'VueFileManager',

2
public/js/main.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -150,8 +150,7 @@
}
}
// Small screen size
.small {
@media only screen and (max-width: 690px) {
.popup-wrapper {
padding: 40px 20px 20px;
left: 15px;

View File

@@ -25,7 +25,7 @@
}
}
.small {
@media only screen and (max-width: 690px) {
.actions {
padding: 15px;
position: absolute;
@@ -34,8 +34,4 @@
right: 0;
}
}
@media (prefers-color-scheme: dark) {
}
</style>

View File

@@ -25,8 +25,7 @@
}
}
.small {
@media only screen and (max-width: 690px) {
.popup-content {
top: 57px;
bottom: 72px;
@@ -37,10 +36,6 @@
}
}
@media (prefers-color-scheme: dark) {
}
@keyframes popup-in {
0% {
opacity: 0;

View File

@@ -85,16 +85,12 @@
}
}
.small {
@media only screen and (max-width: 690px) {
.popup-header {
padding: 15px;
}
}
@media only screen and (max-width: 690px) {
}
@media (prefers-color-scheme: dark) {
.popup-header {

View File

@@ -84,7 +84,27 @@
}
}
.small {
@keyframes popup-in {
0% {
opacity: 0;
transform: scale(0.7);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes popup-slide-in {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}
@media only screen and (max-width: 690px) {
.popup {
overflow: hidden;
}
@@ -111,34 +131,6 @@
}
}
@keyframes popup-in {
0% {
opacity: 0;
transform: scale(0.7);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes popup-slide-in {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}
@media only screen and (max-width: 690px) {
.popup-wrapper {
left: 15px;
right: 15px;
padding: 0;
}
}
@media (prefers-color-scheme: dark) {
.popup-wrapper {
background: $dark_mode_background;

View File

@@ -154,7 +154,7 @@
}
}
.small {
@media only screen and (max-width: 690px) {
.file-item {
padding: 0 15px;
margin-bottom: 20px;