Add batch duplicate review workflow
This commit is contained in:
@@ -8,6 +8,137 @@
|
||||
}
|
||||
}
|
||||
|
||||
.review-workspace {
|
||||
padding: clamp(16px, 3vw, 24px);
|
||||
border: 1px solid rgba(155, 135, 245, .18);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, .02);
|
||||
}
|
||||
|
||||
.review-heading,
|
||||
.review-navigation {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.review-heading span,
|
||||
.batch-summary span {
|
||||
color: var(--muted);
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.review-heading strong {
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.review-candidates {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
margin: 18px 0;
|
||||
}
|
||||
|
||||
.review-candidate {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 9px;
|
||||
min-width: 0;
|
||||
padding: 16px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
background: rgba(6, 8, 12, .28);
|
||||
}
|
||||
|
||||
.review-candidate.winner {
|
||||
border-color: rgba(84, 212, 154, .52);
|
||||
background: rgba(84, 212, 154, .06);
|
||||
}
|
||||
|
||||
.candidate-number {
|
||||
color: var(--violet);
|
||||
font-size: 9px;
|
||||
font-weight: 750;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .1em;
|
||||
}
|
||||
|
||||
.review-candidate > strong,
|
||||
.review-candidate > small {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.review-candidate > strong {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.review-candidate > small {
|
||||
flex: 1;
|
||||
color: var(--muted);
|
||||
font-size: 9px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.choose-winner {
|
||||
margin-top: 4px;
|
||||
border: 0;
|
||||
border-radius: 10px;
|
||||
padding: 10px 12px;
|
||||
background: linear-gradient(135deg, #907be9, #6e59cf);
|
||||
color: white;
|
||||
font: 750 11px/1 inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.winner .choose-winner {
|
||||
background: rgba(84, 212, 154, .18);
|
||||
color: #8ce4b8;
|
||||
}
|
||||
|
||||
.review-navigation button {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 9px;
|
||||
padding: 8px 11px;
|
||||
background: rgba(255, 255, 255, .04);
|
||||
color: var(--muted);
|
||||
font: 700 10px/1 inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.review-navigation button:disabled {
|
||||
opacity: .35;
|
||||
}
|
||||
|
||||
.batch-summary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 14px;
|
||||
border: 1px solid rgba(102, 217, 232, .2);
|
||||
border-radius: 12px;
|
||||
background: rgba(102, 217, 232, .05);
|
||||
}
|
||||
|
||||
.batch-summary strong {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.review-candidates {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.review-heading,
|
||||
.batch-summary {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.file-compare-row {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
|
||||
Reference in New Issue
Block a user