add admin data mutations and load check
Some checks failed
ci / test (pull_request) Has been cancelled
Some checks failed
ci / test (pull_request) Has been cancelled
This commit is contained in:
@@ -2156,6 +2156,7 @@ select {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
background: #fff;
|
||||
box-shadow: 0 10px 30px rgba(17, 36, 30, 0.05);
|
||||
}
|
||||
|
||||
.admin-table {
|
||||
@@ -2167,7 +2168,7 @@ select {
|
||||
|
||||
.admin-table th,
|
||||
.admin-table td {
|
||||
padding: 10px;
|
||||
padding: 9px 10px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
@@ -2188,6 +2189,41 @@ select {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.admin-table tbody tr {
|
||||
transition: background 140ms ease;
|
||||
}
|
||||
|
||||
.admin-table tbody tr:hover {
|
||||
background: #f7fbf8;
|
||||
}
|
||||
|
||||
.admin-actions-head,
|
||||
.admin-action-cell {
|
||||
position: sticky;
|
||||
right: 0;
|
||||
min-width: 128px;
|
||||
background: #fff;
|
||||
box-shadow: -10px 0 18px rgba(255, 255, 255, 0.78);
|
||||
}
|
||||
|
||||
.admin-table tbody tr:hover .admin-action-cell {
|
||||
background: #f7fbf8;
|
||||
}
|
||||
|
||||
.admin-action-cell {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
border-left: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.compact-btn {
|
||||
min-height: 30px;
|
||||
padding: 0 8px;
|
||||
font-size: 12px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.admin-badge {
|
||||
display: inline-flex;
|
||||
min-height: 22px;
|
||||
@@ -2217,6 +2253,17 @@ select {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.admin-source-hint {
|
||||
margin: -2px 0 10px;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid rgba(22, 128, 106, 0.16);
|
||||
border-radius: 8px;
|
||||
background: #f2faf6;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.error-state {
|
||||
color: var(--danger);
|
||||
background: #fff4f2;
|
||||
|
||||
Reference in New Issue
Block a user