Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
Fixes for "puffing" URLbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Izheil committed Apr 8, 2020
1 parent 7c57ac6 commit 1046d2b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
16 changes: 15 additions & 1 deletion CSS tweaks/Bookmarks+URLbar+Sidebar.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* You can find an updated version here: https://github.com/Izheil/Quantum-Nox-Firefox-Dark-Full-Theme */
/* Made by Izheil */
/* Last updated: 15/03/2020 */
/* Last updated: 08/04/2020 */

/* SIDEBAR */

Expand All @@ -14,6 +14,20 @@

/* URL bar */

/* Resize the URL bar to a less intrusive size (unless open) */
#urlbar[breakout][breakout-extend]:not([open]) {
width: 100% !important;
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
height: var(--urlbar-height) !important;
}

#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-input-container {
height: 100% !important;
padding-inline: 0 !important;
padding-block: 0 !important;
}

/* This allows you to change the font of the url to prevent ULR spoofing with a more
differentiable font (Thanks to BelladonnavGF for the tip) */
#urlbar {font-family: Georgia !important}
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ in <code>about:config</code> for userChrome and userContent to be loaded at all

<p>If you want to know how to change some colors of the theme, check the <a href="https://github.com/Izheil/Quantum-Nox-Firefox-Dark-Full-Theme/tree/master/Info#Editting CSS files">Info</a> section.</p>

<h3>Last update: <b>18/03/2020</b></h3>
<h3>Last update: <b>08/04/2020</b></h3>
<p>Files updated:</p>
<ul>
<li><b>addons.css</b>: Fixed the table text colors on <a href="https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/">Cookie autodelete</a> addon.</li>
<li><b>userChrome.css</b>: Minor fixes on the URLbar colors. Also added a fix for the URLbar "puffing" on new tab opening (for the CSS tweaks userChrome only).</li>
<li><b></b>: Added a fix for the "puffing" URLbar so that it only adds padding when the autocomplete is open (so it won't resize when you open a new tab and the urlbar gets focus, or when you <code>Ctrl + L</code> and then press <code>Esc</code>).</li>
</ul>
<h3>Pre-Last update: <b>17/03/2019</b></h3>
<h3>Pre-Last update: <b>18/03/2019</b></h3>
<ul>
<li><b>userContent.css</b>: Fixed the notices on firefox addons.</li>
<li><b>addons.css</b>: Fixed the table text colors on <a href="https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/">Cookie autodelete</a> addon.</li>
</ul>

<h3>A note on people looking to replace some Tab Mix Plus features:</h3>
Expand Down

0 comments on commit 1046d2b

Please sign in to comment.