diff --git a/src/components/add-new-column.js b/src/components/add-new-column.js
index 7245b13..9f72c23 100644
--- a/src/components/add-new-column.js
+++ b/src/components/add-new-column.js
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import intl from 'react-intl-universal';
-import styles from '../css/plugin-layout.module.css';
+import { Button } from 'reactstrap';
class AddColumn extends React.Component {
@@ -21,10 +21,10 @@ class AddColumn extends React.Component {
const {readonly} = this.props;
return (
-
);
}
}
diff --git a/src/components/deduplication-columns.js b/src/components/deduplication-columns.js
index fd52a8a..502256a 100644
--- a/src/components/deduplication-columns.js
+++ b/src/components/deduplication-columns.js
@@ -22,11 +22,14 @@ class DeDuplicationColumns extends React.Component {
onChange={(option) => this.onSelectChange(option, index)}
/>
- this.deleteColumn(index)}
- className={`border-0 p-0 ml-2 dtable-font dtable-icon-fork-number ${styles['column-delete-icon']}`}>
+ className='seatable-icon-btn ml-2 mt-1'
+ >
+
+
);
});
diff --git a/src/components/delete-component.js b/src/components/delete-component.js
index cf584f5..523d325 100644
--- a/src/components/delete-component.js
+++ b/src/components/delete-component.js
@@ -23,7 +23,9 @@ class DeleteRowDropdownMenu extends React.Component {
return(
-
+
+
+
diff --git a/src/components/detail-duplication-dialog.js b/src/components/detail-duplication-dialog.js
index d99b6a1..18fdec6 100644
--- a/src/components/detail-duplication-dialog.js
+++ b/src/components/detail-duplication-dialog.js
@@ -336,14 +336,18 @@ class DetailDuplicationDialog extends React.Component {
{intl.get('Delete')}
}
{selectedItem.rows.length > 0 &&
{isCheckboxesShown ? intl.get('Cancel') : intl.get('Select')}
diff --git a/src/css/plugin-layout.module.css b/src/css/plugin-layout.module.css
index 2186144..9818ce5 100644
--- a/src/css/plugin-layout.module.css
+++ b/src/css/plugin-layout.module.css
@@ -169,10 +169,10 @@
top: 10px;
width: 20px;
height: 20px;
- border-radius: 2px;
- font-size: 10px;
+ border-radius: 4px;
+ font-size: 12px;
line-height: 20px;
- color: #bdbdbd;
+ color: #666;
text-align: center;
}
@@ -182,15 +182,15 @@
}
.scroll-arrow-active:hover {
- background: #f0f0f0;
+ background: rgba(0, 0, 0, 0.04);
}
.scroll-left {
- left: 3px;
+ left: 4px;
}
.scroll-right {
- right: 3px;
+ right: 4px;
}
.column-name-list {
@@ -328,10 +328,6 @@
cursor: pointer;
}
-.more-level-font:hover {
- color: #191919;
-}
-
.selected-cell::after {
content: '';
position: absolute;
@@ -429,10 +425,6 @@
cursor: pointer;
}
-.column-delete-icon:hover {
- color: #212529;
-}
-
.column-delete-icon:focus {
outline: none;
}