mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
Merge branch 'master' of https://github.com/hacdias/caddy-filemanager
This commit is contained in:
commit
32c9fe029f
@ -23,6 +23,11 @@ img {
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
audio,
|
||||||
|
video {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
border: 1px solid #e6e6e6;
|
border: 1px solid #e6e6e6;
|
||||||
@ -72,8 +77,6 @@ i.spin {
|
|||||||
* EDITOR *
|
* EDITOR *
|
||||||
* * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#editor {}
|
|
||||||
|
|
||||||
#editor .source {
|
#editor .source {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -107,19 +110,108 @@ i.spin {
|
|||||||
* * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
.frontmatter {
|
.frontmatter {
|
||||||
-moz-column-count: 2;
|
column-count: 3;
|
||||||
-webkit-column-count: 2;
|
column-gap: 1em;
|
||||||
column-count: 2;
|
column-fill: balance;
|
||||||
|
/* display: flex; */
|
||||||
|
/* flex-wrap: wrap; */
|
||||||
|
/* justify-content: space-between; */
|
||||||
|
/* flex-grow: 1; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.frontmatter label {
|
.frontmatter label {
|
||||||
display: block;
|
display: block;
|
||||||
|
width: calc(100% - 1em);
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frontmatter label,
|
.frontmatter label,
|
||||||
.frontmatter h3 {
|
.frontmatter h3 {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin: .2em auto;
|
margin: 0 0;
|
||||||
|
color: rgba(0, 0, 0, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter input,
|
||||||
|
.frontmatter textarea {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
border: 0;
|
||||||
|
margin-top: .5em;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter .block,
|
||||||
|
.frontmatter fieldset[data-type="array"],
|
||||||
|
.button {
|
||||||
|
position: relative;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: .2em;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.075);
|
||||||
|
padding: .5em;
|
||||||
|
break-inside: avoid;
|
||||||
|
margin: 0 0 1em;
|
||||||
|
width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter fieldset[data-type="object"] {
|
||||||
|
position: relative;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter .button {
|
||||||
|
background-color: #2196f3;
|
||||||
|
color: #fff;
|
||||||
|
cursor: pointer;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-type="array-item"] {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-type="array-item"] .action {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter textarea {
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-type="array-item"] input {
|
||||||
|
width: calc(100% - 1em);
|
||||||
|
}
|
||||||
|
|
||||||
|
.block .action,
|
||||||
|
fieldset .action {
|
||||||
|
position: absolute;
|
||||||
|
top: .5em;
|
||||||
|
right: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block>.action,
|
||||||
|
fieldset>.action {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block:hover>.action,
|
||||||
|
fieldset:hover>.action {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block .action.add,
|
||||||
|
fieldset .action.add {
|
||||||
|
right: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter .action i {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
@ -130,6 +222,7 @@ fieldset {
|
|||||||
.frontmatter>fieldset h3,
|
.frontmatter>fieldset h3,
|
||||||
.frontmatter>.group h3 {
|
.frontmatter>.group h3 {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
|
margin-bottom: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset h3,
|
fieldset h3,
|
||||||
@ -471,7 +564,11 @@ header .actions {
|
|||||||
|
|
||||||
#bottom-bar>*:first-child {
|
#bottom-bar>*:first-child {
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
<<<<<<< HEAD
|
||||||
max-width: calc(100% - 25em);
|
max-width: calc(100% - 25em);
|
||||||
|
=======
|
||||||
|
max-width: calc(100% - 24em);
|
||||||
|
>>>>>>> cb77ca979b94519ce5afc5ea25e33cd44732e1d8
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -633,11 +730,20 @@ header .actions {
|
|||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
#listing .message {
|
#listing h2.message,
|
||||||
|
.message {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
margin: 1em 0;
|
margin: 1em auto;
|
||||||
display: block !important;
|
display: block !important;
|
||||||
|
width: 95%;
|
||||||
|
color: rgba(0, 0, 0, 0.2);
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message i {
|
||||||
|
font-size: inherit;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1008,6 +1114,12 @@ footer a:hover {
|
|||||||
* MEDIA QUERIES *
|
* MEDIA QUERIES *
|
||||||
* * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
|
@media screen and (max-width: 850px) {
|
||||||
|
.frontmatter {
|
||||||
|
column-count: 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 650px) {
|
@media screen and (max-width: 650px) {
|
||||||
body {
|
body {
|
||||||
transition: .2s ease padding;
|
transition: .2s ease padding;
|
||||||
@ -1042,6 +1154,7 @@ footer a:hover {
|
|||||||
#main-actions .action {
|
#main-actions .action {
|
||||||
padding: .7em;
|
padding: .7em;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
#main-actions .action:hover {
|
#main-actions .action:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.04);
|
background-color: rgba(0, 0, 0, 0.04);
|
||||||
@ -1066,6 +1179,9 @@ footer a:hover {
|
|||||||
#listing.list .item .name {
|
#listing.list .item .name {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.frontmatter {
|
||||||
|
column-count: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 450px) {
|
@media screen and (max-width: 450px) {
|
||||||
|
@ -4,8 +4,9 @@ var editor = {};
|
|||||||
|
|
||||||
editor.textareaAutoGrow = function() {
|
editor.textareaAutoGrow = function() {
|
||||||
let autogrow = function() {
|
let autogrow = function() {
|
||||||
this.style.height = '5px';
|
console.log(this.style.height)
|
||||||
this.style.height = this.scrollHeight + 'px';
|
this.style.height = 'auto';
|
||||||
|
this.style.height = (this.scrollHeight) + 'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
let textareas = document.getElementsByTagName('textarea');
|
let textareas = document.getElementsByTagName('textarea');
|
||||||
@ -97,11 +98,11 @@ function addFrontMatterItemPrompt(parent) {
|
|||||||
|
|
||||||
if (type == "array" || type == "object") {
|
if (type == "array" || type == "object") {
|
||||||
if (parent.dataset.type == "parent") {
|
if (parent.dataset.type == "parent") {
|
||||||
makeFromBaseTemplate(bid, newtype, name, document.querySelector('.frontmatter'));
|
makeFromBaseTemplate(id, type, name, document.querySelector('.frontmatter'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
makeFromBaseTemplate(bid, newtype, name, block);
|
makeFromBaseTemplate(id, type, name, block);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
{{ define "fielset" }}
|
{{ define "fielset" }}
|
||||||
<fieldset id="{{ .Name }}" data-type="{{ .Type }}">
|
<fieldset id="{{ .Name }}" data-type="{{ .Type }}">
|
||||||
{{- if not (eq .Title "") }}
|
{{- if not (eq .Title "") }}
|
||||||
<h3>{{ .Title }}</h3>
|
<h3>{{ .Name }}</h3>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
<div class="action add">
|
<div class="action add">
|
||||||
<i class="material-icons" title="Add">add</i>
|
<i class="material-icons" title="Add">add</i>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
{{ with .Data}}
|
{{ with .Data}}
|
||||||
<main class="container">
|
<main class="container">
|
||||||
{{ if eq .Type "image" }}
|
{{ if eq .Type "image" }}
|
||||||
<img src="{{ .URL }}?raw=true">
|
<center><img src="{{ .URL }}?raw=true"></center>
|
||||||
{{ else if eq .Type "audio" }}
|
{{ else if eq .Type "audio" }}
|
||||||
<audio src="{{ .URL }}?raw=true" controls></audio>
|
<audio src="{{ .URL }}?raw=true" controls></audio>
|
||||||
{{ else if eq .Type "video" }}
|
{{ else if eq .Type "video" }}
|
||||||
@ -12,7 +12,7 @@
|
|||||||
and watch it with your favorite video player!
|
and watch it with your favorite video player!
|
||||||
</video>
|
</video>
|
||||||
{{ else if eq .Type "blob" }}
|
{{ else if eq .Type "blob" }}
|
||||||
<a href="?download=true">Download</a>
|
<a href="?download=true"><h2 class="message">Download <i class="material-icons">file_download</i></h2></a>
|
||||||
{{ else}}
|
{{ else}}
|
||||||
<pre>{{ .StringifyContent }}</pre>
|
<pre>{{ .StringifyContent }}</pre>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user