@eturnity/eturnity_reusable_components 1.0.42 → 1.0.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.0.42",
3
+ "version": "1.0.46",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -155,12 +155,14 @@ const TableContainer = styled.table`
155
155
  }
156
156
 
157
157
  tr {
158
- position: relative;
159
-
160
158
  &.disabled {
161
159
  cursor: not-allowed;
162
160
  }
163
161
 
162
+ .arrow-dropdown {
163
+ visibility: hidden;
164
+ }
165
+
164
166
  &.footer {
165
167
  td {
166
168
  background-color: ${(props) => props.theme.colors.grey5};
@@ -213,11 +215,15 @@ const TableContainer = styled.table`
213
215
  .drag-icon {
214
216
  visibility: visible;
215
217
  }
218
+
219
+ .arrow-dropdown {
220
+ visibility: visible;
221
+ }
216
222
  }
217
223
 
218
224
  .drag-container {
219
225
  display: table-cell;
220
- width: auto;
226
+ width: 12px;
221
227
  vertical-align: middle;
222
228
  }
223
229