Remove .claude directory from version control

This commit is contained in:
2025-11-26 18:26:49 +01:00
parent 31c757f1fe
commit d08612205b
5 changed files with 76 additions and 14 deletions

63
release/styles.css Normal file
View File

@@ -0,0 +1,63 @@
.counter-container {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px 6px;
background-color: var(--background-secondary);
border-radius: 4px;
margin: 2px 0;
font-family: var(--font-interface);
vertical-align: middle;
}
.counter-button {
width: 16px;
height: 16px;
padding: 0;
border: 1px solid var(--background-modifier-border);
background-color: var(--interactive-normal);
color: var(--text-normal);
border-radius: 3px;
cursor: pointer;
font-size: 12px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.15s ease;
line-height: 1;
}
.counter-button:hover {
background-color: var(--interactive-hover);
border-color: var(--interactive-accent);
}
.counter-button:active {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
transform: scale(0.9);
}
.counter-display {
min-width: 20px;
text-align: center;
font-weight: 600;
font-size: 13px;
color: var(--text-normal);
font-variant-numeric: tabular-nums;
}
.counter-label {
margin-left: 2px;
color: var(--text-normal);
font-size: 14px;
}
.counter-minus {
line-height: 1;
}
.counter-plus {
line-height: 1;
}