Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General Bugfixes #31

Merged
merged 10 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vuefinder.cjs

Large diffs are not rendered by default.

2,033 changes: 1,019 additions & 1,014 deletions dist/vuefinder.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuefinder",
"version": "1.3.2",
"version": "1.3.3",
"description": "Vuefinder is a file manager component for vuejs.",
"type": "module",
"files": [
Expand Down
47 changes: 47 additions & 0 deletions src/assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,57 @@
@tailwind components;

@layer components {
.vuefinder {
position: relative;
}

.vuefinder * {
touch-action: manipulation;
}

.vuefinder .vf-btn {
@apply
inline-flex justify-center
w-full px-4 py-2 rounded-md border shadow-sm
text-base font-medium tracking-wide
focus:outline-none focus:ring-2 focus:ring-offset-2
mt-0.5 sm:mx-1 sm:w-auto sm:text-sm;
}

.vuefinder .vf-btn-primary {
@apply
border-transparent
text-white
bg-blue-600 hover:bg-blue-700
focus:ring-indigo-500
dark:text-gray-50 dark:border-gray-800 dark:bg-gray-700 dark:hover:bg-gray-500;
}

.vuefinder .vf-btn-secondary {
@apply
border-gray-300
text-gray-700
bg-white hover:bg-gray-50
focus:ring-gray-500
dark:text-gray-300 dark:border-gray-700 dark:bg-gray-800 dark:hover:bg-gray-500;
}

.vuefinder .vf-btn-danger {
@apply
border-transparent
text-white
bg-red-600 hover:bg-red-700
focus:ring-red-200 focus:ring-1 focus:ring-offset-1
dark:text-gray-50 dark:border-red-800 dark:bg-red-700 dark:hover:bg-red-500;
}

.vuefinder .disabled {
@apply
opacity-50 cursor-not-allowed
}



.vf-explorer-selected {
@apply bg-neutral-100 border border-neutral-300 dark:bg-slate-700 dark:border-gray-900 dark:border-slate-800 !important;
}
Expand Down
Loading