update some icons and stuff
This commit is contained in:
@@ -186,7 +186,7 @@ Viewer.prototype.renderSponsorsSimple = function() {
|
||||
// }
|
||||
|
||||
Viewer.prototype.keyboardEvent = function(evt) {
|
||||
if (evt.ctrlKey || evt.altKey) {
|
||||
if (evt.ctrlKey || evt.altKey || evt.metaKey) {
|
||||
return // prevent custom shortcuts from interfering with system shortcuts
|
||||
}
|
||||
|
||||
|
@@ -18,7 +18,7 @@ function ImageViewer(viewer, file) {
|
||||
this.element.addEventListener("doubletap", (e) => { return this.doubleclick(e) })
|
||||
this.element.addEventListener("mousedown", (e) => { return this.mousedown(e) })
|
||||
this.element.addEventListener("mousedown", (e) => { return this.mousedown(e) })
|
||||
this.element.addEventListener("wheel", (e) => { return this.scroll(e) })
|
||||
// this.element.addEventListener("wheel", (e) => { return this.scroll(e) })
|
||||
document.addEventListener("mousemove", (e) => { return this.mousemove(e) })
|
||||
document.addEventListener("mouseup", (e) => { return this.mouseup(e) })
|
||||
|
||||
|
@@ -383,7 +383,7 @@ btnCopyMarkdown.addEventListener("click", function(){
|
||||
* Keyboard shortcuts
|
||||
*/
|
||||
document.addEventListener("keydown", function(event){
|
||||
if (event.ctrlKey || event.altKey) {
|
||||
if (event.ctrlKey || event.altKey || event.metaKey) {
|
||||
return // prevent custom shortcuts from interfering with system shortcuts
|
||||
}
|
||||
if (event.keyCode === 67) { // c
|
||||
|
@@ -23,7 +23,7 @@ function uploadText() {
|
||||
|
||||
// Upload the file when ctrl + s is pressed
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if (event.ctrlKey && (event.keyCode === 83)) {
|
||||
if ((event.ctrlKey || event.metaKey) && event.keyCode === 83) {
|
||||
event.preventDefault();
|
||||
uploadText();
|
||||
return false;
|
||||
|
@@ -43,6 +43,7 @@
|
||||
white-space: nowrap;
|
||||
direction: ltr;
|
||||
text-rendering: optimizeLegibility;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.icon.small {
|
||||
font-size: 16px;
|
||||
@@ -320,7 +321,7 @@ pre{
|
||||
|
||||
.big_button{
|
||||
width: 40%;
|
||||
min-width: 200px;
|
||||
min-width: 250px;
|
||||
max-width: 400px;
|
||||
margin: 10px !important;
|
||||
border-radius: 5px;
|
||||
|
@@ -226,7 +226,7 @@
|
||||
height: 24px;
|
||||
}
|
||||
.toolbar_button > span {
|
||||
vertical-align: 6px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.toolbar_label {
|
||||
|
@@ -19,12 +19,13 @@
|
||||
file is included in (pixeldrain.com/l/somelist).
|
||||
</p>
|
||||
<p>
|
||||
You cannot delete files yourself. Once a file has been uploaded
|
||||
to pixeldrain it will stay there for at least 30 days. If you
|
||||
accidentally upload something you shouldn't have, just don't
|
||||
share the link. The file will expire eventually. File links are
|
||||
not indexed or published anywhere. As long as you don't share it
|
||||
nobody will see it.
|
||||
If you upload a file while logged into your pixeldrain account
|
||||
you will be able to delete the file yourself from the download
|
||||
page of the file. If you are not logged in and you accidentally
|
||||
upload something you shouldn't have, just don't share the link.
|
||||
The file will expire eventually. File links are not indexed or
|
||||
published anywhere. As long as you don't share it nobody will
|
||||
see it.
|
||||
</p>
|
||||
|
||||
<h3>Does pixeldrain cost any money?</h3>
|
||||
|
@@ -56,8 +56,12 @@
|
||||
manager
|
||||
</div></div>
|
||||
<input id="file_input_field" type="file" name="file" multiple="multiple"/>
|
||||
<button id="upload_file_button" class="big_button button_highlight"><u>U</u>pload Files</button>
|
||||
<button id="upload_text_button" class="big_button button_highlight">Upload <u>T</u>ext</button>
|
||||
<button id="upload_file_button" class="big_button button_highlight">
|
||||
<i class="icon">cloud_upload</i>
|
||||
<u>U</u>pload Files</button>
|
||||
<button id="upload_text_button" class="big_button button_highlight">
|
||||
<i class="icon">text_fields</i>
|
||||
Upload <u>T</u>ext</button>
|
||||
<br/>
|
||||
<p>
|
||||
By uploading files to pixeldrain you accept that a cookie will
|
||||
@@ -104,10 +108,10 @@
|
||||
</button>
|
||||
</div>
|
||||
<br/>
|
||||
<button id="btn_create_list">Create list with uploaded files</button>
|
||||
<button id="btn_copy_links">Copy all links to clipboard</button>
|
||||
<button id="btn_copy_markdown">Copy markdown to clipboard</button>
|
||||
<button id="btn_copy_bbcode">Copy BBCode to clipboard</button>
|
||||
<button id="btn_create_list"><i class="icon small">list</i> Create list with uploaded files</button>
|
||||
<button id="btn_copy_links"><i class="icon small">content_copy</i> Copy all links to clipboard</button>
|
||||
<button id="btn_copy_markdown"><i class="icon small">content_copy</i> Copy markdown to clipboard</button>
|
||||
<button id="btn_copy_bbcode"><i class="icon small">content_copy</i> Copy BBCode to clipboard</button>
|
||||
<br/>
|
||||
<div id="created_lists"></div>
|
||||
</div>
|
||||
|
@@ -20,6 +20,7 @@
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
display: inline-block;
|
||||
line-height: 0;
|
||||
}
|
||||
.textarea{
|
||||
position: relative;
|
||||
@@ -27,12 +28,15 @@
|
||||
width: 100%;
|
||||
background: var(--layer_1_color);
|
||||
color: var(--text_color);
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.toolbar_button{
|
||||
text-align: left;
|
||||
}
|
||||
.toolbar_button > img {
|
||||
.toolbar_button > img,
|
||||
.toolbar_button > svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
@@ -45,11 +49,11 @@
|
||||
<body>
|
||||
<div id="toolbar">
|
||||
<button class="toolbar_button button_full_width button_highlight" onclick="uploadText();">
|
||||
{{template `upload.svg` .}}
|
||||
<i class="icon">save</i>
|
||||
<span>Upload</span>
|
||||
</button>
|
||||
<a href="/" class="button toolbar_button button_full_width">
|
||||
<img src="{{template `pixeldrain_icon.png`}}" alt="Back to the Home page"/>
|
||||
{{template `pixeldrain.svg` .}}
|
||||
<span>Home</span>
|
||||
</a>
|
||||
<br/><br/>
|
||||
|
Reference in New Issue
Block a user