Skip to content

Commit 5f7482a

Browse files
committed
[fix]修正部分样式错误
1 parent c1a653c commit 5f7482a

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

+1-1
Large diffs are not rendered by default.

toolbox-chrome-bookmark.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

toolbox-raw.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function main() {
105105
card.appendChild(cardHeader);
106106

107107
const cardBody = document.createElement("div");
108-
cardBody.className = "p-4 overflow-y-auto bg-gray-100";
108+
cardBody.className = "p-4 overflow-y-auto bg-auto";
109109
card.appendChild(cardBody);
110110

111111
// 向面板主体添加控件
@@ -199,7 +199,7 @@ function main() {
199199

200200
// 创建编辑框
201201
const form = document.createElement('form');
202-
form.className = "bg-white";
202+
form.className = "bg-auto";
203203
// form.style.padding = '20px';
204204

205205

@@ -327,8 +327,8 @@ function main() {
327327
function showAlert(message, color) {
328328
// 创建提示信息元素
329329
const alert = document.createElement('div');
330-
alert.className = `alert alert-${color || 'success'}`;
331-
alert.innerHTML = message;
330+
alert.className = `text-white px-4 py-2 text-xl font-sans bg-${color || 'green'}-600`;
331+
alert.innerHTML = "[ ! ]" + message;
332332
alert.style.display = 'none'; // 初始隐藏
333333
form.insertBefore(alert, form.firstChild); // 将提示信息插入到表单首部
334334

@@ -368,7 +368,7 @@ function main() {
368368

369369
// 如果有错误,则不执行保存操作
370370
if (hasError) {
371-
showAlert('请填写必填项', 'danger');
371+
showAlert('请填写必填项', 'red');
372372
return;
373373
}
374374

toolbox.user.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name ChatGPT功能增强
33
// @namespace http://tampermonkey.net/
4-
// @version 1.4.2
4+
// @version 1.4.3
55
// @description 目前功能:1.关闭数据监管;2.会话导入导出;3.高负载限制解锁 4.混合接入API(GPT3.5) 5.链接维持 ( 减少An error occured ) 6.聊天记录下载
66
// @author bigemon; 捈荼; Cyan; cr-zhichen
77
// @match https://chat.openai.com/*
@@ -119,7 +119,7 @@ window.LoadAPITemplateWindow = function () {
119119
card.appendChild(cardHeader);
120120

121121
const cardBody = document.createElement("div");
122-
cardBody.className = "p-4 overflow-y-auto bg-gray-100";
122+
cardBody.className = "p-4 overflow-y-auto bg-auto";
123123
card.appendChild(cardBody);
124124

125125
// 向面板主体添加控件
@@ -213,7 +213,7 @@ window.LoadAPITemplateWindow = function () {
213213

214214
// 创建编辑框
215215
const form = document.createElement('form');
216-
form.className = "bg-white";
216+
form.className = "bg-auto";
217217
// form.style.padding = '20px';
218218

219219

@@ -341,8 +341,8 @@ window.LoadAPITemplateWindow = function () {
341341
function showAlert(message, color) {
342342
// 创建提示信息元素
343343
const alert = document.createElement('div');
344-
alert.className = `alert alert-${color || 'success'}`;
345-
alert.innerHTML = message;
344+
alert.className = `text-white px-4 py-2 text-xl font-sans bg-${color || 'green'}-600`;
345+
alert.innerHTML ="[ ! ]" + message;
346346
alert.style.display = 'none'; // 初始隐藏
347347
form.insertBefore(alert, form.firstChild); // 将提示信息插入到表单首部
348348

@@ -382,7 +382,7 @@ window.LoadAPITemplateWindow = function () {
382382

383383
// 如果有错误,则不执行保存操作
384384
if (hasError) {
385-
showAlert('请填写必填项', 'danger');
385+
showAlert('请填写必填项', 'red');
386386
return;
387387
}
388388

@@ -1231,7 +1231,7 @@ setInterval(function () {
12311231
});
12321232
}, 10000);
12331233

1234-
_alert("v1.4.2 脚本已启用。本工具由ChatGPT在指导下生成~\r\n" +
1234+
_alert("v1.4.3 脚本已启用。本工具由ChatGPT在指导下生成~\r\n" +
12351235
"更新:\r\n" +
12361236
"\r\n" +
12371237
"· 为Plus用户增加APP可用的模型(更多轮次的GPT4对话) \r\n" +

0 commit comments

Comments
 (0)