Skip to content

Commit

Permalink
修复设置页面input颜色过于暗的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
WJZ-P committed Nov 18, 2024
1 parent ad8e516 commit d11846f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pluginMenu.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ <h2 style="font-size: 17px;margin-right: 20px" id="show-number-other">0821</h2>
<setting-item data-direction="row">
<div class="row-div">
<h2 style="margin-right: 20px">跑马灯的运行轮数</h2>
<input data-type="primary" class="q-input__inner narrow-input"
<input data-type="primary" class="q-input__inner narrow-input custom-input"
type="text" id="carousel-circle" placeholder="请输入整数">
</div>
<div class="row-div">
<h2 style="margin-right: 20px">表情增删间隔时间</h2>
<input data-type="primary" class="q-input__inner narrow-input"
<input data-type="primary" class="q-input__inner narrow-input custom-input"
type="text" id="carousel-interval" placeholder="单位ms">
</div>
</setting-item>
Expand Down Expand Up @@ -86,7 +86,7 @@ <h2 style="margin-right: 20px">表情增删间隔时间</h2>

<style>
.custom-input {
color: #464646;
color: gray;
/*background-color: #abbbbb; !* 暗色背景 *!*/
}

Expand Down
1 change: 1 addition & 0 deletions src/utils/stickEmoji.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export async function stickEmojiSelf(payload) {
}

const emojiIdArray = getEmojis(config.stickSelfAmount)
//const emojiIdArray=["917505","917506","917507","917508","917509","917510","917511"]
console.log(emojiIdArray)
for (let i = 0; i < config.stickSelfAmount; i++) {
await stick(chatType, peerUid, msgSeq, emojiIdArray[i]);
Expand Down

0 comments on commit d11846f

Please sign in to comment.