Fix: poll UI
This commit is contained in:
parent
174a8696b0
commit
6f7f5cbabc
|
@ -122,14 +122,6 @@ textarea {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: calc(100% - 32px);
|
height: calc(100% - 32px);
|
||||||
}
|
}
|
||||||
#poll {
|
|
||||||
}
|
|
||||||
.poll-provider {
|
|
||||||
position: absolute;
|
|
||||||
height: calc(100% - 90px);
|
|
||||||
overflow-y: scroll;
|
|
||||||
top: 90px;
|
|
||||||
}
|
|
||||||
#posttgl,#toot-post-btn {
|
#posttgl,#toot-post-btn {
|
||||||
background-color: var(--accentbtn);
|
background-color: var(--accentbtn);
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,7 +110,7 @@ function post(mode, postvis) {
|
||||||
} else {
|
} else {
|
||||||
var scheduled = "";
|
var scheduled = "";
|
||||||
}
|
}
|
||||||
if ($("#poll-sel").val() == "mastodon-poll") {
|
if (!$("#poll").hasClass("hide")) {
|
||||||
var options = [];
|
var options = [];
|
||||||
$(".mastodon-choice").map(function () {
|
$(".mastodon-choice").map(function () {
|
||||||
var choice = $(this).val();
|
var choice = $(this).val();
|
||||||
|
@ -274,6 +274,8 @@ function clear() {
|
||||||
$("#days_poll").val(0);
|
$("#days_poll").val(0);
|
||||||
$("#hours_poll").val(0);
|
$("#hours_poll").val(0);
|
||||||
$("#mins_poll").val(6);
|
$("#mins_poll").val(6);
|
||||||
|
$("#poll").addClass("hide")
|
||||||
|
$("#pollsta").text(lang.lang_no)
|
||||||
$(".mastodon-choice").map(function () {
|
$(".mastodon-choice").map(function () {
|
||||||
$(this).val("");
|
$(this).val("");
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,6 +10,7 @@ function pollToggle() {
|
||||||
}
|
}
|
||||||
$("#post-box").css("width", width + "px")
|
$("#post-box").css("width", width + "px")
|
||||||
$("#poll").removeClass("hide")
|
$("#poll").removeClass("hide")
|
||||||
|
$("#pollsta").text(lang.lang_yesno)
|
||||||
} else {
|
} else {
|
||||||
$("#right-side").hide()
|
$("#right-side").hide()
|
||||||
$("#left-side").css("width", "100%")
|
$("#left-side").css("width", "100%")
|
||||||
|
@ -21,6 +22,7 @@ function pollToggle() {
|
||||||
$("#post-box").css("width", width + "px")
|
$("#post-box").css("width", width + "px")
|
||||||
$("#emoji").addClass("hide")
|
$("#emoji").addClass("hide")
|
||||||
$("#poll").addClass("hide")
|
$("#poll").addClass("hide")
|
||||||
|
$("#pollsta").text(lang.lang_no)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function pollProviderCk() {
|
function pollProviderCk() {
|
||||||
|
|
|
@ -45,7 +45,6 @@ function show() {
|
||||||
}
|
}
|
||||||
$('#post-box').css("left", left + "px")
|
$('#post-box').css("left", left + "px")
|
||||||
$('#post-box').css("top", top + "px")
|
$('#post-box').css("top", top + "px")
|
||||||
var height = localStorage.getItem("postbox-height");
|
|
||||||
var width = localStorage.getItem("postbox-width");
|
var width = localStorage.getItem("postbox-width");
|
||||||
if (width) {
|
if (width) {
|
||||||
$('#post-box').css("width", width + "px")
|
$('#post-box').css("width", width + "px")
|
||||||
|
|
|
@ -168,8 +168,8 @@
|
||||||
<div id="preview" class="mize"></div>
|
<div id="preview" class="mize"></div>
|
||||||
<span class=" sml mize"><span data-trans="reply">@@replyMode@@</span>:
|
<span class=" sml mize"><span data-trans="reply">@@replyMode@@</span>:
|
||||||
<span id="rec">@@no@@</span>/<span data-trans="file">@@temp@@</span>:
|
<span id="rec">@@no@@</span>/<span data-trans="file">@@temp@@</span>:
|
||||||
<span id="mec">@@nothing@@</span>/<span data-trans="vis">@@vis@@</span>:
|
<span id="mec">@@nothing@@</span>/@@poll@@:<span id="pollsta">@@no@@</span>
|
||||||
<span id="vis">public</span>
|
<span id="vis" class="hide">public</span>
|
||||||
</span>
|
</span>
|
||||||
<br>
|
<br>
|
||||||
<input type="text" id="cw-text" placeholder="@@cwtext@@" class="mize" style="margin:0">
|
<input type="text" id="cw-text" placeholder="@@cwtext@@" class="mize" style="margin:0">
|
||||||
|
@ -289,11 +289,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!--Poll UI-->
|
<!--Poll UI-->
|
||||||
<div id="poll" class="hide">
|
<div id="poll" class="hide">
|
||||||
<select id="poll-sel" onchange="pollProviderCk()">
|
<div id="mastodon-poll" class="poll-provider">
|
||||||
<option value="nothing">@@pollDdisabled@@</option>
|
|
||||||
<option value="mastodon-poll">Mastodon(2.8~)</option>
|
|
||||||
</select>
|
|
||||||
<div id="mastodon-poll" class="poll-provider hide">
|
|
||||||
<input type="text" class="mastodon-choice" placeholder="@@choice@@1">
|
<input type="text" class="mastodon-choice" placeholder="@@choice@@1">
|
||||||
<input type="text" class="mastodon-choice" placeholder="@@choice@@2">
|
<input type="text" class="mastodon-choice" placeholder="@@choice@@2">
|
||||||
<input type="text" class="mastodon-choice" placeholder="@@choice@@3">
|
<input type="text" class="mastodon-choice" placeholder="@@choice@@3">
|
||||||
|
@ -685,7 +681,8 @@
|
||||||
Pixiv Fanboxでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
|
Pixiv Fanboxでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
|
||||||
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
|
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
|
||||||
<h5>Release Note Usamin (18.9.1)</h5>
|
<h5>Release Note Usamin (18.9.1)</h5>
|
||||||
・トゥートボックスのリサイズを横だけにした
|
・トゥートボックスのリサイズを横だけにした<br>
|
||||||
|
・アンケートが上手く作成できない不具合を修正。
|
||||||
<h5>Release Note Usamin (18.9.0)</h5>
|
<h5>Release Note Usamin (18.9.0)</h5>
|
||||||
・設定エクスポートファイルが変更された<br>
|
・設定エクスポートファイルが変更された<br>
|
||||||
.thedeskconfigv2: 17.2.0~18.8.3<br>
|
.thedeskconfigv2: 17.2.0~18.8.3<br>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user