Improving view of the ads when find in page is used.

This commit is contained in:
Sergiotarxz 2023-12-02 21:21:17 +01:00
parent d16c4698c7
commit 35bcc8852a
4 changed files with 10 additions and 7 deletions

View File

@ -126,6 +126,9 @@ function addListenersSearch() {
openAllDetails()
}
});
window.addEventListener("blur", (e) => {
openAllDetails()
})
if (nextResult !== null && prevResult !== null) {
nextResult.addEventListener('click', () => {
searchInWebsite(fakeSearchInput.value, true);

View File

@ -121,11 +121,11 @@ body {
height: 20%;
width: 100%; }
body div.carousel a {
position: fixed;
top: 80%;
position: absolute;
top: 0;
border: solid 3px black;
width: calc(100% - 6px);
height: calc(20% - 6px);
height: calc(100% - 6px);
left: 100%;
transition: left 1s ease-in;
font-size: 13px;

View File

@ -183,11 +183,11 @@ body {
width: 100%;
a {
position: fixed;
top: 80%;
position: absolute;
top: 0;
border: solid 3px black;
width: calc(100% - 6px);
height: calc(20% - 6px);
height: calc(100% - 6px);
left: 100%;
transition: left 1s ease-in;

File diff suppressed because one or more lines are too long