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
+1 -1
View File
@@ -2,7 +2,7 @@
return [ return [
'version' => '1.6', 'version' => '1.6.2',
// Your app name // Your app name
'app_name' => 'VueFileManager', 'app_name' => 'VueFileManager',
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -2
View File
@@ -150,8 +150,7 @@
} }
} }
// Small screen size @media only screen and (max-width: 690px) {
.small {
.popup-wrapper { .popup-wrapper {
padding: 40px 20px 20px; padding: 40px 20px 20px;
left: 15px; left: 15px;
@@ -25,7 +25,7 @@
} }
} }
.small { @media only screen and (max-width: 690px) {
.actions { .actions {
padding: 15px; padding: 15px;
position: absolute; position: absolute;
@@ -34,8 +34,4 @@
right: 0; right: 0;
} }
} }
@media (prefers-color-scheme: dark) {
}
</style> </style>
@@ -25,8 +25,7 @@
} }
} }
.small { @media only screen and (max-width: 690px) {
.popup-content { .popup-content {
top: 57px; top: 57px;
bottom: 72px; bottom: 72px;
@@ -37,10 +36,6 @@
} }
} }
@media (prefers-color-scheme: dark) {
}
@keyframes popup-in { @keyframes popup-in {
0% { 0% {
opacity: 0; opacity: 0;
@@ -85,16 +85,12 @@
} }
} }
.small { @media only screen and (max-width: 690px) {
.popup-header { .popup-header {
padding: 15px; padding: 15px;
} }
} }
@media only screen and (max-width: 690px) {
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
.popup-header { .popup-header {
@@ -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 { .popup {
overflow: hidden; 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) { @media (prefers-color-scheme: dark) {
.popup-wrapper { .popup-wrapper {
background: $dark_mode_background; background: $dark_mode_background;
@@ -154,7 +154,7 @@
} }
} }
.small { @media only screen and (max-width: 690px) {
.file-item { .file-item {
padding: 0 15px; padding: 0 15px;
margin-bottom: 20px; margin-bottom: 20px;