Files

149 lines
2.4 KiB
CSS

#fb-cleaner-root {
all: initial;
position: fixed !important;
bottom: 20px !important;
right: 20px !important;
z-index: 2147483646 !important;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
#fb-cleaner-root * {
box-sizing: border-box;
font-family: inherit;
}
#fb-cleaner-panel {
width: 320px;
background: #111827;
color: #f9fafb;
border-radius: 12px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
overflow: hidden;
border: 1px solid #374151;
}
#fb-cleaner-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 12px;
background: #0b1220;
cursor: move;
user-select: none;
}
#fb-cleaner-header strong {
font-size: 13px;
font-weight: 650;
}
#fb-cleaner-body {
padding: 12px;
display: grid;
gap: 10px;
}
#fb-cleaner-body label {
display: flex;
gap: 8px;
align-items: flex-start;
font-size: 12px;
line-height: 1.35;
color: #e5e7eb;
}
#fb-cleaner-body input[type="checkbox"] {
margin-top: 2px;
}
#fb-cleaner-body textarea {
width: 100%;
min-height: 52px;
resize: vertical;
border-radius: 8px;
border: 1px solid #4b5563;
background: #1f2937;
color: #f9fafb;
padding: 8px;
font-size: 11px;
line-height: 1.35;
}
#fb-cleaner-stats {
font-size: 12px;
line-height: 1.45;
color: #d1d5db;
background: #1f2937;
border-radius: 8px;
padding: 8px 10px;
border: 1px solid #374151;
}
#fb-cleaner-stats b {
color: #fff;
}
#fb-cleaner-log {
max-height: 110px;
overflow: auto;
font-size: 11px;
line-height: 1.4;
color: #9ca3af;
background: #0b1220;
border-radius: 8px;
padding: 8px;
border: 1px solid #374151;
white-space: pre-wrap;
}
#fb-cleaner-actions {
display: flex;
gap: 8px;
}
#fb-cleaner-actions button {
flex: 1;
border: 0;
border-radius: 8px;
padding: 9px 10px;
font-size: 12px;
font-weight: 650;
cursor: pointer;
}
#fb-cleaner-start {
background: #2563eb;
color: #fff;
font-size: 13px;
padding: 11px 10px;
}
#fb-cleaner-start:disabled {
opacity: 0.55;
cursor: not-allowed;
}
#fb-cleaner-stop {
background: #374151;
color: #fff;
}
#fb-cleaner-stop:disabled {
opacity: 0.45;
cursor: not-allowed;
}
#fb-cleaner-minimize {
background: transparent;
border: 0;
color: #9ca3af;
cursor: pointer;
font-size: 14px;
line-height: 1;
padding: 2px 4px;
}
#fb-cleaner-root.collapsed #fb-cleaner-body {
display: none;
}