refactor(Grid Widgets drag): shows a placeholder item in the space where the new widget position would be when dragging a widget on the dashboard

This commit is contained in:
SimonGschnell
2025-03-26 13:02:48 +01:00
parent 1cdf89e405
commit b52993f7cc
5 changed files with 45 additions and 9 deletions
+11 -1
View File
@@ -40,5 +40,15 @@
cursor: move;
}
.dashboard-item-overlay::before{
position:absolute;
content:"";
top:0;
left:0;
right:0;
bottom:0;
background-color:rgba(0, 100, 156);
border:1px dashed lightgray;
z-index: 2;
}