move select via external JS (CSP fix); rows show id/owner/config + ws counts

This commit is contained in:
2026-07-12 22:44:33 -03:00
parent 5728cf37b2
commit 1b932127d8
7 changed files with 114 additions and 29 deletions

View File

@@ -38,12 +38,40 @@
font-style: italic;
}
.wso-table td {
vertical-align: middle;
/* One project row: id (+ config dropdown) / title / owner on the left, move control on the right,
separated by a light horizontal line. */
.wso-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px 2px;
border-bottom: 1px solid #eee;
}
.wso-row-main {
display: flex;
align-items: baseline;
flex-wrap: wrap;
}
.wso-id {
margin-right: 8px;
color: #777;
}
.wso-title {
margin-right: 12px;
font-weight: bold;
}
.wso-owner {
color: #999;
font-size: 0.9em;
}
.wso-move {
width: 220px;
flex: 0 0 auto;
margin-left: 12px;
text-align: right;
}