Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @-moz-document domain("youtube.com") {
- /* Prevent the search bar from expanding */
- ytd-searchbox {
- width: 100% !important;
- max-width: none !important;
- transition: none !important;
- }
- /* Remove the search icon inside the search bar */
- #search-icon-legacy {
- display: none !important;
- }
- /* Make sure search box stays aligned and visible */
- ytd-searchbox input {
- padding-left: 10px !important;
- }
- /* Optional: Remove focus animation */
- ytd-searchbox:focus-within {
- outline: none !important;
- box-shadow: none !important;
- }
- }
- @-moz-document domain("youtube.com") {
- /* Hide the search icon inside the search bar when it's focused (expands) */
- ytd-searchbox:focus-within #search-icon-legacy {
- display: none !important;
- }
- /* Disable search bar expansion behavior */
- ytd-searchbox {
- width: auto !important;
- max-width: 400px !important; /* Set a reasonable max-width */
- transition: none !important;
- }
- /* Ensure input alignment stays neat */
- ytd-searchbox input {
- padding-left: 8px !important;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement