fix: search bar icon/placeholder overlap caused by specificity conflict

The base input rule uses a high-specificity :not() chain (0,8,1) that
overpowered .header-search-input-wrap input (0,1,1). The base padding
won, so the search input's padding-left (which makes room for the icon)
was overridden. Switched to #site-search-input (1,0,0) to win the
specificity battle.
This commit is contained in:
Pontoporeia
2026-07-05 15:00:47 +02:00
parent 10df92b643
commit 148ffe79f0
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -138,6 +138,11 @@
max-width: 100%;
}
#apropos-contacts,
#apropos-intro {
border-bottom: none;
}
/* Section separators (about page only) */
.page-content > article > section {
padding-bottom: var(--space-xl);