Forum Beograd Jagodina Ćuprija Paraćin

Molim vas da se prijavite ili se registrujete.

Prijavite se korisničkim imenom, lozinkom i dužinom sesije
Napredna pretraga  

Vesti:

Samo za Registrovane članove je moguć pristup u kategoriji '' Ljubav & Sex & Lepotice''
Obavezno pročitajne uslove korišćenja Foruma ->
Uslovi Korišćenja

Autor Tema: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023  (Pročitano 5104 puta)

0 Članovi i 1 gost pregledaju ovu temu.

autentik

  • Administrator
  • Svedok stvaranja istorije
  • ******
  • Karma: +0/-0
  • Na mreži Na mreži
  • Pol: Muškarac
  • Poruke: 17391
    • Jagodina, Ćuprija i Paraćin kao na dlanu
Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
« poslato: 27-11-2020, 21:48:30 »

  • Open about:config and set     toolkit.legacyUserProfileCustomizations.stylesheets to true.
  • Open a new tab on about:support and click the button next to     “Profile Folder“
  • Go to the “chrome” directory at the profile folder, or create it if it doesn’t exist.
  • Create a file named “userChrome.css” (if it doesn’t exist) and open it in a text editor.
  • Copy the css code from below
  • Paste it into userChrome.css and save.
  • Restart Firefox


#PersonalToolbar{
  --multirow-bmb-n-rows: 5; / Control how many rows are shown before scrolling /
  --multirow-bmb-row-margin: 2px; / Control how much spacing is between rows /
  max-height: none !important;
}

#PlacesToolbar > hbox{
  display: block;
  width: 100vw;
}

#PlacesToolbarItems{
  display: flex;
  flex-wrap: wrap;
  / --uc-bm-padding is defined in autohide_bookmarks_toolbar.css /
  max-height: calc(var(--multirow-bmb-n-rows)  (5px + 1em + (2  (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important;
  overflow-y:auto;
  scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
  scrollbar-width: thin;
}

/ Hide the all-bookmarks button /
#PlacesChevron{ display: none }

/ Add some spacing between rows /
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 3px !important;  }

autentik

  • Administrator
  • Svedok stvaranja istorije
  • ******
  • Karma: +0/-0
  • Na mreži Na mreži
  • Pol: Muškarac
  • Poruke: 17391
    • Jagodina, Ćuprija i Paraćin kao na dlanu
Odg: Multi Row Tabs in Firefox 100.0 - userChrome.css Fix 2022
« Odgovor #1 poslato: 06-05-2022, 00:22:19 »

2022.  fix

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

/* Multi-Row Bookmarks Toolbar */
#PersonalToolbar {
  /* Override max-height */
  min-height: unset !important;
  max-height: unset !important;
}

#PersonalToolbar #PlacesToolbarItems {
  /* Override hiding */
  overflow-x: visible !important;
  overflow-y: visible !important;
  display: inline-block !important;
  padding-bottom: 1px;
}

#PersonalToolbar #PlacesToolbarItems .bookmark-item {
  /* Reduce padding to fit rows closer together */
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

kevintexas0106

  • Član
  • Karma: +0/-0
  • Van mreže Van mreže
  • Poruke: 1
Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2021
« Odgovor #2 poslato: 21-04-2023, 04:17:30 »

One of the important steps you need to take is to go to Firefox's configuration folder by typing "about:support" in Firefox's address bar and pressing Enter. Then, in the "Configuration" section, you will see the path to Firefox's configuration folder.
Sačuvana

emmaorabelle

  • Član
  • Karma: +0/-0
  • Van mreže Van mreže
  • Poruke: 11
Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
« Odgovor #3 poslato: 08-05-2023, 02:22:37 »

Ovaj kod pruža upute za prilagođavanje izgleda trake sa alatkama za oznake u Firefoxu. Da biste implementirali ove promjene, slijedite ove korake:
Upišite "about:config" u adresnu traku vašeg Firefox pretraživača i pritisnite Enter.
Potražite "toolkit.legacyUserProfileCustomizations.stylesheets" i postavite ga na "true".
Otvorite novu karticu i idite na "o:podrška".
Kliknite na dugme pored "Folder profila" da otvorite fasciklu.
Idite na "chrome" direktorij u folderu profila. Ako ne postoji, kreirajte ga.
Kreirajte datoteku pod nazivom "userChrome.css" u direktoriju "chrome", ako ne postoji.
Otvorite "userChrome.css" u uređivaču teksta.
Kopirajte CSS kod naveden u pitanju i zalijepite ga u "userChrome.css".
Sačuvajte promjene u "userChrome.css".
Ponovo pokrenite Firefox da promjene stupe na snagu.
Dostavljeni CSS kod prilagođava izgled trake sa alatkama za obeleživače dozvoljavajući više redova obeleživača, dodavanjem razmaka između redova i skrivanjem dugmeta "svi obeleživači".
« Poslednja izmena: 08-05-2023, 08:35:21 od strane autentik »
Sačuvana

emmaorabelle

  • Član
  • Karma: +0/-0
  • Van mreže Van mreže
  • Poruke: 11
Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
« Odgovor #4 poslato: 01-07-2023, 03:45:18 »

The provided instructions and code snippet are related to customizing the user interface of the Firefox web browser by modifying the userChrome.css file. The code is aimed at adjusting the appearance and behavior of the bookmarks toolbar. Please note that modifying Firefox settings and files should be done with caution, as it can potentially affect the browser's performance or stability. If you are unsure or uncomfortable with making these changes, it is recommended to seek further guidance or backup your Firefox profile before proceeding. pge outage map
Sačuvana

katyperry

  • Član
  • Karma: +0/-0
  • Van mreže Van mreže
  • Poruke: 2
Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
« Odgovor #5 poslato: 03-08-2023, 04:22:33 »

the CSS code you provided is intended to customize the bookmarks toolbar and create multiple rows for the bookmarks. If you are looking for a solution related to tabs, you might want to search for a different CSS code or extension specifically designed for multi-row tabs.

ratketyree

  • Član
  • Karma: +0/-0
  • Van mreže Van mreže
  • Poruke: 2
Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
« Odgovor #6 poslato: 30-11-2023, 10:01:29 »

The purpose of the CSS code you supplied is to make the bookmarks toolbar more personalized and to add more rows of bookmarks. If you're seeking a tab-related solution, you might want to consider exploring other CSS codes or extensions that cater to multi-row tabs.
Sačuvana
 

Stranica je napravljena za 0.099 sekundi sa 25 upita.