kbsearch-extension/styles/styles-es.css

124 lines
2.0 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 {
margin-top: 15px;
display: flex;
justify-content: center;
gap: 10px;
}
.pagination button {
padding: 6px 12px;
font-size: 13px;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 3px;
cursor: pointer;
}
.pagination button:hover {
background-color: #ddd;
}
#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;
}