dashboard #1

Merged
andi merged 118 commits from dashboard into master 2024-09-29 06:47:35 +00:00
2 changed files with 10 additions and 1 deletions
Showing only changes of commit b56b4c231e - Show all commits

View File

@@ -32,6 +32,14 @@
.editable:hover .editable-hovered {
visibility: visible;
}
.handle {
height: 1.5em;
}
[cdkDrag]:hover .handle, .cdk-drop-list-dragging .handle {
background-color: #f3f3f3;
border-radius: 3px;
cursor: grab;
}
</style>
<div *ngIf="dashboard === undefined && !error" class="center">
@@ -64,6 +72,7 @@
cdkDrag
*ngFor="let id of column"
[attr.widget-id]="id">
<div cdkDragHandle class="handle"></div>
<app-text-widget
*ngIf="isTextWidget(id)"
[data]="getTextWidget(id)!"></app-text-widget>

View File

@@ -7,7 +7,7 @@
padding: 1em 0;
}
.text-widget:hover {
outline: solid 1px black;
/*outline: solid 1px black;/**/
border-radius: 3px;
}