Files
Oxicloud/static/css/components/search.css
T
Edouard Vanbelle 94b36e41e0 refactor(css): maximize usage of variables (1st part, to simplify CSS & style)
note: there is still work to do, but has there are risks to conflict I prefer to commit this first part now
2026-04-11 18:39:03 +02:00

46 lines
941 B
CSS

/* Styles for search results */
.search-results-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
margin-bottom: 15px;
border-bottom: 1px solid var(--color-bg-empty);
width: 100%;
flex-wrap: wrap;
gap: 8px;
}
.search-results-header h3 {
margin: 0;
font-size: 16px;
color: var(--color-text-dim);
}
.search-results-header .search-time {
font-size: 12px;
font-weight: normal;
color: var(--color-text-light);
}
.search-controls {
display: flex;
align-items: center;
gap: 8px;
}
.search-sort-select {
padding: 4px 8px;
border: 1px solid var(--color-border-ddd);
border-radius: 4px;
font-size: 13px;
background: var(--color-bg-surface);
color: var(--color-text-black);
cursor: pointer;
outline: none;
}
.search-sort-select:focus {
border-color: var(--primary-color, var(--color-accent));
}