mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
css & fix image display
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
<div class="d-flex justify-content-between">
|
||||
|
||||
<div>
|
||||
<label class="col-form-label"><span class="blk-space"></span></label>
|
||||
<div class="file-upload" v-if="support.fileUpload">
|
||||
<input type="button" class="btn btn-primary" :value="isUploading ? 'Uploading...': 'Upload file'"
|
||||
:disabled="isUploading">
|
||||
@@ -34,7 +33,7 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="pre-wrapper">
|
||||
<div class="progress" v-show="isLoading">
|
||||
<div class="progress-bar progress-bar-striped" role="progressbar"></div>
|
||||
</div>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>0bin - encrypted pastebin</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
||||
<meta name="description" content="0bin is a client-side-encrypted
|
||||
pastebin featuring burn after reading, history, and
|
||||
a clipboard">
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
<div class="d-flex justify-content-between">
|
||||
|
||||
<div>
|
||||
<label class="col-form-label"><span class="blk-space"></span></label>
|
||||
<div class="file-upload" v-if="support.fileUpload">
|
||||
<input type="button" class="btn btn-primary" :value="isUploading ? 'Uploading...': 'Upload file'"
|
||||
:disabled="isUploading">
|
||||
@@ -26,7 +25,7 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="pre-wrapper">
|
||||
<div class="progress" v-show="isLoading">
|
||||
<div class="progress-bar progress-bar-striped" role="progressbar"></div>
|
||||
</div>
|
||||
|
||||
@@ -33,9 +33,8 @@
|
||||
<div>
|
||||
<span class="paste-option btn-group">
|
||||
<button class="btn btn-clone btn-secondary" @click.prevent="handleClone()">Clone</button>
|
||||
|
||||
<button class="btn btn-secondar" v-if="downloadLink.url">
|
||||
<a :href="downloadLink.url" :download="downloadLink.name"> Download</a>
|
||||
<button class="btn btn-secondary download-link" v-if="downloadLink.url">
|
||||
<a :href="downloadLink.url" :download="downloadLink.name">Download</a>
|
||||
</button>
|
||||
|
||||
<button class="btn btn-secondary">New Paste</button>
|
||||
@@ -56,9 +55,11 @@
|
||||
%end
|
||||
|
||||
<pre id="paste-content" class="prettyprint">
|
||||
<code>
|
||||
{{ paste.content }}
|
||||
</code>
|
||||
<div class="paste-wrapper">
|
||||
<code>
|
||||
{{ paste.content }}
|
||||
</code>
|
||||
</div>
|
||||
</pre>
|
||||
|
||||
<div class="d-flex justify-content-between down">
|
||||
@@ -69,7 +70,7 @@
|
||||
<span class="paste-option btn-group">
|
||||
<button class="btn btn-clone btn-secondary" @click.prevent="handleClone()">Clone</button>
|
||||
|
||||
<button class="btn btn-secondar" v-if="downloadLink.url">
|
||||
<button class="btn btn-secondary download-link" v-if="downloadLink.url">
|
||||
<a :href="downloadLink.url" :download="downloadLink.name"> Download</a>
|
||||
</button>
|
||||
|
||||
@@ -88,7 +89,6 @@
|
||||
<div class="d-flex justify-content-between">
|
||||
|
||||
<div>
|
||||
<label class="col-form-label"> </label>
|
||||
<div class="file-upload">
|
||||
<button type="button" class="btn btn-danger" @click.prevent="handleCancelClone()">Cancel clone</button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user