From 9172166723d623d3267e15b782a3f3e2669f5242 Mon Sep 17 00:00:00 2001
From: GongFlying <150640661+gzcqqqqqqqq1@users.noreply.github.com>
Date: Tue, 7 Jul 2026 18:12:24 +0800
Subject: [PATCH 1/2] update ui
---
src/CollapsibleSettingLayout/index.jsx | 4 +++-
src/DTableModalHeader/index.css | 4 ++++
src/DTableModalHeader/index.js | 4 +++-
src/IconButton/index.css | 3 +++
src/IconButton/index.js | 4 +++-
5 files changed, 16 insertions(+), 3 deletions(-)
create mode 100644 src/DTableModalHeader/index.css
create mode 100644 src/IconButton/index.css
diff --git a/src/CollapsibleSettingLayout/index.jsx b/src/CollapsibleSettingLayout/index.jsx
index e83b3faa..81e4548a 100644
--- a/src/CollapsibleSettingLayout/index.jsx
+++ b/src/CollapsibleSettingLayout/index.jsx
@@ -15,7 +15,9 @@ const CollapsibleSettingLayout = (props) => {
onClick={() => setIsShowSettings(!isShowSettings)}
>
{title}
-
+
+
+
{isShowSettings &&
{children || ''}
}
diff --git a/src/DTableModalHeader/index.css b/src/DTableModalHeader/index.css
new file mode 100644
index 00000000..01c4aad1
--- /dev/null
+++ b/src/DTableModalHeader/index.css
@@ -0,0 +1,4 @@
+.modal-close-btn {
+ font-size: 16px;
+ font-weight: 700;
+}
diff --git a/src/DTableModalHeader/index.js b/src/DTableModalHeader/index.js
index 4cc8ed80..3fcf3d70 100644
--- a/src/DTableModalHeader/index.js
+++ b/src/DTableModalHeader/index.js
@@ -2,9 +2,11 @@ import React from 'react';
import { ModalHeader } from 'reactstrap';
import IconButton from '../IconButton';
+import './index.css';
+
const DTableModalHeader = ({ children, ...props }) => {
const customCloseBtn = (
-
+
);
return (
diff --git a/src/IconButton/index.css b/src/IconButton/index.css
new file mode 100644
index 00000000..e6b83f40
--- /dev/null
+++ b/src/IconButton/index.css
@@ -0,0 +1,3 @@
+.icon-button .seatable-icon {
+ font-size: 16px;
+}
diff --git a/src/IconButton/index.js b/src/IconButton/index.js
index 6398c75d..2c0a075e 100644
--- a/src/IconButton/index.js
+++ b/src/IconButton/index.js
@@ -2,10 +2,12 @@ import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
+import './index.css';
+
const IconButton = ({ disabled, className, icon, children, ...otherProperties }) => {
return (
{icon && ()}
From ce0bd90dfd3eb753e3d8439066aadb44765221d9 Mon Sep 17 00:00:00 2001
From: GongFlying <150640661+gzcqqqqqqqq1@users.noreply.github.com>
Date: Thu, 9 Jul 2026 14:08:27 +0800
Subject: [PATCH 2/2] update ui
---
src/DTableRadioGroup/index.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/DTableRadioGroup/index.jsx b/src/DTableRadioGroup/index.jsx
index e2013da2..ad3c51b5 100644
--- a/src/DTableRadioGroup/index.jsx
+++ b/src/DTableRadioGroup/index.jsx
@@ -83,7 +83,7 @@ class DTableRadioGroup extends React.Component {
);
})}
- this.slider = ref}>
+ this.slider = ref}>
);