dtable-ui-component 6.0.110-oot.2 → 6.0.110-oot.4
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.
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
background: inherit;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
.seatable-check-color {
|
|
53
|
+
color: var(--bs-icon-secondary-color);
|
|
54
|
+
}
|
|
55
|
+
|
|
52
56
|
.seatable-customize-select.dtable-ui-collaborator-selector .seatable-option-group .seatable-option-group-content,
|
|
53
57
|
.seatable-customize-select.selector-group .seatable-option-group .seatable-option-group-content {
|
|
54
58
|
padding: 10px;
|
|
@@ -86,3 +90,10 @@
|
|
|
86
90
|
white-space: nowrap;
|
|
87
91
|
color: #868E96;
|
|
88
92
|
}
|
|
93
|
+
|
|
94
|
+
.seatable-customize-select .selected-option-show {
|
|
95
|
+
height: 20px;
|
|
96
|
+
line-height: 20px;
|
|
97
|
+
margin-right: 8px;
|
|
98
|
+
width: calc(100% - 20px);
|
|
99
|
+
}
|
|
@@ -156,7 +156,7 @@ class SelectOptionGroup extends _react.Component {
|
|
|
156
156
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
157
157
|
children: opt.label
|
|
158
158
|
}), isSelected && /*#__PURE__*/(0, _jsxRuntime.jsx)("i", {
|
|
159
|
-
className: "dtable-font dtable-icon-check"
|
|
159
|
+
className: "dtable-font dtable-icon-check seatable-check-color"
|
|
160
160
|
})]
|
|
161
161
|
}, key);
|
|
162
162
|
});
|
|
@@ -138,7 +138,7 @@ class DTableSelect extends _react.default.Component {
|
|
|
138
138
|
className: "select-option-label",
|
|
139
139
|
children: option.label
|
|
140
140
|
}), isSelected && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
141
|
-
className: "dtable-font dtable-icon-check",
|
|
141
|
+
className: "dtable-font dtable-icon-check seatable-check-color",
|
|
142
142
|
style: {
|
|
143
143
|
width: '12px',
|
|
144
144
|
height: '12px'
|
|
@@ -176,8 +176,7 @@ class DTableSelect extends _react.default.Component {
|
|
|
176
176
|
noOptionsMessage: noOptionsMessage,
|
|
177
177
|
filterOption: customFilterOption,
|
|
178
178
|
autoFocus: autoFocus,
|
|
179
|
-
form: form
|
|
180
|
-
menuIsOpen: true
|
|
179
|
+
form: form
|
|
181
180
|
});
|
|
182
181
|
}
|
|
183
182
|
}
|