Forum Beograd Jagodina Ćuprija Paraćin

Razne zanimljive teme => Internet / Računari => Temu započeo: autentik 27-11-2020, 21:48:30

Naslov: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
Poruka od: autentik 27-11-2020, 21:48:30


#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;  }
Naslov: Odg: Multi Row Tabs in Firefox 100.0 - userChrome.css Fix 2022
Poruka od: autentik 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;
}
Naslov: Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2021
Poruka od: kevintexas0106 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.
Naslov: Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
Poruka od: emmaorabelle 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".
Naslov: Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
Poruka od: emmaorabelle 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 (https://pgeoutagemap.com)
Naslov: Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
Poruka od: katyperry 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.
Naslov: Odg: Multi Row Tabs in Firefox 83 - userChrome.css Fix 2023
Poruka od: ratketyree 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.