• தீர்வுற்றது

Regaining colored bookmarks folders V139? (from 138)

I have some code in my .css file that had restored colored folders, a la pre version 89 AFAIR, for the folders on the bookmarks toolbar and in the bookmarks menus off the… (மேலும் படிக்க)

I have some code in my .css file that had restored colored folders, a la pre version 89 AFAIR, for the folders on the bookmarks toolbar and in the bookmarks menus off the toolbar. It was working in V138.

I just upgraded to V139 and it's no longer working. I have the plain black/white wireframes back for the toolbar folders on the bookmarks menus.

The code I was using is below. I didn't write it and I confess that I only marginally understand it.

Can someone help me to regaining the colored folders? The white ones are a serious visual impairment for my brain. I need them to be more distinct from the menus themselves.


/*

 Colored folders for Bookmarks Menus, Bookmarks Sidebar, Bookmarks Toolbar, Library window, Add/Edit Bookmarks dialog
 Substitutes a Firefox 57-style folder icon for the new wireframe folder icon
  • /

/* Standard folder -- on Toolbar and Menus */

  1. PlacesToolbarItems toolbarbutton[container="true"]:not([query="true"]) .toolbarbutton-icon,
-moz-any(
  1. PlacesToolbarItems,
  2. PlacesChevronPopup,
  3. BMB_bookmarksPopup,
  4. bookmarksMenu,
  5. OtherBookmarksPopup) menu[container="true"]:not([query="true"]) > .menu-iconic-left > .menu-iconic-icon,

/* Standard folder -- in Sidebar, Library, Add/Edit Bookmark dialog */

-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container),
  5. editBMPanel_folderMenuList > .menulist-label-box > .menulist-icon,
  6. editBMPanel_folderMenuList menupopup menuitem,
  7. editBMPanel_folderMenuList {
 fill: #e8bb00 !important; /* slightly muted gold */
 /* Specify icon for Firefox 89 Proton (base 64 conversion from old SVG with gold color) */
 list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iI2U4YmIwMCIgZmlsbC1vcGFjaXR5PSJjb250ZXh0LWZpbGwtb3BhY2l0eSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTQuNSAzSDYuOTE0YS41LjUgMCAwIDEtLjM1NC0uMTQ2TDUuMTQ2IDEuNDM5QTEuNDkxIDEuNDkxIDAgMCAwIDQuMDg2IDFIMS41QTEuNSAxLjUgMCAwIDAgMCAyLjV2MTFBMS41IDEuNSAwIDAgMCAxLjUgMTVoMTNhMS41IDEuNSAwIDAgMCAxLjUtMS41di05QTEuNSAxLjUgMCAwIDAgMTQuNSAzem0uNSAxMC41YS41LjUgMCAwIDEtLjUuNWgtMTNhLjUuNSAwIDAgMS0uNS0uNVY2aDE0ek0xIDVWMi41YS41LjUgMCAwIDEgLjUtLjVoMi41ODZhLjUuNSAwIDAgMSAuMzU0LjE0NmwxLjQxNCAxLjQxNUExLjQ5MSAxLjQ5MSAwIDAgMCA2LjkxNCA0SDE0LjVhLjUuNSAwIDAgMSAuNS41VjV6Ii8+CiAgPHBhdGggZD0iTTE1IDEzLjVhLjUuNSAwIDAgMS0uNS41aC0xM2EuNS41IDAgMCAxLS41LS41VjZoMTR6IiBmaWxsLW9wYWNpdHk9Ii4yIi8+CiAgPHBhdGggZD0iTTEgNVYyLjVhLjUuNSAwIDAgMSAuNS0uNWgyLjU4NmEuNS41IDAgMCAxIC4zNTQuMTQ2bDEuNDE0IDEuNDE1QTEuNDkxIDEuNDkxIDAgMCAwIDYuOTE0IDRIMTQuNWEuNS41IDAgMCAxIC41LjVWNXoiIGZpbGwtb3BhY2l0eT0iLjEiLz4KICA8cGF0aCBkPSJNMTUgMTMuNWEuNS41IDAgMCAxLS41LjVoLTEzYS41LjUgMCAwIDEtLjUtLjVWMTNoMTR6IiBmaWxsLW9wYWNpdHk9Ii4wNSIvPgo8L3N2Zz4=") !important;

}

/* Smart bookmark folder -- on Toolbar and Menus */

  1. PlacesToolbarItems toolbarbutton[container="true"][query="true"] .toolbarbutton-icon,
-moz-any(
  1. PlacesToolbarItems,
  2. PlacesChevronPopup,
  3. BMB_bookmarksPopup,
  4. bookmarksMenu,
  5. OtherBookmarksPopup) menu[container="true"][query="true"] > .menu-iconic-left > .menu-iconic-icon,

/* Smart bookmark folder -- in Sidebar, Library, Add/Edit Bookmark dialog */

-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, query) {
 /* Specify icon for Firefox 89 Proton to override basic folder */
 list-style-image: url("chrome://browser/skin/places/folder-smart.svg") !important;
 fill: #69c !important; /* similar to blue smart folder color */

}

/*** Top-level "container" icons (otherwise would be Standard folder color) ***/ /* Bookmarks Menu -- in Sidebar, Library, Add/Edit Bookmark dialog */

-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksMenu),
-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, queryFolder_menu________),
  5. editBMPanel_bmRootItem > .menu-iconic-left,
  6. editBMPanel_folderMenuList[selectedIndex="1"] > .menulist-label-box > .menulist-icon,
  7. editBMPanel_folderMenuList[selectedGuid="menu________"] {
 /* Specify icon for Firefox 89 Proton to override basic folder */
 list-style-image: url("chrome://browser/skin/places/bookmarksMenu.svg") !important;
 fill: olive !important;

}

/* Bookmarks Toolbar -- on Menus */

  1. BMB_bookmarksPopup #BMB_bookmarksToolbar > .menu-iconic-left > .menu-iconic-icon,
  2. bookmarksMenuPopup #bookmarksToolbarFolderMenu > .menu-iconic-left > .menu-iconic-icon,

/* Bookmarks Toolbar -- in Sidebar, Library, Add/Edit Bookmark dialog */

-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar),
-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, queryFolder_toolbar_____),
  5. editBMPanel_toolbarFolderItem > .menu-iconic-left,
  6. editBMPanel_folderMenuList[selectedIndex="0"] > .menulist-label-box > .menulist-icon,
  7. editBMPanel_folderMenuList[selectedGuid="toolbar_____"] {
 /* Specify icon for Firefox 89 Proton to override basic folder */
 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.svg") !important;
 fill: olive !important;

}

/* Other Bookmarks -- on Menus */

  1. BMB_bookmarksPopup #BMB_unsortedBookmarks > .menu-iconic-left > .menu-iconic-icon,
  2. bookmarksMenuPopup #menu_unsortedBookmarks > .menu-iconic-left > .menu-iconic-icon,

/* Other Bookmarks -- in Sidebar, Library, Add/Edit Bookmark dialog */

-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks),
-moz-any(
  1. bookmarks-view,
  2. editBMPanel_folderTree,
  3. placesList,
  4. placeContent) treechildren::-moz-tree-image(container, queryFolder_unfiled_____),
  5. editBMPanel_unfiledRootItem > .menu-iconic-left,
  6. editBMPanel_folderMenuList[selectedIndex="2"] > .menulist-label-box > .menulist-icon,
  7. editBMPanel_folderMenuList[selectedGuid="unfiled_____"],
  8. OtherBookmarksPopup + .toolbarbutton-icon {
 /* Specify icon for Firefox 89 Proton (base 64 conversion from old SVG with olive color) */
 list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ib2xpdmUiIGZpbGwtb3BhY2l0eT0iY29udGV4dC1maWxsLW9wYWNpdHkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZmlsbC1vcGFjaXR5PSIuMDUiIGQ9Ik0xMi43LDFIMy4zbC0uMi42TC4xLDksMCw5LjJWMTNhMi4wMDYsMi4wMDYsMCwwLDAsMiwySDE0YTIuMDA2LDIuMDA2LDAsMCwwLDItMlY5LjJMMTUuOSw5bC0zLTcuNEwxMi43LDFaIi8+CiAgPHBhdGggZD0iTTEyLDJsMyw3LjRWMTNhLjk0NS45NDUsMCwwLDEtMSwxSDJhLjk0NS45NDUsMCwwLDEtMS0xVjkuNEw0LDJoOG0uNy0xSDMuM0wuMSw5LjEsMCw5LjJWMTNhMi4wMDYsMi4wMDYsMCwwLDAsMiwySDE0YTIuMDA2LDIuMDA2LDAsMCwwLDItMlY5LjJMMTUuOSw5LDEyLjcsMVoiLz4KICA8cGF0aCBmaWxsLW9wYWNpdHk9Ii4wNSIgZD0iTTE0Ljk4OCw5LDEyLDJINEwuODUxLDlINS4wMjNBMi45MzEsMi45MzEsMCwwLDAsOCwxMS42LDIuODg5LDIuODg5LDAsMCwwLDExLjAxMiw5WiIvPgogIDxwYXRoIGQ9Ik0xMCw5QTIsMiwwLDAsMSw2LDlIMHYxSDUuMTg0YTIuOTgzLDIuOTgzLDAsMCwwLDUuNjMzLDBIMTZWOVoiLz4KPC9zdmc+") !important;

}

/* (Older Firefox) Avoid overriding classic Bookmarks Toolbar and Other Bookmarks icons in menus */

  1. BMB_bookmarksPopup #BMB_bookmarksToolbar.menu-iconic-icon,
  2. bookmarksMenu #bookmarksToolbarFolderMenu.menu-iconic-icon {
 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important;

}

  1. BMB_bookmarksPopup #BMB_unsortedBookmarks.menu-iconic-icon,
  2. bookmarksMenu #menu_unsortedBookmarks.menu-iconic-icon {
 /* Specify icon for Firefox 89 Proton (base 64 conversion from old SVG with olive color) */
 list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ib2xpdmUiIGZpbGwtb3BhY2l0eT0iY29udGV4dC1maWxsLW9wYWNpdHkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZmlsbC1vcGFjaXR5PSIuMDUiIGQ9Ik0xMi43LDFIMy4zbC0uMi42TC4xLDksMCw5LjJWMTNhMi4wMDYsMi4wMDYsMCwwLDAsMiwySDE0YTIuMDA2LDIuMDA2LDAsMCwwLDItMlY5LjJMMTUuOSw5bC0zLTcuNEwxMi43LDFaIi8+CiAgPHBhdGggZD0iTTEyLDJsMyw3LjRWMTNhLjk0NS45NDUsMCwwLDEtMSwxSDJhLjk0NS45NDUsMCwwLDEtMS0xVjkuNEw0LDJoOG0uNy0xSDMuM0wuMSw5LjEsMCw5LjJWMTNhMi4wMDYsMi4wMDYsMCwwLDAsMiwySDE0YTIuMDA2LDIuMDA2LDAsMCwwLDItMlY5LjJMMTUuOSw5LDEyLjcsMVoiLz4KICA8cGF0aCBmaWxsLW9wYWNpdHk9Ii4wNSIgZD0iTTE0Ljk4OCw5LDEyLDJINEwuODUxLDlINS4wMjNBMi45MzEsMi45MzEsMCwwLDAsOCwxMS42LDIuODg5LDIuODg5LDAsMCwwLDExLjAxMiw5WiIvPgogIDxwYXRoIGQ9Ik0xMCw5QTIsMiwwLDAsMSw2LDlIMHYxSDUuMTg0YTIuOTgzLDIuOTgzLDAsMCwwLDUuNjMzLDBIMTZWOVoiLz4KPC9zdmc+") !important;

}

Asked by MozzieBob 2 வாரங்களுக்கு முன்பு

Answered by MozzieBob 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Firefox Window tabs tool?

What is this blue box and line, and how do I get rid of it?

Asked by allstamp 2 வாரங்களுக்கு முன்பு

Answered by allstamp 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Websites say WebGL not supported by browser

Anything using WebGL in-browser tells me that my browser doesn't support it. https://get.webgl.org/ says "Hmm. While your browser seems to support WebGL, it is disabled … (மேலும் படிக்க)

Anything using WebGL in-browser tells me that my browser doesn't support it.

https://get.webgl.org/ says "Hmm. While your browser seems to support WebGL, it is disabled or unavailable. If possible, please ensure that you are running the latest drivers for your video card." but I updated it to the most recent drivers and the issue is still happening. Graphics card is an AMD Radeon RX 6600 XT.

Asked by Jack 2 வாரங்களுக்கு முன்பு

Answered by Jack 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Fx v137+ Search enhancements do not appear.

After I upgraded to v137 and now on v138 I do not have the new search enhancements made to the address bar. Only a new profile will get me the enhancements. I'd rather no… (மேலும் படிக்க)

After I upgraded to v137 and now on v138 I do not have the new search enhancements made to the address bar. Only a new profile will get me the enhancements. I'd rather not have to create a new profile and add all my changes and add-ons all over again. It's a real PITA. Is there any 'trick' I can try to get the new enhancements?

Asked by streetwolf 2 வாரங்களுக்கு முன்பு

Answered by streetwolf 2 வாரங்களுக்கு முன்பு

  • Locked

Yahoo mail

I’m locked out of yahoo mail

Asked by brunojjdog 2 வாரங்களுக்கு முன்பு

Last reply by Kiki 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Cannot log in to Outlook

When I log into my Outlook Web account, after putting in username and password, it sends me a verification number to my phone. When I put that number it the screen says … (மேலும் படிக்க)

When I log into my Outlook Web account, after putting in username and password, it sends me a verification number to my phone. When I put that number it the screen says "Logging out of Microsoft Outlook" and then takes me to the logged out screen. This was working fine until the last update of Firefox, and it works fine in the Duck Duck Go browser. It also works on my Android Cell phone.

Asked by daveclark517 1 மாதத்திற்கு முன்பு

Answered by jonzn4SUSE 1 மாதத்திற்கு முன்பு

  • தீர்வுற்றது
  • Locked

booking.com, calendar

booking.com, calendar, selection date departure does not work with Firefox but works ok with Chrome

Asked by chsf1 2 வாரங்களுக்கு முன்பு

Answered by chsf1 2 வாரங்களுக்கு முன்பு

  • Locked

Verification not complete

My verification not complete and I'd not generate help me

Asked by Kishan kumar Maurya 2 வாரங்களுக்கு முன்பு

Last reply by Kiki 2 வாரங்களுக்கு முன்பு

  • Locked

onedrive permissions

How do i allow permission to sync to onedrive.

Asked by Ute Sack 2 வாரங்களுக்கு முன்பு

Last reply by Kiki 2 வாரங்களுக்கு முன்பு

  • Locked

Linkei

Dear LinkedIn Team, I hope this message finds you well. My LinkedIn account, which holds a significant number of connections and followers, has been unexpectedly restric… (மேலும் படிக்க)

Dear LinkedIn Team,

I hope this message finds you well. My LinkedIn account, which holds a significant number of connections and followers, has been unexpectedly restricted. Unfortunately, I’m currently unable to log in and verify my identity due to challenges with OTP delivery and account access.

This situation is impacting my business activities and professional engagement on the platform. I would be truly grateful for your prompt assistance in helping me resolve this issue and regain access to my account.

Thank you for your support.

Warm regards, Abdi

Asked by megarsaalamayo 2 வாரங்களுக்கு முன்பு

Last reply by Paul 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Tab Groups Disappear after Save/Close

I was excited to receive the new Tab Groups feature and am now disappointed that it's not working and I've 'lost' dozens of tabs. Here's what I did: I created several … (மேலும் படிக்க)

I was excited to receive the new Tab Groups feature and am now disappointed that it's not working and I've 'lost' dozens of tabs.

Here's what I did: I created several groups by right-clicking and added tabs to each of the groups. Since it appears that only way to collapse a group is to "save and close group," I closed each group. Now they are all gone. When I right-click to create a new group or "add tab to group," the closed groups are nowhere to be found. Plus, I do not see a "list all tabs icon" on my toolbar to reopen the grouped tabs, which is what [article] says should happen.

Suggestions for making this work?

Asked by Mitch 1 மாதத்திற்கு முன்பு

Answered by Mitch 1 மாதத்திற்கு முன்பு

  • தீர்வுற்றது

Persistent data keeps dissapearing

Hi, I want a website (Protonmail, my email client) to store persistent data. I have enabled it, but I also have all my browser security settings on Strict (also clearing … (மேலும் படிக்க)

Hi, I want a website (Protonmail, my email client) to store persistent data. I have enabled it, but I also have all my browser security settings on Strict (also clearing browse data and cookies on each closing of the browser), so now when I have downloaded the data and I close and reopen my browser: it's all gone. I tried looking at making Protonmail an Exception, but that's only possible in relation to Tracking Protection. How to fix this?

Thank you in advance,

Kind regards,

Asked by siardnicolai 3 வாரங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 3 வாரங்களுக்கு முன்பு

  • Locked

phonecalls

Do y'all have something for phone calls thàt are spam and I have a hacker who works for apple and you guys have saved my life after a year ❤️

Asked by Michelle Nance 2 வாரங்களுக்கு முன்பு

Last reply by Paul 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

New Tab not showing Recent Activity anymore.

I have Firefox's New Tab set as my home page, since I'm choosing to divorce myself from political doomscrolling for the next four years. The New Tab page is perfect for h… (மேலும் படிக்க)

I have Firefox's New Tab set as my home page, since I'm choosing to divorce myself from political doomscrolling for the next four years. The New Tab page is perfect for having frequently visited sites at the top, Pocket stories I can curate in the middle, and what used to be a history of articles and sites I've read most recently in "Recent Activity" along the bottom. Within the last few days, "Recent Activity" has been blank, and will no longer keep track of articles I've recently read. I've tried clearing the browser history and cookies, and it came back for a moment, but quickly went back to being blank. And the major downside to clearing the browser is that my four rows of most frequently visited sites gets wiped clean also, and I have to spend time getting them back on the list. I do not have Firefox set to automatically clear history upon closing it. I've tried turning "Recent Activity" off and on with the page's Settings (cog in the bottom right corner). I'd really like to have this back, as it can help me find recently read content (especially Pocket content) easier than wading through the History log. Any help would be appreciated.

Asked by Dave F 4 மாதங்களுக்கு முன்பு

Answered by Dave F 4 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது

Mysterious apps/images on home screen

Don't know how to describe the issue. I leave the computer on all night. In the morning, when I move the mouse to activate the screen, there is a large, 3-panel image wit… (மேலும் படிக்க)

Don't know how to describe the issue. I leave the computer on all night. In the morning, when I move the mouse to activate the screen, there is a large, 3-panel image with links to various websites. Today's panels are titled "Daily Wonder," "Hats Off to the Class of '25," and "Markets." A click on any of these panels takes me to a website. No idea how these panels are produced or by whom. If I try to take a screenshot, the images disappear and my normal home screen is shown. I do not recognize anything in the Task Manager that might explain this. Not sure if this is a Windows issue or a Firefox issue. Perhaps another user can ask me questions that will lead to more information.

Windows 10 version 22H2, OS Build 19045.5854.

Thanks, Cloverdavid

Asked by David K 2 வாரங்களுக்கு முன்பு

Answered by Paul 2 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

how do I remove the URL form things I print?

Hello,

How do I remove the URL form things I print in FireFox?

Asked by mikes6 3 வாரங்களுக்கு முன்பு

Answered by Ed 3 வாரங்களுக்கு முன்பு

  • தீர்வுற்றது

Google calendar not showing any colors

I recently downloaded Firefox and would like to use it as my primary web browser (M1 14" Macbook Pro). But my Google calendar web site is not showing any colors, making … (மேலும் படிக்க)

I recently downloaded Firefox and would like to use it as my primary web browser (M1 14" Macbook Pro). But my Google calendar web site is not showing any colors, making it hard to use. On my other browsers (Brave, Safari, Edge) it works fine . See screen shots below from Firefox, Safari, Brave. I have tried re-booting Firefox, the computer, reverting the Firefox theme back to basics etc., and searching on line for a solution, but I can't find anything. So far all other websites are working OK, except for 1 other that has partially the same problem. If it can't be fixed I'll stop using Firefox, which I otherwise like.

Thanks for any help.

Asked by rb_stern 2 வாரங்களுக்கு முன்பு

Answered by Mark 2 வாரங்களுக்கு முன்பு

  • Locked

free fire

my free fire downow

Asked by Preeti Mishra 2 வாரங்களுக்கு முன்பு