This commit was merged in pull request #47.
This commit is contained in:
+42
-21
@@ -628,56 +628,77 @@ input[type="text"], input[type="email"], input[type="password"] {
|
||||
|
||||
tbody tr {
|
||||
transition: var(--luncher-transition);
|
||||
border-bottom: 1px solid var(--luncher-border-light);
|
||||
|
||||
&:hover {
|
||||
background: var(--luncher-bg-hover);
|
||||
}
|
||||
|
||||
&:last-child td {
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
|
||||
td {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 12px 16px;
|
||||
border-color: var(--luncher-border-light);
|
||||
border: none;
|
||||
color: var(--luncher-text);
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 8px 0 0 20px;
|
||||
.user-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
li {
|
||||
color: var(--luncher-text-secondary);
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 4px;
|
||||
.user-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.user-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.food-choices {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
gap: 4px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.food-choice-item {
|
||||
background: var(--luncher-primary-light);
|
||||
padding: 8px 12px;
|
||||
border-radius: var(--luncher-radius-sm);
|
||||
display: flex;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 0.9rem;
|
||||
border-left: 3px solid var(--luncher-primary);
|
||||
gap: 6px;
|
||||
font-size: 0.85rem;
|
||||
color: var(--luncher-text-secondary);
|
||||
|
||||
.action-icon {
|
||||
opacity: 0;
|
||||
transition: var(--luncher-transition);
|
||||
}
|
||||
|
||||
&:hover .action-icon {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.food-choice-name {
|
||||
color: var(--luncher-text);
|
||||
font-weight: 500;
|
||||
color: var(--luncher-text-secondary);
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user