This CSS style corrects the size of the goggles drop down menu which shrinks to an unreadable size when you follow a lot of goggles.
Brave Browser Search Goggles Drop-down Menu Fix by mfburg
Details
Authormfburg
LicenseNo License
Categoryhttps://search.brave.com/goggles
Created
Updated
Size826 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Goggles Fix
@version 20241023.11.06
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://search.brave.com/goggles") {
/* Limit the height of the Goggles dropdown and make it scrollable */
#gpopup {
max-height: 300px;
overflow-y: auto;
position: absolute;
width: 100%;
z-index: 999;
background-color: #030f3b; /* Add a solid background color to avoid transparency */
border: 1px solid #980fa9; /* Optional: add a light border for better visibility */
}
/* Set a minimum font size and adjust padding for dropdown items */
.item {
font-size: 14px;
min-height: 30px;
padding: 5px 10px;
}
/* Ensure the button controlling the dropdown behaves as expected */
#btn-manage-goggles {
cursor: pointer;
}
}