Showing questions tagged: Show all questions
  • Solved

URL bar popup menu text spaced out (kerning/tracking issue)

Hi All, Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125? It's the only menu I've found like that. See attached scre… (read more)

Hi All,

Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125?

It's the only menu I've found like that.

See attached screenshots. The one on the left is FF 115, and the one on the right is FF 88 (more normal).

Is there a way to fix this?

And also remove that "Add" menu item at the bottom?

If so, please reply!

Asked by Slouch 1 week ago

Answered by Slouch 5 days ago

  • Solved

Customize Toolbar page does not appear.

When I try to customize the toolbar in Firefox 115.10, the browser tries to change the page to the customize toolbar / overflow toolbar page. However the page flashes o… (read more)

When I try to customize the toolbar in Firefox 115.10, the browser tries to change the page to the customize toolbar / overflow toolbar page. However the page flashes on and then reverts to the normal browser page. The page showing customize toolbar/ overflow toolbar, is transient and does not last. So I can't even customize the order of the buttons on my toolbar. This wasn't a problem a few days ago before the switch to this latest version. In particular I am trying to change the position of the "home" button to the left side of the address box. I just can't bring up the customize toolbar page. I'm not talking about the position of the add-on or extension buttons...just the home button. Hope this is clear. By the way, I've even tried this in safe mode to no avail.

Asked by paulgxi 1 week ago

Answered by paulgxi 1 week ago

  • Solved

Change URL border color when focused

Hi All, I would like to change the url border color when it has the focus to blue. The code below works, except when you press Escape. After hitting Escape, the urlbar… (read more)

Hi All,

I would like to change the url border color when it has the focus to blue.

The code below works, except when you press Escape.

After hitting Escape, the urlbar still has the focus but its border changes back to gray. It should remain blue.

I would also like to remove the box-shadow after pressing Escape, when the urlbar is not expanded (to mimic the behavior of FF 88).

The url and search input fields also do the same goofy thing Windows 10 does - the cursor stops blinking after 5 blinks and remains frozen. Any way to remove that behavior and keep the cursor blinking? If not, no big deal, the other stuff above is more important.

Any code suggestions to get that behavior are welcome!

/* set the initial borders of the urlbar and search bar to gray */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set urlbar border to blue when focused */
#urlbar[breakout][breakout-extend] #urlbar-background {
   border-color: #0078d7 !important;
}

Asked by Slouch 1 week ago

Answered by jscher2000 - Support Volunteer 1 week ago

  • Solved

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (read more)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Asked by Slouch 2 weeks ago

Answered by Slouch 1 week ago

  • Solved

Move Tab Icons (favicons) up 1px

Hi All, For some reason my tab icons look a little low, and I would like them more vertically centered. I've been trying to move these icons around using some older cod… (read more)

Hi All,

For some reason my tab icons look a little low, and I would like them more vertically centered.

I've been trying to move these icons around using some older code that doesn't seem to work anymore.

The code below no longer has any effect.

Does anyone know how to move the tab icons up 1 pixel?

Thanks!

/* padding doesn't move them */
.tab-throbber, .tab-icon-image { padding-bottom: 4px !important; }
/* margin doesn't move them */
.tab-throbber, .tab-icon-image { margin-bottom: -2px !important; }
/* can't even turn the icons off LOL */
.tab-icon-image { display:none !important; }

Asked by Slouch 1 week ago

Answered by cor-el 1 week ago

  • Solved

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (read more)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Asked by Slouch 2 weeks ago

Answered by Slouch 2 weeks ago

  • Solved

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (read more)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Asked by Slouch 3 weeks ago

Answered by Slouch 2 weeks ago

  • Solved

Add-on no longer on Toolbar

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View. I ran Remove and then Added it again, … (read more)

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View.

I ran Remove and then Added it again, hoping the Toolbar Icon would reappear = no go, And I lost all URLs already saved, stupid me. To be clear, clicking the Icon on the Toolbar saves all open tabs.

Is there a fix via Preferences? Thanks. gw

Asked by metaguy 1 month ago

Answered by zeroknight 3 weeks ago

  • Solved

Tab Bar on Firefox

Hi, I'm a Firefox user since around 2004. Whenever I used FF i always opened multiple windows of FF. At some point Mozilla came out with Tabs. I don't use them and as a m… (read more)

Hi, I'm a Firefox user since around 2004. Whenever I used FF i always opened multiple windows of FF. At some point Mozilla came out with Tabs. I don't use them and as a matter of fact I use the option under settings to open links in a new window (not tabs). Always have, Why? Habit I guess from the times I first starting using FF. I seriously don't use Tabs. I would like to Remove the Tab Bar from FF because of this reason and it frees up a lot of visual space on my browser. I've spent hours reading/searching/trying on "how" to remove or at least hide the Tab Bar. Waste of time so far, so I decided to Post the Question.

How Do I Hide or Remove the Tab Bar in FireFox?

Thanks For Everyone's Help in Advance:-)

Asked by seeekerman 5 months ago

Answered by cor-el 5 months ago

  • Solved
  • Archived

How can cache audio/video files from mozilla-temp-files for offline use?

Hello everyone, to archieve some good old games, I use an special version of Firefox. Firefox (MyPal): 29.2.0, with Adobe Flash preinstalled, Disk-Cache For most game… (read more)

Hello everyone,

to archieve some good old games, I use an special version of Firefox. Firefox (MyPal): 29.2.0, with Adobe Flash preinstalled, Disk-Cache

For most games it will suffice: After loading all content online, it will be available offline too. But... some audio/video files will be saved in memory cache - %temp%\mozilla-temp-files\*[random-auffix] - instead of in disk cache. After closing session they get deleted and after restart they are saved again, with another suffix.

Sample file: http://arcaneonlinegame.epizy.com/Arcane/frames_files/midi/Ophelia's Journal.mp3 that is shipped with http://arcaneonlinegame.epizy.com/Arcane/Arcane.htm

How can I tell Firefox to permanent save streamed audio/video files, like Firefox does with everything else? In the end the music should play if I open the browser offline too.

Thank you in advance for your help. Drago

Asked by drago-yoshisabel 8 months ago

Answered by drago-yoshisabel 8 months ago

  • Solved
  • Archived

Customize the location of print headers and footers?

Hi. Is there a way to customize the order of Firefox headers and footers on printed pages (including print-to-pdf)? I prefer the header to be url only, in the center. … (read more)

Hi. Is there a way to customize the order of Firefox headers and footers on printed pages (including print-to-pdf)?

I prefer the header to be url only, in the center. While the footer has page on left; title in the center, and date on the right.

This used to be easy to accomplish with print options in older versions, then -- as the print dialog changed (and actually improved a lot in most *other* ways) I had to turn to about:config modifications like those described in the 1/27/21 reply here: https://support.mozilla.org/en-US/questions/1323433. But now I can't seem to find any way to have any control over print headers besides "on" and "off."

One problem I find with having both page title and url on top is that these can be long, causing one or both to be truncated.

I'm using Firefox 115.3esr.

Asked by Rick216 7 months ago

Answered by zeroknight 7 months ago

  • Solved
  • Archived

Add-ons re-enable themnselves automatically

The problem started recently (perhaps a week ago), after one of the FIrefox updates. WHen I disable an add-on, after several seconds it re-enables itself. All of them, th… (read more)

The problem started recently (perhaps a week ago), after one of the FIrefox updates. WHen I disable an add-on, after several seconds it re-enables itself. All of them, the same way, so it is not like it is a problem with one of them. I cleared FF history, cookies etc, still the same problem. I did not do any changes to the computer.


Application Basics


Name: Firefox Version: 104.0.2 Build ID: 20220902153754 Distribution ID: Update Channel: release User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0 OS: Windows_NT 6.1 7601 Launcher Process: Enabled Multiprocess Windows: 1/1 Fission Windows: 1/1 Enabled by default Remote Processes: 18 Enterprise Policies: Inactive Google Location Service Key: Found Google Safebrowsing Key: Found Mozilla Location Service Key: Found Safe Mode: false Memory Size (RAM): 7.7 GB Disk Space Available: 259 GB

Crash Reports for the Last 3 Days


Firefox Features


Name: DoH Roll-Out Version: 2.0.0 ID: doh-rollout@mozilla.org

Name: Firefox Screenshots Version: 39.0.1 ID: screenshots@mozilla.org

Name: Form Autofill Version: 1.0.1 ID: formautofill@mozilla.org

Name: Picture-In-Picture Version: 1.0.0 ID: pictureinpicture@mozilla.org

Name: Web Compatibility Interventions Version: 104.6.0 ID: webcompat@mozilla.org

Name: WebCompat Reporter Version: 1.5.0 ID: webcompat-reporter@mozilla.org

Remote Features


bug-1693420-rollout-sponsored-top-sites-rollout-release-84-100: active bug-1712189-rollout-keep-firefox-up-to-date-even-when-it-is-not-ru-release-90-94: active bug-1766618-rollout-disable-websocket-over-http2-release-91-100: active

Remote Processes


Type: Privileged About Count: 1

Type: Isolated Web Content Count: 11

Type: Extension Count: 1

Type: Preallocated Count: 3

Type: GPU Count: 1

Type: Socket Count: 1

Add-ons


Name: Russian Hunspell dictionary Type: dictionary Version: 1.0.20131101.2webext Enabled: true ID: hunspell-ru@dictionaries.addons.mozilla.org

Name: AdBlock — best ad blocker Type: extension Version: 5.1.1 Enabled: true ID: jid1-NIfFY2CA8fy1tg@jetpack

Name: Adblock for Youtube™ Type: extension Version: 6.0.6 Enabled: true ID: {0ac04bdb-d698-452f-8048-bcef1a3f4b0d}

Name: Adblock Plus - free ad blocker Type: extension Version: 3.14.2 Enabled: true ID: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}

Name: AdBlocker for YouTube™ Type: extension Version: 0.3.5 Enabled: true ID: jid1-q4sG8pYhq8KGHs@jetpack

Name: AdBlocker Ultimate Type: extension Version: 3.7.19 Enabled: true ID: adblockultimate@adblockultimate.net

Name: Add-ons Search Detection Type: extension Version: 2.0.0 Enabled: true ID: addons-search-detection@mozilla.com

Name: AdGuard AdBlocker Type: extension Version: 4.1.36 Enabled: true ID: adguardadblocker@adguard.com

Name: Amazon.com Type: extension Version: 1.3 Enabled: true ID: amazondotcom@search.mozilla.org

Name: Bing Type: extension Version: 1.3 Enabled: true ID: bing@search.mozilla.org

Name: DuckDuckGo Type: extension Version: 1.1 Enabled: true ID: ddg@search.mozilla.org

Name: eBay Type: extension Version: 1.3 Enabled: true ID: ebay@search.mozilla.org

Name: Google Type: extension Version: 1.2 Enabled: true ID: google@search.mozilla.org

Name: Grammar & Spell Checker — LanguageTool Type: extension Version: 5.4.3 Enabled: true ID: languagetool-webextension@languagetool.org

Name: ImTranslator: Translator, Dictionary, TTS Type: extension Version: 16.24 Enabled: true ID: {9AA46F4F-4DC7-4c06-97AF-5035170634FE}

Name: Multitran popup Type: extension Version: 2.0.0 Enabled: true ID: multitran@flytaly

Name: OneTab Type: extension Version: 1.59 Enabled: true ID: extension@one-tab.com

Name: Scroll To Top Type: extension Version: 4.9.1 Enabled: true ID: jid0-gRmSxW9ByuHwGjLhtXJg27YnZRs@jetpack

Name: To DeepL Type: extension Version: 0.7.0 Enabled: true ID: {db420ff1-427a-4cda-b5e7-7d395b9f16e1}

Name: Undo Close Tab Type: extension Version: 7.5.0 Enabled: true ID: {4853d046-c5a3-436b-bc36-220fd935ee1d}

Name: Wikipedia (en) Type: extension Version: 1.1 Enabled: true ID: wikipedia@search.mozilla.org

Name: Calendar Clarity Type: extension Version: 1.1 Enabled: false ID: {9f88e54c-03a5-47b3-9f79-67be661420e2}

Name: Dictionary Anywhere Type: extension Version: 1.1.0 Enabled: false ID: {e90f5de4-8510-4515-9f67-3b6654e1e8c2}

Name: DuckDuckGo Privacy Essentials Type: extension Version: 2022.8.25 Enabled: false ID: jid1-ZAdIEUB7XOzOJw@jetpack

Name: Multitran Context Menu Search Type: extension Version: 1.22 Enabled: false ID: @multitrancontextmenusearch

Name: Multitran search Type: extension Version: 1.0 Enabled: false ID: {83c9d352-3379-4e8b-b507-ab7cf1062344}

Name: NoSquint Plus Type: extension Version: 62.1 Enabled: false ID: zoomlevelplus@zoomlevelplus.net

Name: Pinned Google Calendar Type: extension Version: 2.2.0 Enabled: false ID: intgcal@egarracingteam.com.ar

Name: Reverso – Translation, dictionary Type: extension Version: 2.2.205 Enabled: false ID: context@reverso.net

Name: S3.Translator Type: extension Version: 6.29 Enabled: false ID: s3@translator

Name: StopAll Ads Type: extension Version: 3.0.5.1952 Enabled: false ID: {6c9d5a11-9d2b-4c10-cd40-61fc083d5001}

Name: Your Package - parcel tracking Type: extension Version: 1.4.9 Enabled: false ID: {610bcb26-5461-4826-a4fe-03c5bc77c0ea}

Name: YouTube Ad Auto-skipper Type: extension Version: 0.5.1 Enabled: false ID: {bd6b8f4a-b0c3-4d61-a0f8-5539d3df3959}

Graphics


Features Compositing: WebRender (Software D3D11) Asynchronous Pan/Zoom: wheel input enabled; scrollbar drag enabled; keyboard enabled; autoscroll enabled; smooth pinch-zoom enabled WebGL 1 Driver WSI Info: EGL_VENDOR: Google Inc. (AMD) EGL_VERSION: 1.5 (ANGLE 2.1.15727 git hash: 23851a53779d) EGL_EXTENSIONS: EGL_EXT_create_context_robustness EGL_ANGLE_d3d_share_handle_client_buffer EGL_ANGLE_d3d_texture_client_buffer EGL_ANGLE_surface_d3d_texture_2d_share_handle EGL_ANGLE_query_surface_pointer EGL_ANGLE_window_fixed_size EGL_ANGLE_keyed_mutex EGL_ANGLE_surface_orientation EGL_NV_post_sub_buffer EGL_KHR_create_context EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_get_all_proc_addresses EGL_KHR_stream EGL_KHR_stream_consumer_gltexture EGL_NV_stream_consumer_gltexture_yuv EGL_ANGLE_flexible_surface_compatibility EGL_ANGLE_stream_producer_d3d_texture EGL_ANGLE_create_context_webgl_compatibility EGL_CHROMIUM_create_context_bind_generates_resource EGL_EXT_pixel_format_float EGL_KHR_surfaceless_context EGL_ANGLE_display_texture_share_group EGL_ANGLE_display_semaphore_share_group EGL_ANGLE_create_context_client_arrays EGL_ANGLE_program_cache_control EGL_ANGLE_robust_resource_initialization EGL_ANGLE_create_context_extensions_enabled EGL_ANDROID_blob_cache EGL_ANDROID_recordable EGL_ANGLE_image_d3d11_texture EGL_ANGLE_create_context_backwards_compatible EGL_KHR_create_context_no_error EGL_KHR_reusable_sync EGL_EXTENSIONS(nullptr): EGL_EXT_client_extensions EGL_EXT_device_query EGL_EXT_platform_base EGL_EXT_platform_device EGL_ANGLE_platform_angle EGL_ANGLE_platform_angle_d3d EGL_ANGLE_device_creation EGL_ANGLE_device_creation_d3d11 EGL_ANGLE_experimental_present_path EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug EGL_ANGLE_explicit_context EGL_ANGLE_feature_control IsWebglOutOfProcessEnabled: 1 WebGL 1 Driver Renderer: Google Inc. (AMD) -- ANGLE (AMD, AMD 760G (Microsoft Corporation WDDM 1.1) Direct3D11 vs_4_0 ps_4_0, D3D11-8.14.10.630) WebGL 1 Driver Version: OpenGL ES 2.0.0 (ANGLE 2.1.15727 git hash: 23851a53779d) WebGL 1 Driver Extensions: GL_ANGLE_base_vertex_base_instance GL_ANGLE_client_arrays GL_ANGLE_depth_texture GL_ANGLE_explicit_context GL_ANGLE_explicit_context_gles1 GL_ANGLE_framebuffer_blit GL_ANGLE_framebuffer_multisample GL_ANGLE_get_serialized_context_string GL_ANGLE_get_tex_level_parameter GL_ANGLE_instanced_arrays GL_ANGLE_lossy_etc_decode GL_ANGLE_memory_size GL_ANGLE_multi_draw GL_ANGLE_pack_reverse_row_order GL_ANGLE_program_cache_control GL_ANGLE_provoking_vertex GL_ANGLE_request_extension GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ANGLE_texture_usage GL_ANGLE_translated_shader_source GL_CHROMIUM_bind_generates_resource GL_CHROMIUM_bind_uniform_location GL_CHROMIUM_color_buffer_float_rgb GL_CHROMIUM_color_buffer_float_rgba GL_CHROMIUM_copy_compressed_texture GL_CHROMIUM_copy_texture GL_CHROMIUM_lose_context GL_CHROMIUM_sync_query GL_EXT_EGL_image_external_wrap_modes GL_EXT_blend_func_extended GL_EXT_blend_minmax GL_EXT_color_buffer_half_float GL_EXT_debug_label GL_EXT_debug_marker GL_EXT_discard_framebuffer GL_EXT_disjoint_timer_query GL_EXT_draw_buffers GL_EXT_draw_elements_base_vertex GL_EXT_float_blend GL_EXT_frag_depth GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_EXT_multisampled_render_to_texture GL_EXT_occlusion_query_boolean GL_EXT_read_format_bgra GL_EXT_robustness GL_EXT_sRGB GL_EXT_shader_texture_lod GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc_srgb GL_EXT_texture_filter_anisotropic GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_storage GL_EXT_unpack_subimage GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_NV_EGL_stream_consumer_external GL_NV_fence GL_NV_pack_subimage GL_NV_pixel_buffer_object GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_compressed_EAC_R11_signed_texture GL_OES_compressed_EAC_R11_unsigned_texture GL_OES_compressed_EAC_RG11_signed_texture GL_OES_compressed_EAC_RG11_unsigned_texture GL_OES_compressed_ETC2_RGB8_texture GL_OES_compressed_ETC2_RGBA8_texture GL_OES_compressed_ETC2_punchthroughA_RGBA8_texture GL_OES_compressed_ETC2_punchthroughA_sRGB8_alpha_texture GL_OES_compressed_ETC2_sRGB8_alpha8_texture GL_OES_compressed_ETC2_sRGB8_texture GL_OES_depth24 GL_OES_depth32 GL_OES_draw_elements_base_vertex GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_get_program_binary GL_OES_mapbuffer GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_surfaceless_context GL_OES_texture_border_clamp GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_texture_stencil8 GL_OES_vertex_array_object GL_WEBGL_video_texture WebGL 1 Extensions: ANGLE_instanced_arrays EXT_blend_minmax EXT_color_buffer_half_float EXT_float_blend EXT_frag_depth EXT_shader_texture_lod EXT_sRGB EXT_texture_compression_rgtc EXT_texture_filter_anisotropic MOZ_debug OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_float_linear OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_depth_texture WEBGL_draw_buffers WEBGL_lose_context WebGL 2 Driver WSI Info: - WebGL 2 Driver Renderer: WebGL creation failed: * tryANGLE (FEATURE_FAILURE_EGL_NO_CONFIG) * Exhausted GL driver options. (FEATURE_FAILURE_WEBGL_EXHAUSTED_DRIVERS) WebGL 2 Driver Version: - WebGL 2 Driver Extensions: - WebGL 2 Extensions: - Direct2D: true Target Frame Rate: 60 DirectWrite: true (6.2.9200.22164) GPU #1 Active: Yes Description: AMD 760G (Microsoft Corporation WDDM 1.1) Vendor ID: 0x1002 Device ID: 0x9616 Driver Version: 8.56.1.16 Driver Date: 4-25-2009 Drivers: atidxx32 atidxx64 atiumdag atiumdva atiumd64 atiumd6a atitmm64 Subsys ID: 00000000 RAM: 0 GPU #2 Active: No RAM: 0 Diagnostics AzureCanvasBackend: direct2d 1.1 AzureCanvasBackend (UI Process): skia AzureContentBackend: skia AzureContentBackend (UI Process): skia AzureFallbackCanvasBackend (UI Process): skia CMSOutputProfile: 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 Display0: 1920x1080@59Hz scales:1.250000|1.250000 DisplayCount: 1 HardwareStretching: both=0 window-only=0 full-screen-only=0 none=0 error=1 GPUProcessPid: 3268 ClearType Parameters: Gamma: 2.2 Pixel Structure: RGB ClearType Level: 100 Enhanced Contrast: 0 Decision Log HW_COMPOSITING: available by default D3D11_COMPOSITING: available by default DIRECT2D: available by default D3D11_HW_ANGLE: available by default GPU_PROCESS: available by default WEBRENDER: available by default disabled by env: Not qualified WEBRENDER_QUALIFIED: available by default blocklisted by env: No qualified hardware WEBRENDER_COMPOSITOR: available by default unavailable by runtime: No DirectComposition usage WEBRENDER_PARTIAL: available by default WEBRENDER_SHADER_CACHE: available by default unavailable by runtime: WebRender disabled WEBRENDER_OPTIMIZED_SHADERS: available by default unavailable by runtime: WebRender disabled WEBRENDER_ANGLE: available by default WEBRENDER_DCOMP_PRESENT: available by default unavailable by env: Requires Windows 10 or later unavailable by runtime: Requires WebRender WEBRENDER_SOFTWARE: available by default WEBGPU: disabled by default: Disabled by default blocked by runtime: WebGPU cannot be enabled in release or beta WINDOW_OCCLUSION: available by default VP8_HW_DECODE: available by default VP9_HW_DECODE: available by default REUSE_DECODER_DEVICE: available by default BACKDROP_FILTER: available by default



Media


Audio Backend: wasapi Max Channels: 2 Preferred Sample Rate: 48000 Roundtrip latency (standard deviation): ... Output Devices Name: Group Speakers (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003\4&2ab41b84&0&0001 Realtek Digital Output (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003\4&2ab41b84&0&0001 Input Devices Name: Group Microphone (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003\4&2ab41b84&0&0001 Line In (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003\4&2ab41b84&0&0001 Stereo Mix (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003\4&2ab41b84&0&0001

Enumerate database

Environment Variables


MOZ_CRASHREPORTER_DATA_DIRECTORY: C:\Users\Gregor\AppData\Roaming\Mozilla\Firefox\Crash Reports MOZ_CRASHREPORTER_EVENTS_DIRECTORY: C:\Users\Gregor\AppData\Roaming\Mozilla\Firefox\Profiles\qh1kfsbs.default-1623362503398\crashes\events MOZ_CRASHREPORTER_PING_DIRECTORY: C:\Users\Gregor\AppData\Roaming\Mozilla\Firefox\Pending Pings MOZ_CRASHREPORTER_RESTART_ARG_0: C:\Program Files\Mozilla Firefox\firefox.exe MOZ_CRASHREPORTER_STRINGS_OVERRIDE: C:\Program Files\Mozilla Firefox\browser\crashreporter-override.ini MOZ_PLUGIN_PATH: C:\Program Files (x86)\Foxit Software\Foxit Reader\plugins\

Experimental Features


about:home startup cache (browser.startup.homepage.abouthome_cache.enabled): false Cookies: SameSite=Lax by default (network.cookie.sameSite.laxByDefault): false Cookies: SameSite=None requires secure attribute (network.cookie.sameSite.noneRequiresSecure): false CSS: Masonry Layout (layout.css.grid-template-masonry-value.enabled): false Developer Tools: Compatibility Panel (devtools.inspector.compatibility.enabled): true Developer Tools: Service Worker debugging (devtools.debugger.features.windowless-service-workers): false Media: JPEG XL (image.jxl.enabled): false Text Recognition (dom.text-recognition.enabled): false Address Bar: show results during IME composition (browser.urlbar.keepPanelOpenDuringImeComposition): false Web API: WebGPU (dom.webgpu.enabled): false WebRTC Global Mute Toggles (privacy.webrtc.globalMuteToggles): false

Remote Experiments


Important Modified Preferences


accessibility.typeaheadfind.flashBar: 0 browser.contentblocking.category: standard browser.download.always_ask_before_handling_new_types: true browser.download.folderList: 2 browser.search.region: US browser.sessionstore.upgradeBackup.latestBuildID: 20220902153754 browser.sessionstore.warnOnQuit: true browser.startup.homepage: about:blank browser.startup.homepage_override.buildID: 20220902153754 browser.startup.homepage_override.mstone: 104.0.2 browser.startup.page: 3 browser.tabs.inTitlebar: 1 browser.urlbar.placeholderName: Google browser.urlbar.placeholderName.private: Google browser.urlbar.quicksuggest.migrationVersion: 2 browser.urlbar.quicksuggest.scenario: offline browser.urlbar.resultGroups: {"children":[{"maxResultCount":1,"children":[{"group":"heuristicTest"},{"group":"heuristicExtension"},{"group":"heuristi browser.urlbar.suggest.engines: false browser.urlbar.suggest.openpage: false browser.urlbar.suggest.quicksuggest.sponsored: false browser.urlbar.suggest.topsites: false browser.urlbar.tipShownCount.searchTip_onboard: 2 doh-rollout.balrog-migration-done: true doh-rollout.doneFirstRun: true doh-rollout.doorhanger-decision: UIOk doh-rollout.home-region: US doh-rollout.mode: 2 doh-rollout.self-enabled: true doh-rollout.uri: https://mozilla.cloudflare-dns.com/dns-query dom.forms.autocomplete.formautofill: true dom.security.https_only_mode_ever_enabled: true extensions.formautofill.creditCards.used: 3 extensions.lastAppVersion: 104.0.2 font.minimum-size.x-western: 14 font.name.monospace.x-western: Tahoma font.name.sans-serif.x-western: Tahoma font.name.serif.x-western: Tahoma font.size.monospace.x-western: 14 gfx.crash-guard.status.wmfvpxvideo: 2 gfx.crash-guard.wmfvpxvideo.appVersion: 93.0 gfx.crash-guard.wmfvpxvideo.deviceID: 0x9616 gfx.crash-guard.wmfvpxvideo.driverVersion: 8.56.1.16 idle.lastDailyNotification: 1664945967 media.autoplay.default: 0 media.gmp-gmpopenh264.abi: x86_64-msvc-x64 media.gmp-gmpopenh264.lastUpdate: 1655506979 media.gmp-gmpopenh264.version: 1.8.1.2 media.gmp-manager.buildID: 20220902153754 media.gmp-manager.lastCheck: 1665003344 media.gmp-manager.lastEmptyCheck: 1665003344 media.gmp-widevinecdm.abi: x86_64-msvc-x64 media.gmp-widevinecdm.lastUpdate: 1652742180 media.gmp-widevinecdm.version: 4.10.2449.0 media.gmp.storage.version.observed: 1 media.hardware-video-decoding.failed: false media.videocontrols.picture-in-picture.video-toggle.enabled: false network.trr.blocklist_cleanup_done: true places.database.lastMaintenance: 1664341169 privacy.cpd.formdata: false privacy.cpd.offlineApps: true privacy.donottrackheader.enabled: true privacy.purge_trackers.date_in_cookie_database: 0 privacy.purge_trackers.last_purge: 1664945968075 privacy.sanitize.pending: [{"id":"newtab-container","itemsToClear":[],"options":{}}] privacy.sanitize.timeSpan: 0 security.remote_settings.crlite_filters.checked: 1656961411 security.remote_settings.intermediates.checked: 1656898409 security.sandbox.content.tempDirSuffix: {eb28580e-c3ba-4dfa-af6e-ce9e2b72b826} services.sync.declinedEngines: tabs services.sync.engine.addresses: true services.sync.engine.addresses.available: true services.sync.engine.creditcards: true services.sync.engine.prefs.modified: false services.sync.engine.tabs: false services.sync.lastPing: 1664981825 services.sync.lastSync: Wed Oct 05 2022 22:00:28 GMT-0400 (Eastern Daylight Time) signon.suggestImportCount: 0 storage.vacuum.last.index: 1 storage.vacuum.last.places.sqlite: 1662785938

Important Locked Preferences


fission.autostart.session: true

Places Database


Accessibility


Activated: false Prevent Accessibility: 0 Accessible Handler Used: true Accessibility Instantiator:

Library Versions


NSPR Expected minimum version: 4.34.1 Version in use: 4.34.1

NSS Expected minimum version: 3.81 Version in use: 3.81

NSSSMIME Expected minimum version: 3.81 Version in use: 3.81

NSSSSL Expected minimum version: 3.81 Version in use: 3.81

NSSUTIL Expected minimum version: 3.81 Version in use: 3.81

Sandbox


Content Process Sandbox Level: 6 Effective Content Process Sandbox Level: 6 Win32k Lockdown State for Content Process: Win32k Lockdown disabled -- Operating system not supported

Startup Cache


Disk Cache Path: C:\Users\Gregor\AppData\Local\Mozilla\Firefox\Profiles\qh1kfsbs.default-1623362503398\startupCache\startupCache.8.little Ignore Disk Cache: false Found Disk Cache on Init: true Wrote to Disk Cache: false

Internationalization & Localization


Application Settings Requested Locales: ["en-US"] Available Locales: ["en-US"] App Locales: ["en-US"] Regional Preferences: ["en-US"] Default Locale: "en-US" Operating System System Locales: ["en-US"] Regional Preferences: ["en-US"]

Remote Debugging (Chromium Protocol)


Accepting Connections: false URL:

Printing


Modified print settings


print_printer: HP LaserJet Professional P1102w (Copy 1) print.more-settings.open: true print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_bgcolor: false print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_bgimages: false print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_duplex: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_edge_bottom: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_edge_left: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_edge_right: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_edge_top: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_footercenter: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_footerleft: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_footerright: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_headercenter: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_headerleft: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_headerright: print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_in_color: false print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_margin_bottom: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_margin_left: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_margin_right: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_margin_top: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_orientation: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_page_delay: 50 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_paper_height: 11.4015748031496 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_paper_id: 513 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_paper_size_unit: 0 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_paper_width: 8.5 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_resolution: 600 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_reversed: false print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_scaling: 1 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_shrink_to_fit: true print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_to_file: false print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_unwriteable_margin_bottom_twips: 230 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_unwriteable_margin_left_twips: 230 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_unwriteable_margin_right_twips: 182 print.printer_HP_LaserJet_Professional_P1102w_(Copy_1).print_unwriteable_margin_top_twips: 230

Asked by mgrg 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

New Tab customization in firefox 99

hello there , I am posting this question for the second time since I can't see the previous one anywhere. Can someone help me with css to customize the New Tab top-sites… (read more)

hello there , I am posting this question for the second time since I can't see the previous one anywhere. Can someone help me with css to customize the New Tab top-sites(shortcuts) labels. I would like to change the font-size and color of the labels. My previous userContent.css does not work since FF94. Hope there is a way. look4

Asked by look4 1 year ago

Answered by look4 1 year ago

  • Locked
  • Archived

If a female indicates she wishes messaging off by using "has disabled messaging for now, try sending a like instead!" could a male member please have the option of turning off members who use this option to save time when looking thru profiles please?

If a female member indicates she wishes to turn messaging off by using "has disabled messaging for now, try sending a like instead!" could a male member please have the o… (read more)

If a female member indicates she wishes to turn messaging off by using "has disabled messaging for now, try sending a like instead!" could a male member please have the option of turning off members who use this option to save time when looking thru profiles please?

Asked by aferenczjr 6 months ago

Last reply by Paul 6 months ago

  • Solved
  • Archived

2 Firefox instances stopped working

Hello. Since a few years I was using 2 FF instances. Profile1 (default) triggered by "C:\Program Files\Mozilla Firefox\firefox.exe" Profile2 triggered by "C:\Program Fi… (read more)

Hello. Since a few years I was using 2 FF instances. Profile1 (default) triggered by "C:\Program Files\Mozilla Firefox\firefox.exe" Profile2 triggered by "C:\Program Files\Mozilla Firefox\firefox1.exe" -P Mike -no-remote -no-deelevate I could start profile 2, than profile 1 and corresponding icons on Windows 7 taskbar were lit.

Out of the blue today when I start profile2 shortcut icon from profile1 is lit and I can't start profile 1. When I start Profile1 I can run also Profile2 and corresponding icons on taskbar are lit.

There were no hardware nor software changes on that PC. How to get back possibility to run 2 instances of FF? Mike

Asked by sp5it 7 months ago

Answered by zeroknight 7 months ago

  • Solved
  • Archived

What content is required in userChrome.css to move the tabs bar under all other bars?

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does N… (read more)

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does NOT move the Tabs Bar below the Bookmarks Bar. The Bookmarks Bar appears to be overwritten and blank, and occupies space below the Menu Bar, Navigation Bar, and Tabs Bar. This empty space separates the three bars which are implemented and the content of the currently-selected tab below it.

Currently, my userChrome.css file is a copy posted by Cor-el (?):


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below nav-bar - fixed for 108+,113+ */

/* ROOT -variables */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;
  
  --tab-min-height: 25px !important; /*override density*/
  --tab-min-width:  80px !important; /*override default*/
}

/* TABS: below nav-bar - no longer needed in 113+ *//*
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
  -moz-box-ordinal-group: 10 !important;
  order: 10 !important;
}
#TabsToolbar {
  -moz-box-ordinal-group: 1000 !important;
  order: 1000 !important;
}
*/

/* TABS: position */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

/* for 107 and lower - disable this rule in 108 and newer *//*
#tabbrowser-tabs {
  width: 100vw !important;
} */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  position: relative !important;
}

/* TABS: HEIGHT */
#tabbrowser-tabs,
#tabbrowser-arrowscrollbox,
#tabbrowser-tabs .tabbrowser-tab {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#tabbrowser-tabs,
.tab-stack,
.tab-content {
  height: var(--tab-min-height) !important;
}

/* TABS: APPEARANCE */
#TabsToolbar {
  height: var(--tab-min-height) !important;
  margin-bottom: 1px !important;
  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
  background-color: var(--toolbar-bgcolor) !important;
  color: var(--toolbar-color) !important;
}

/* indicators - hide  */
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* window controls in full screen - hide*/
#TabsToolbar #window-controls {display: none !important;}

/* caption buttons on tab bar - hide */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar
 .titlebar-buttonbox-container {display: none !important;}
________________________________________________________________________________________________

Evidently, the text editor for this website does several things to the above original text that, frankly, seem unnecessary and undesirable. The .CSS file is just an unformatted text file, so what is the problem with simply copying its contents and pasting it in to the body of this post?

Which is also to say that I do NOT have a clue as to what any line in the file is meant to do, what effect it has, why it is even in the file at all, or why it is written in the way that it is. So DO NOT tell me that I "CAN" create a Cascading Style Sheet on my own when I cannot even modify one that has been provided.

On the face of it, something is missing from the above CSS text. What change needs to be made to the above content so that the Bookmark Bar will appear between the Navigation Bar and the Tabs Bar??

Thank-you very much for your time and attention to this request for assistance.

Asked by Blacklisted 2 years ago

Answered by DB-1 2 years ago

  • Solved
  • Archived

How do I remove "synced tabs" from history menu?

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How ca… (read more)

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How can I get rid of it?

Asked by cfcentaurea 11 months ago

Answered by cor-el 11 months ago

  • Solved
  • Archived

How to prevent sites knowing when I select text?

I've been trying to copy an email address someone emailed me. (I use Microsoft Outlook.) However, when I try to select the email address, Outlook seems to know I've sele… (read more)

I've been trying to copy an email address someone emailed me. (I use Microsoft Outlook.)

However, when I try to select the email address, Outlook seems to know I've selected it and performs some action, taking me to a different page. VERY ANNOYING!

Sites shouldn't be able to know when you're selecting text - that has nothing to do with them! How do I disable this?

Asked by MartyJames 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Add "page loading" animation to the address bar / upper right corner

I recently moved from a Firefox fork that supports Classic Theme Restorer to one that doesn't. Sigh. It was however a relief to discover that I could make most of the sa… (read more)

I recently moved from a Firefox fork that supports Classic Theme Restorer to one that doesn't. Sigh. It was however a relief to discover that I could make most of the same UI changes myself with a bit of effort. The only major customization remaining is a traditional "page loading" animation in the right corner of the address bar, preferably a swirly or moving dots animation and not the hourglass or ping-pong dots. How is this do-able with current builds? Thanks.

Asked by tao101 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Firefox auto suggestion

I am using DuckDuckGo with Firefox because I do not like auto suggestions filling up the search bar while I type. It's so annoying. I have ensured that Settings do not ha… (read more)

I am using DuckDuckGo with Firefox because I do not like auto suggestions filling up the search bar while I type. It's so annoying. I have ensured that Settings do not have auto complete in any way, but still they come. The only solution I can find on this website, which is Stop Auto Search in Firefox

There is a preference to change that back, but it does take a bit of work to find it because of the unusual name: (1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button accepting the risk. (2) In the search box in the page, type or paste handoff and pause while the list is filtered (3) Double-click the browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar preference to switch the value from true to false Success?

I had no success with it at all. Please, how can I stop this wretched feature? Thanks.

Asked by CeeBee1952 1 year ago

Answered by CeeBee1952 1 year ago