add search setting interface

This commit is contained in:
smanylov
2026-03-24 18:14:08 +07:00
parent 0955d66931
commit 18e700bb6e
12 changed files with 301 additions and 49 deletions
+45
View File
@@ -736,4 +736,49 @@
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
/* transform: translateY(-2px); */
}
}
.search-settings {
&-wrapper {
margin-bottom: 20px;
background: #f0f9ff;
border: 1px solid #bfdbfe;
border-radius: 12px;
margin-bottom: 20px;
padding: 16px;
color: #1e40af;
}
&-header {
display: flex;
gap: 10px;
font-weight: 600;
&.loading {
opacity: 0.5;
}
}
&-item {
cursor: pointer;
span {
margin-left: 4px;
color: v.$red;
&.active {
color: v.$green;
}
}
&:hover {
text-decoration: underline;
}
}
/* &-action-panel {
display: flex;
gap: 10px;
} */
}