mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
updates on mobile stuff
This commit is contained in:
parent
28552c1940
commit
1d3d5e9b24
@ -251,58 +251,25 @@ i.spin {
|
|||||||
background-color: rgba(0, 0, 0, .1);
|
background-color: rgba(0, 0, 0, .1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.action:hover ul {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action ul {
|
.action ul {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 3.1em;
|
top: 0;
|
||||||
left: 0;
|
|
||||||
color: #7d7d7d;
|
color: #7d7d7d;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background: #fff;
|
flex-direction: column;
|
||||||
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
|
display: flex;
|
||||||
border-radius: .2em;
|
|
||||||
flex-direction: column-reverse;
|
|
||||||
display: none;
|
|
||||||
transition: .2s ease all;
|
|
||||||
min-width: 3em;
|
|
||||||
z-index: 99999;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.action ul:before {
|
.action ul li {
|
||||||
top: -16px;
|
line-height: 1;
|
||||||
left: 1em;
|
padding: .7em;
|
||||||
right: auto;
|
transition: .1s ease background-color;
|
||||||
border: 8px solid transparent;
|
|
||||||
border-bottom-color: #ffffff;
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.action ul a {
|
.action ul li:hover {
|
||||||
padding: .3em .5em;
|
background-color: rgba(0, 0, 0, 0.04);
|
||||||
border-bottom: 1px solid #f5f5f5;
|
|
||||||
transition: .2s ease all;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action ul a:first-child {
|
|
||||||
border: 0;
|
|
||||||
border-bottom-right-radius: .2em;
|
|
||||||
border-bottom-left-radius: .2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action ul a:last-child {
|
|
||||||
border-top-right-radius: .2em;
|
|
||||||
border-top-left-radius: .2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action ul a:hover {
|
|
||||||
background-color: #f5f5f5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -609,6 +576,16 @@ header .actions {
|
|||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#download ul.active {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#more ul.active {
|
||||||
|
right: .5em;
|
||||||
|
top: 4.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * *
|
||||||
* DROPDOWN *
|
* DROPDOWN *
|
||||||
@ -629,8 +606,6 @@ header .actions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dropdown.active {
|
.dropdown.active {
|
||||||
right: .5em;
|
|
||||||
top: 4.5em;
|
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -659,33 +634,15 @@ header .actions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#breadcrumbs {
|
#breadcrumbs {
|
||||||
list-style: none;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
position: absolute;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
min-width: 7em;
|
min-width: 7em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#breadcrumbs.active {
|
#breadcrumbs.active {
|
||||||
opacity: 1;
|
|
||||||
visibility: visible;
|
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#breadcrumbs li {
|
|
||||||
line-height: 1;
|
|
||||||
padding: .7em;
|
|
||||||
transition: .1s ease all;
|
|
||||||
}
|
|
||||||
|
|
||||||
#breadcrumbs li:hover {
|
|
||||||
background-color: rgba(0, 0, 0, 0.04);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * *
|
||||||
* LISTING *
|
* LISTING *
|
||||||
|
@ -414,18 +414,21 @@ document.addEventListener("DOMContentLoaded", function(event) {
|
|||||||
buttons.delete.addEventListener("click", deleteEvent);
|
buttons.delete.addEventListener("click", deleteEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buttons.previous) {
|
let dropdownButtons = document.querySelectorAll('.action[data-dropdown]')
|
||||||
buttons.previous.addEventListener("click", event => {
|
Array.from(dropdownButtons).forEach(button => {
|
||||||
document.getElementById("breadcrumbs").classList.toggle("active");
|
button.addEventListener("click", event => {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
|
||||||
|
button.querySelector('ul').classList.toggle("active");
|
||||||
clickOverlay.classList.add('active');
|
clickOverlay.classList.add('active');
|
||||||
|
|
||||||
clickOverlay.addEventListener('click', event => {
|
clickOverlay.addEventListener('click', event => {
|
||||||
document.getElementById("breadcrumbs").classList.remove("active");
|
button.querySelector('ul').classList.remove("active");
|
||||||
clickOverlay.classList.remove('active');
|
clickOverlay.classList.remove('active');
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
overlay.addEventListener('click', event => {
|
overlay.addEventListener('click', event => {
|
||||||
if (document.querySelector('.help.active')) {
|
if (document.querySelector('.help.active')) {
|
||||||
|
@ -411,6 +411,10 @@ document.addEventListener('DOMContentLoaded', event => {
|
|||||||
touches.id = file.id;
|
touches.id = file.id;
|
||||||
touches.count = 1;
|
touches.count = 1;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
touches.count = 0;
|
||||||
|
}, 500)
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,16 +48,15 @@
|
|||||||
<div id="bottom-bar">
|
<div id="bottom-bar">
|
||||||
<div>
|
<div>
|
||||||
{{- if ne .Name "/"}}
|
{{- if ne .Name "/"}}
|
||||||
<div class="action" id="previous">
|
<div data-dropdown class="action" id="previous">
|
||||||
<i class="material-icons">subdirectory_arrow_left</i>
|
<i class="material-icons">subdirectory_arrow_left</i>
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="dropdown" id="breadcrumbs">
|
<ul class="dropdown" id="breadcrumbs">
|
||||||
{{- range $item := .BreadcrumbMap }}
|
{{- range $item := .BreadcrumbMap }}
|
||||||
<a href="{{ $absURL }}{{ $item.URL }}"><li>{{ $item.Name }}</li></a>
|
<a href="{{ $absURL }}{{ $item.URL }}"><li>{{ $item.Name }}</li></a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</ul>
|
</ul>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>{{ if ne .Name "/"}}{{ .Name }}{{ else }}Root{{ end }}</p>
|
<p>{{ if ne .Name "/"}}{{ .Name }}{{ else }}Root{{ end }}</p>
|
||||||
</div>
|
</div>
|
||||||
@ -119,12 +118,10 @@
|
|||||||
</div>
|
</div>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
<div class="action" id="download">
|
<div data-dropdown class="action" id="download">
|
||||||
<a href="?download=true">
|
|
||||||
<i class="material-icons" title="Download">file_download</i><span>Download</span>
|
<i class="material-icons" title="Download">file_download</i><span>Download</span>
|
||||||
</a>
|
|
||||||
{{- if .IsDir }}
|
{{- if .IsDir }}
|
||||||
<ul class="prev-links">
|
<ul class="dropdown" id="download-drop">
|
||||||
<a data-format="tarbz2" href="?download=tarbz2"><li>tar.bz2</li></a>
|
<a data-format="tarbz2" href="?download=tarbz2"><li>tar.bz2</li></a>
|
||||||
<a data-format="targz" href="?download=targz"><li>tar.gz</li></a>
|
<a data-format="targz" href="?download=targz"><li>tar.gz</li></a>
|
||||||
<a data-format="tar" href="?download=tar"><li>tar</li></a>
|
<a data-format="tar" href="?download=tar"><li>tar</li></a>
|
||||||
|
Loading…
Reference in New Issue
Block a user