48 lines
763 B
CSS
48 lines
763 B
CSS
.bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 6px 12px;
|
|
border-top: 1px solid var(--toolbar-border, #e8ecf0);
|
|
background: var(--toolbar-bg, #f8fafc);
|
|
font-size: 12px;
|
|
color: var(--text-secondary, #4b5563);
|
|
}
|
|
|
|
.statusText {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #6366f1;
|
|
animation: pulse 1.2s ease-in-out infinite;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.cancelBtn {
|
|
border: 1px solid #d1d5db;
|
|
background: #fff;
|
|
border-radius: 6px;
|
|
padding: 2px 8px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cancelBtn:hover {
|
|
background: #f9fafb;
|
|
}
|
|
|
|
.retryMeta {
|
|
color: var(--text-tertiary, #9ca3af);
|
|
}
|