Update CSS

dev
pon 2023-05-26 01:47:20 +09:00
parent 785e50898b
commit 3613bf7e78
2 changed files with 40 additions and 10 deletions

View File

@ -1,4 +1,4 @@
(function() {
(function () {
window.addEventListener('DOMContentLoaded', () => {
const searchBox = document.createElement('div');
searchBox.id = 'search-box';
@ -55,14 +55,11 @@
searchResults.innerHTML = '';
return;
}
// let regex = new RegExp(searchTerm, 'i');
// let matches = Array.from(uiButtons).filter(button => regex.test(button.textContent));
// let html = matches.map(button => `<li>${button.textContent}</li>`).join('');
let matchingResults = [];
for (let i = 0; i < uiButtons.length; i++) {
let button = uiButtons[i];
let buttonText = button.textContent.toLowerCase();
if (buttonText.includes(searchTerm)) {
if (buttonText.includes(searchTerm.toLowerCase())) {
matchingResults.push(button);
}
}

View File

@ -10,7 +10,7 @@
transform: translate(-50%, -50%);
z-index: 9999;
width: max(400px, 60%);
height: 200px;
height: 280px;
margin: 200px 0 0 0;
background: rgba(0, 0, 0, 0.5);
border-radius: 3px;
@ -34,10 +34,43 @@
border-radius: 3px;
color: #c4c4c4;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
font-size: 16px;
font-weight: 400;
height: 100%;
height: calc(100% - 60px);
overflow: auto;
padding: 10px;
width: 100%;
}
}
#search-box #search-results li {
padding: 4px 0;
border-bottom: 1px solid #4444;
}
#search-box #search-results li:hover {
background: #bbb4;
color: #fff;
transition: all 0.2s ease-out;
}
/*
#search-results.ul ::-webkit-scrollbar {
display: block;
width: 0.5em;
}
#search-results.ul ::-webkit-scrollbar-track-piece {
background: #303030;
border-radius: 1.0em;
}
#search-results.ul ::-webkit-scrollbar-thumb,
#search-results.ul ::-webkit-scrollbar-track {
background: #8e8e8e;
border-radius: 1.0em;
}
#search-results.ul ::-webkit-scrollbar-thumb:hover,
#search-results.ul ::-webkit-scrollbar-track:hover {
background: #b6b6b6;
} */