1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
This commit is contained in:
John Nguyen 2022-11-24 00:17:55 -08:00 committed by GitHub
commit 27fcf9cbfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 364 additions and 1005 deletions

View File

@ -10,10 +10,12 @@ build: server/bindata.go
STATICFILES := $(wildcard static/*)
TEMPLATES := $(wildcard templates/*)
.PHONY: server/bindata.go
server/bindata.go: $(STATICFILES) $(TEMPLATES)
go-bindata -pkg server -tags '!debug' -o server/bindata.go static/... templates/...
go fmt
.PHONY: server/bindata-debug.go
server/bindata-debug.go: $(STATICFILES) $(TEMPLATES)
go-bindata -pkg server -tags 'debug' -o server/bindata-debug.go -debug static/... templates/...
go fmt

File diff suppressed because one or more lines are too long

View File

@ -59,15 +59,20 @@ body#pad.HasDotInName textarea {
font-family: "Lucida Console", Monaco, monospace;
}
.markdown-body ul, .markdown-body ol {
/* .markdown-body ul, .markdown-body ol {
padding-left: 0em;
} */
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
padding-left: 1rem;
padding-right: 1rem;
max-width: 30em;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 5em) {
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
padding-left: 2%;
padding-right: 2%;
}
.pure-menu .pure-menu-horizontal {
max-width: 300px;
}
@ -80,10 +85,6 @@ body#pad.HasDotInName textarea {
}
}
@media (min-width: 50em) {
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
padding-left: 10%;
padding-right: 10%;
}
.pure-menu-disabled, .pure-menu-heading, .pure-menu-link {
padding: .5em 1em;
}
@ -92,20 +93,12 @@ body#pad.HasDotInName textarea {
}
}
@media (min-width: 70em) {
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
padding-left: 15%;
padding-right: 15%;
}
.ChildPageNames ul {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 100em) {
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
padding-left: 20%;
padding-right: 20%;
}
.ChildPageNames ul {
grid-template-columns: repeat(4, 1fr);
}

View File

@ -175,7 +175,7 @@
.dropzone {
min-height: 150px;
border: 2px solid rgba(0, 0, 0, 0.3);
/* border: 2px solid rgba(0, 0, 0, 0.3); */
background: white;
padding: 20px 20px; }
.dropzone.dz-clickable {

View File

@ -371,9 +371,11 @@ function onUploadFinished(file) {
if (file.type.startsWith("image")) {
prefix = '!';
}
var extraText = prefix+'['+file.xhr.getResponseHeader("Location").split('filename=')[1]+'](' +
file.xhr.getResponseHeader("Location") +
')';
')\n\n';
$('#userInput').val(
textBefore +
@ -382,7 +384,7 @@ function onUploadFinished(file) {
);
// Select the newly-inserted link
$('#userInput').prop('selectionStart', cursorPos);
$('#userInput').prop('selectionStart', cursorPos + extraText.length);
$('#userInput').prop('selectionEnd', cursorPos + extraText.length);
$('#userInput').trigger('keyup'); // trigger a save
}