style: fix no-descending-specificity for .binaural-sub-setting rules
Move .binaural-sub-setting select before .info/.label/.description so selector specificity only increases, resolving the stylelint violation.
This commit is contained in:
parent
8c9a613bee
commit
a0e587eb97
1 changed files with 10 additions and 10 deletions
20
styles.css
20
styles.css
|
|
@ -11234,6 +11234,16 @@ body:has(#side-panel.active) #close-fullscreen-cover-btn {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.binaural-sub-setting select {
|
||||||
|
background: var(--secondary);
|
||||||
|
color: var(--foreground);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
padding: var(--spacing-xs) var(--spacing-sm);
|
||||||
|
font-size: 0.85rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.binaural-sub-setting .info {
|
.binaural-sub-setting .info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -11251,16 +11261,6 @@ body:has(#side-panel.active) #close-fullscreen-cover-btn {
|
||||||
color: var(--muted-foreground);
|
color: var(--muted-foreground);
|
||||||
}
|
}
|
||||||
|
|
||||||
.binaural-sub-setting select {
|
|
||||||
background: var(--secondary);
|
|
||||||
color: var(--foreground);
|
|
||||||
border: 1px solid var(--border);
|
|
||||||
border-radius: var(--radius-sm);
|
|
||||||
padding: var(--spacing-xs) var(--spacing-sm);
|
|
||||||
font-size: 0.85rem;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.binaural-slider {
|
.binaural-slider {
|
||||||
width: 140px;
|
width: 140px;
|
||||||
accent-color: var(--primary);
|
accent-color: var(--primary);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue