What?

Unlike Chrome, Firefox and Microsoft Edge, Brave uses rounded triangles to indicate the back and forward navigation buttons. These code snippets replace the default Firefox back and forward icons with ones I made especially for this, trying to perfectly recreate that of Brave's. They might not be perfectly sized, but I swear its only like a 1-2 pixel difference and Brave's GitHub page doesn't contain the back/forward icons even though it does contain the refresh icon. Also, other icons too.

<aside> ❤️ Notable Help: u/It_Was_The_Other_Guy

</aside>

Forward Button

Changes the forward button to a custom made SVG file that looks like Brave's forward button.

/* Change Forward Button */
#forward-button{ list-style-image: url("Brave-Fox Images/Forward Button.svg") !important; }

Back Button

Changes the back button to a custom made SVG file that looks like Brave's forward button.

/* Change Back Button */
#back-button{ list-style-image: url("Brave-Fox Images/Back Button.svg") !important; }

Reload Button

Changes the reload button to an SVG file that is yoinked directly from Brave's source code.

/* Change Reload Button */
#reload-button{ list-style-image: url("Brave-Fox Images/Reload.svg") !important; }