Bug 1406478 - Set the browser.tabs.tabMinWidth default to 70 (but allow it to go as low as 50). r?jaws draft
authorMike Conley <mconley@mozilla.com>
Fri, 06 Oct 2017 14:00:02 -0400
changeset 676258 d6668c92a11a4b7320f517cffbff27057c70bb2d
parent 675689 19b32a138d08f73961df878a29de6f0aad441683
child 734898 46b0ba3d20cc73af68c0d21078c5efd0c895fc4a
push id83450
push usermconley@mozilla.com
push dateFri, 06 Oct 2017 23:17:50 +0000
reviewersjaws
bugs1406478
milestone58.0a1
Bug 1406478 - Set the browser.tabs.tabMinWidth default to 70 (but allow it to go as low as 50). r?jaws MozReview-Commit-ID: A6kYGSd1UVy
browser/app/profile/firefox.js
browser/base/content/browser.css
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -483,17 +483,17 @@ pref("browser.tabs.restorebutton", 0);
 // false  return to the adjacent tab (old default)
 pref("browser.tabs.selectOwnerOnClose", true);
 
 pref("browser.tabs.showAudioPlayingIcon", true);
 // This should match Chromium's audio indicator delay.
 pref("browser.tabs.delayHidingAudioPlayingIconMS", 3000);
 
 // The minimum tab width in pixels
-pref("browser.tabs.tabMinWidth", 50);
+pref("browser.tabs.tabMinWidth", 70);
 
 pref("browser.ctrlTab.previews", false);
 
 // By default, do not export HTML at shutdown.
 // If true, at shutdown the bookmarks in your menu and toolbar will
 // be exported as HTML to the bookmarks.html file.
 pref("browser.bookmarks.autoExportHTML",          false);
 
--- a/browser/base/content/browser.css
+++ b/browser/base/content/browser.css
@@ -5,17 +5,17 @@
 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
 @namespace html url("http://www.w3.org/1999/xhtml");
 
 :root {
   --panelui-subview-transition-duration: 150ms;
   --lwt-additional-images: none;
   --lwt-background-alignment: right top;
   --lwt-background-tiling: no-repeat;
-  --tab-min-width: 50px;
+  --tab-min-width: 70px;
 }
 
 :root:-moz-lwtheme {
   color: var(--lwt-text-color) !important;
 }
 
 :root:-moz-lwtheme {
   background-color: var(--lwt-accent-color) !important;