dtable-ui-component 6.0.124-beta.p3 → 6.0.124-beta.p4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AsyncUserSelect/index.css +3 -3
- package/lib/DTableColorPicker/ColorPickerPortal/index.js +1 -2
- package/lib/DTableColorPicker/index.css +0 -1
- package/lib/DTableCommonAddTool/index.css +1 -1
- package/lib/DTableCustomFooter/index.css +1 -1
- package/lib/NotificationPopover/index.css +5 -0
- package/lib/SelectOptionGroup/index.css +3 -5
- package/lib/SelectOptionGroup/index.js +1 -0
- package/package.json +1 -1
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
.dtable-ui-user-select-popover .popover {
|
|
13
13
|
width: 385px;
|
|
14
14
|
max-width: 385px;
|
|
15
|
-
background:
|
|
16
|
-
border: 1px solid
|
|
15
|
+
background: var(--bs-popover-bg);
|
|
16
|
+
border: 1px solid var(--bs-border-secondary-color);
|
|
17
17
|
border-radius: 4px;
|
|
18
|
-
box-shadow:
|
|
18
|
+
box-shadow: var(--bs-border-secondary-shadow);
|
|
19
19
|
margin-top: -4px;
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -82,8 +82,7 @@ function ColorPickerPortal(_ref) {
|
|
|
82
82
|
height: '370px',
|
|
83
83
|
visibility: position.visibility,
|
|
84
84
|
opacity: isPositioned ? 1 : 0,
|
|
85
|
-
transition: 'opacity 0.15s ease-in-out'
|
|
86
|
-
marginTop: '8px'
|
|
85
|
+
transition: 'opacity 0.15s ease-in-out'
|
|
87
86
|
},
|
|
88
87
|
ref: containerRef,
|
|
89
88
|
children: children
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
align-items: center;
|
|
16
16
|
justify-content: center;
|
|
17
17
|
height: 50px;
|
|
18
|
+
border-bottom: 1px solid var(--bs-border-secondary-color);
|
|
18
19
|
font-size: 16px;
|
|
19
20
|
font-weight: 600;
|
|
20
21
|
position: relative;
|
|
@@ -158,7 +159,11 @@
|
|
|
158
159
|
|
|
159
160
|
.notification-body .notification-footer {
|
|
160
161
|
height: 40px;
|
|
162
|
+
display: flex;
|
|
163
|
+
align-items: center;
|
|
164
|
+
justify-content: center;
|
|
161
165
|
background: #f9f9f9;
|
|
166
|
+
cursor: pointer;
|
|
162
167
|
}
|
|
163
168
|
|
|
164
169
|
.notification-body .notification-footer:hover {
|
|
@@ -7,13 +7,11 @@
|
|
|
7
7
|
min-width: 100%;
|
|
8
8
|
max-width: 15rem;
|
|
9
9
|
padding: 0.5rem 0;
|
|
10
|
-
box-shadow:
|
|
10
|
+
box-shadow: var(--bs-border-secondary-shadow);
|
|
11
11
|
background: #fff;
|
|
12
|
-
border: 1px solid
|
|
13
|
-
border-radius: 4px
|
|
12
|
+
border: 1px solid var(--bs-border-secondary-color);
|
|
13
|
+
border-radius: 4px;
|
|
14
14
|
z-index: 10001;
|
|
15
|
-
width: 100%;
|
|
16
|
-
margin-top: 4px !important;
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
.option-group .option-group-search {
|
|
@@ -220,6 +220,7 @@ class SelectOptionGroup extends _react.Component {
|
|
|
220
220
|
opacity: 0
|
|
221
221
|
};
|
|
222
222
|
}
|
|
223
|
+
style.top = style.top + 4;
|
|
223
224
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ClickOutside.default, {
|
|
224
225
|
ref: ref => this.clickOutsideRef = ref,
|
|
225
226
|
onClickOutside: this.props.onClickOutside,
|