@agorapulse/ui-theme 20.1.3 → 20.1.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.
|
Binary file
|
package/assets/style/_table.scss
CHANGED
|
@@ -193,10 +193,11 @@
|
|
|
193
193
|
gap: var(--ref-spacing-xxxs);
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
|
+
}
|
|
196
197
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
// CDK Drag and Drop styling - applied globally
|
|
199
|
+
tr[cdk-row] {
|
|
200
|
+
&.cdk-drag-preview {
|
|
200
201
|
display: flex;
|
|
201
202
|
align-items: center;
|
|
202
203
|
border-radius: var(--ref-border-radius-md);
|
|
@@ -226,19 +227,19 @@
|
|
|
226
227
|
}
|
|
227
228
|
}
|
|
228
229
|
|
|
229
|
-
|
|
230
|
+
&.cdk-drag-placeholder {
|
|
230
231
|
background-color: var(--ref-color-electric-blue-05) !important;
|
|
231
232
|
border: 1px dashed var(--ref-color-electric-blue-30) !important;
|
|
232
233
|
opacity: 0.7 !important;
|
|
233
234
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1) !important;
|
|
234
235
|
}
|
|
235
236
|
|
|
236
|
-
|
|
237
|
+
&.cdk-drag-animating {
|
|
237
238
|
transition: transform 350ms cubic-bezier(0, 0, 0.2, 1);
|
|
238
239
|
}
|
|
239
240
|
|
|
240
241
|
// Dragging state styles
|
|
241
|
-
|
|
242
|
+
&.cdk-drop-list-dragging .cdk-drag {
|
|
242
243
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
243
244
|
}
|
|
244
245
|
}
|
package/package.json
CHANGED
|
Binary file
|