assets/sally.css, index.html, js/clipboard.js: remove gallery link.

This commit is contained in:
Lucio Andrés Illanes Albornoz 2018-10-25 02:21:39 +02:00
parent ac8fb74dc4
commit 5d045d4de5
3 changed files with 1 additions and 10 deletions

View File

@ -39,9 +39,6 @@ a:hover { text-decoration: underline }
white-space:pre-wrap;
word-wrap: break-word;
}
#gallery_rapper {
display: inline
}
#ui_rapper .block {
width: 100px;
}
@ -204,10 +201,8 @@ textarea { font-size:12pt; width: 37vw; height: 300px; background: #333; color:
.panke #shader_el,
.panke #load_el,
.panke #gallery_el,
.panke #import_textarea,
.panke #doc_el,
.panke #gallery_el,
.panke #export_button,
.panke #grid_el,
.panke #save_el,

View File

@ -69,7 +69,6 @@
<br>
<span id="shader_el" class="tool">shader</span>
<a id="doc_el" href="https://www.lucioillanes.de/asciiblaster/doc/" target="_blank">doc</a>
<a id="gallery_el" href="https://www.lucioillanes.de/asciiblaster/im/gallery/?tag=ascii&limit=80" target="_blank">gallery</a>
<br>
<span id="advanced_checkbox" class="tool">_ advanced</span>
<br>
@ -90,8 +89,7 @@
<span id="import_buttons">
<button id="import_button">import</button>
</span>
<div id="gallery_rapper">
</div><br>
<div id="gallery_rapper" /><br >
<div id="cutoff_warning_el">colorcode is too wide for irc and is cutoff</div>
<textarea id="import_textarea"></textarea>
</div>

View File

@ -33,7 +33,6 @@ var clipboard = (function () {
import_mode: function () {
focus()
clipboard.importing = true
gallery_rapper.style.display = 'none'
format_el.style.display = 'none'
cutoff_warning_el.style.display = 'none'
import_buttons.style.display = "inline"
@ -46,7 +45,6 @@ var clipboard = (function () {
import_buttons.style.display = "none"
format_el.style.display = 'inline'
cutoff_warning_el.style.display = 'none'
gallery_rapper.style.display = 'inline'
clipboard.export_data()
},