some style tweaks
This commit is contained in:
@@ -17,13 +17,13 @@ var UploadProgressBar = /** @class */ (function () {
|
|||||||
this.uploadDiv.innerText = "Uploading... " + Math.round(progress * 1000) / 10 + "%\n" + this.file.name;
|
this.uploadDiv.innerText = "Uploading... " + Math.round(progress * 1000) / 10 + "%\n" + this.file.name;
|
||||||
this.uploadDiv.setAttribute('style', 'background: linear-gradient('
|
this.uploadDiv.setAttribute('style', 'background: linear-gradient('
|
||||||
+ 'to right, '
|
+ 'to right, '
|
||||||
+ '#111 0%, '
|
+ 'var(--file_background_color) 0%, '
|
||||||
+ 'var(--highlight_color) ' + ((progress * 100)) + '%, '
|
+ 'var(--highlight_color) ' + ((progress * 100)) + '%, '
|
||||||
+ '#111 ' + ((progress * 100) + 1) + '%)');
|
+ 'var(--file_background_color) ' + ((progress * 100) + 1) + '%)');
|
||||||
};
|
};
|
||||||
UploadProgressBar.prototype.onFinished = function (id) {
|
UploadProgressBar.prototype.onFinished = function (id) {
|
||||||
finishedUploads[this.queueNum] = id;
|
finishedUploads[this.queueNum] = id;
|
||||||
this.uploadDiv.setAttribute('style', 'background: #111');
|
this.uploadDiv.setAttribute('style', 'background: var(--file_background_color)');
|
||||||
this.uploadDiv.setAttribute('href', '/u/' + id);
|
this.uploadDiv.setAttribute('href', '/u/' + id);
|
||||||
this.uploadDiv.setAttribute("target", "_blank");
|
this.uploadDiv.setAttribute("target", "_blank");
|
||||||
this.uploadDivJQ.html('<img src="' + apiEndpoint + '/file/' + id + '/thumbnail" alt="' + this.file.name + '"/>'
|
this.uploadDivJQ.html('<img src="' + apiEndpoint + '/file/' + id + '/thumbnail" alt="' + this.file.name + '"/>'
|
||||||
@@ -31,7 +31,7 @@ var UploadProgressBar = /** @class */ (function () {
|
|||||||
+ '<span style="color: var(--highlight_color);">' + window.location.hostname + '/u/' + id + '</span>');
|
+ '<span style="color: var(--highlight_color);">' + window.location.hostname + '/u/' + id + '</span>');
|
||||||
};
|
};
|
||||||
UploadProgressBar.prototype.onFailure = function (response, error) {
|
UploadProgressBar.prototype.onFailure = function (response, error) {
|
||||||
this.uploadDiv.setAttribute('style', 'background: #821C40');
|
this.uploadDiv.setAttribute('style', 'background: var(--danger_color)');
|
||||||
this.uploadDivJQ.html(this.file.name + '<br/>'
|
this.uploadDivJQ.html(this.file.name + '<br/>'
|
||||||
+ 'Upload failed after three tries!<br/>'
|
+ 'Upload failed after three tries!<br/>'
|
||||||
+ "Message: " + error);
|
+ "Message: " + error);
|
||||||
|
@@ -58,5 +58,5 @@ function historyAddItem(json) {
|
|||||||
+ ("00" + date.getDate()).slice(-2)
|
+ ("00" + date.getDate()).slice(-2)
|
||||||
+ "</a>";
|
+ "</a>";
|
||||||
|
|
||||||
$("#uploadedFiles").append($(uploadItem).hide().fadeIn(400));
|
$("#uploadedFiles").append($(uploadItem).hide().fadeIn(2000));
|
||||||
}
|
}
|
||||||
|
@@ -207,13 +207,6 @@ pre{
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
.files_container{
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0;
|
|
||||||
height: auto;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file_button, .file_button:hover{
|
.file_button, .file_button:hover{
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -224,7 +217,7 @@ pre{
|
|||||||
margin: 6px;
|
margin: 6px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0px 0px 6px 2px var(--shadow_color);
|
box-shadow: 0px 0px 6px 2px var(--file_background_color);
|
||||||
background-color: var(--file_background_color);
|
background-color: var(--file_background_color);
|
||||||
color: var(--text_color);
|
color: var(--text_color);
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
@@ -33,15 +33,15 @@ class UploadProgressBar implements FileUpload {
|
|||||||
'style',
|
'style',
|
||||||
'background: linear-gradient('
|
'background: linear-gradient('
|
||||||
+'to right, '
|
+'to right, '
|
||||||
+'#111 0%, '
|
+'var(--file_background_color) 0%, '
|
||||||
+'var(--highlight_color) '+ ((progress*100)) +'%, '
|
+'var(--highlight_color) '+ ((progress*100)) +'%, '
|
||||||
+'#111 '+ ((progress*100)+1) +'%)'
|
+'var(--file_background_color) '+ ((progress*100)+1) +'%)'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
public onFinished(id: string){
|
public onFinished(id: string){
|
||||||
finishedUploads[this.queueNum] = id
|
finishedUploads[this.queueNum] = id
|
||||||
|
|
||||||
this.uploadDiv.setAttribute('style', 'background: #111')
|
this.uploadDiv.setAttribute('style', 'background: var(--file_background_color)')
|
||||||
this.uploadDiv.setAttribute('href', '/u/'+id)
|
this.uploadDiv.setAttribute('href', '/u/'+id)
|
||||||
this.uploadDiv.setAttribute("target", "_blank");
|
this.uploadDiv.setAttribute("target", "_blank");
|
||||||
this.uploadDivJQ.html(
|
this.uploadDivJQ.html(
|
||||||
@@ -51,7 +51,7 @@ class UploadProgressBar implements FileUpload {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
public onFailure(response: JQuery.Ajax.ErrorTextStatus, error: string) {
|
public onFailure(response: JQuery.Ajax.ErrorTextStatus, error: string) {
|
||||||
this.uploadDiv.setAttribute('style', 'background: #821C40')
|
this.uploadDiv.setAttribute('style', 'background: var(--danger_color)')
|
||||||
this.uploadDivJQ.html(
|
this.uploadDivJQ.html(
|
||||||
this.file.name+'<br/>'
|
this.file.name+'<br/>'
|
||||||
+ 'Upload failed after three tries!<br/>'
|
+ 'Upload failed after three tries!<br/>'
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
This data is saved locally in your web browser and gets updated every time you upload a file through your current browser.
|
This data is saved locally in your web browser and gets updated every time you upload a file through your current browser.
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
|
|
||||||
<div id="uploadedFiles" class="files_container"></div>
|
<div id="uploadedFiles" class="highlight_dark border_top border_bottom"></div>
|
||||||
{{template "footer"}}
|
{{template "footer"}}
|
||||||
</div>
|
</div>
|
||||||
<script src="/res/script/history.js"></script>
|
<script src="/res/script/history.js"></script>
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<div id="body" class="body">
|
<div id="body" class="body">
|
||||||
{{template "menu" .}}
|
{{template "menu" .}}
|
||||||
<div class="highlight_middle border_bottom">
|
<div class="highlight_middle border_bottom" style="padding: 0;">
|
||||||
<input id="file_input_field" type="file" name="file" multiple="multiple"/>
|
<input id="file_input_field" type="file" name="file" multiple="multiple"/>
|
||||||
<button id="select_file_button" class="big_button button_highlight">Upload Files</button>
|
<button id="select_file_button" class="big_button button_highlight">Upload Files</button>
|
||||||
<button id="text_button" class="big_button button_highlight" onClick="window.location.href = '/t/'">Upload Text</button><br/>
|
<button id="text_button" class="big_button button_highlight" onClick="window.location.href = '/t/'">Upload Text</button><br/>
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
<br/>Please share responsibly.
|
<br/>Please share responsibly.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
For other questions you can reach me at
|
For other questions you can reach me at
|
||||||
<a href="mailto:support@pixeldrain.com">support@pixeldrain.com</a>
|
<a href="mailto:support@pixeldrain.com">support@pixeldrain.com</a>
|
||||||
</p>
|
</p>
|
||||||
<h2>Funding</h2>
|
<h2>Funding</h2>
|
||||||
|
@@ -188,7 +188,7 @@ var SolarizedDarkStyle = PixeldrainStyleSheet{
|
|||||||
AccentColorMedium: HSL{192, .81, .14},
|
AccentColorMedium: HSL{192, .81, .14},
|
||||||
AccentColorLight: HSL{192, .95, .17},
|
AccentColorLight: HSL{192, .95, .17},
|
||||||
|
|
||||||
ShadowColor: HSL{192, .87, .05},
|
ShadowColor: HSL{192, .87, 0},
|
||||||
ShadowSpread: 50,
|
ShadowSpread: 50,
|
||||||
ShadowIntensity: 5,
|
ShadowIntensity: 5,
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user