UI a menu a FA
This commit is contained in:
@@ -816,6 +816,62 @@ input[readonly] {
|
||||
color: var(--danger-dark);
|
||||
}
|
||||
|
||||
.action-icons-cell {
|
||||
width: 1%;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.action-icons {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.action-icons form {
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.icon-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
min-height: 38px;
|
||||
padding: 0;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
background: white;
|
||||
color: var(--secondary);
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
|
||||
}
|
||||
|
||||
.icon-action:hover,
|
||||
.icon-action:focus-visible {
|
||||
background: #eef6f9;
|
||||
color: var(--secondary-dark);
|
||||
border-color: var(--secondary);
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.icon-action-danger {
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.icon-action-danger:hover,
|
||||
.icon-action-danger:focus-visible {
|
||||
background: var(--danger-bg);
|
||||
color: var(--danger-dark);
|
||||
border-color: var(--danger);
|
||||
}
|
||||
|
||||
.running-row td {
|
||||
background: var(--warning-bg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user