149 lines
2.5 KiB
CSS
149 lines
2.5 KiB
CSS
#results {
|
|
list-style: none;
|
|
padding: 0;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 8px #cdd2fa2c;
|
|
border: 1px solid #e2e9f4;
|
|
background: #f8fbff;
|
|
padding: 16px 20px;
|
|
}
|
|
|
|
#results li {
|
|
margin-bottom: 14px;
|
|
border-bottom: 1px solid #ddd;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
#results a {
|
|
font-weight: bold;
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#results a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#results .summary {
|
|
font-size: 13px;
|
|
color: #444;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
justify-content: center;
|
|
margin: 18px 0 0 0;
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
background: #f8fafb;
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.pagination button,
|
|
.pagination .ellipsis {
|
|
min-width: 36px;
|
|
height: 32px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
margin: 0 1px;
|
|
color: #374151;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.pagination .ellipsis {
|
|
cursor: default;
|
|
color: #bdbdbd;
|
|
}
|
|
|
|
.pagination button.active-page {
|
|
background: #e5eaf3;
|
|
color: #1976d2;
|
|
font-weight: bold;
|
|
cursor: default;
|
|
}
|
|
|
|
.pagination button:disabled {
|
|
background: #f3f3f3;
|
|
color: #aaa;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
|
|
#clearHistoryBtn {
|
|
background: #f8f8f8;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
padding: 2px 8px;
|
|
cursor: pointer;
|
|
line-height: 20px;
|
|
height: 32px;
|
|
}
|
|
|
|
#clearHistoryBtn:hover {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.history-wrapper {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.history-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.tag-history {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.tag-history .tag {
|
|
background-color: #f0f0f0;
|
|
color: #333;
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tag-history .tag:hover {
|
|
background-color: #dcdcdc;
|
|
}
|
|
|
|
/* 搜索结果项小号元信息行 */
|
|
.es-meta-row {
|
|
color: #9198ad;
|
|
font-size: 12px;
|
|
margin: 5px 0 0 0;
|
|
display: flex;
|
|
gap: 24px;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
}
|
|
.es-filepath {
|
|
max-width: 320px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
.es-updatetime {
|
|
margin-left: 10px;
|
|
}
|
|
.es-uploader {
|
|
margin-left: 10px;
|
|
}
|