Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions content.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,109 @@
.coderabbit-hidden {
display: none !important;
}

/* Search highlight */
.coderabbit-search-highlight {
background-color: #fff8c5;
border-radius: 2px;
padding: 1px 0;
box-shadow: 0 0 0 1px rgba(191, 135, 0, 0.3);
}

/* ── Floating summary widget ──────────────────────────────────────────── */
#coderabbit-summary-widget {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 99999;
width: 220px;
background: #ffffff;
border: 1px solid #d0d7de;
border-radius: 10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 13px;
color: #24292f;
overflow: hidden;
user-select: none;
}

.crw-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
background: #f6f8fa;
border-bottom: 1px solid #d0d7de;
cursor: grab;
}

.crw-header:active {
cursor: grabbing;
}

.crw-title {
font-weight: 600;
font-size: 12px;
color: #24292f;
}

.crw-close {
background: none;
border: none;
font-size: 16px;
color: #656d76;
cursor: pointer;
padding: 0 2px;
line-height: 1;
}

.crw-close:hover {
color: #cf222e;
}

.crw-body {
padding: 10px 12px;
}

.crw-row {
display: flex;
align-items: center;
gap: 6px;
padding: 3px 0;
font-size: 12px;
color: #24292f;
}

.crw-row strong {
margin-left: auto;
font-variant-numeric: tabular-nums;
}

.crw-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}

.crw-dot-nitpick { background: #818b98; }
.crw-dot-suggestion { background: #0969da; }
.crw-dot-warning { background: #bf8700; }
.crw-dot-issue { background: #cf222e; }

.crw-divider {
height: 1px;
background: #d0d7de;
margin: 6px 0;
}

.crw-total {
font-size: 11px;
color: #656d76;
}

.crw-total strong {
color: #24292f;
margin-left: 4px;
}
Loading