Replies: 175 comments 12 replies
|
Hi, how to activate this? Didn't see any option in the userChrome.css other than Add-on Bar and I'm pretty sure this is different than Add-on Bar options. I do see the |
|
Hi @Aris-t2. UPD. or maybe reduce font size for those labels... |
|
@p1nkyy @Acid-Crash |
Ah yes, sorry, didn't realize my Add-on Manager has changed. Thanks for your work maintaining this. You don't know how grateful I am! |
|
hi aris it seems the shadow dom can be pierced. so you can use display flex on the .list in the shadow-root (instead of the inline-grid on the panel-list children) which will make it easier to justify and reorder the panel-items... |
|
@Aris-t2 /* Firefox Quantum userChrome.css tweaks - about:addons with columns*********************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************Pizzapops***/
@import "./addonlists_compact_fx68.css";
@namespace html "http://www.w3.org/1999/xhtml";
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
@-moz-document url-prefix(chrome://mozapps/content/extensions/aboutaddons.html) {
:root {
--addon-icon-size: 24px !important;
}
body {
height: 1020px !important; */ /* should be flexible */
columns: 720px 2 !important; /* 3 optional */
column-width: 600px !important; /* decrease if icon menu */
column-gap: 40px !important;
column-rule: 4px double #45A1FF !important;
}
.addon.card .addon-description {
display: none !important;
}
addon-list[type="theme"] .addon.card {
min-height: 25px !important;
}
.more-options-menu panel-list {
top: 6px !important;
}
button {
padding: 0px 2px !important;
}
} |
|
@yochaym @Pizzapops So far the the WIP of the button icon option: |
|
@Aris-t2 |
|
try with only this code in usercontent.css: :-moz-any(plugin-options, addon-options) > panel-list {
display: block !important;
overflow: hidden !important;
right: 0px !important;
left: unset !important;
top: 50%;
transform: translatey(-50%);
box-shadow: none !important;
}
div.arrow.top ~ div.list {
display: flex !important;
justify-content: end;
}
panel-item[action] {
margin: 0 4px;
background: var(--in-content-table-background);
}
panel-item[action="expand"] {
display: none;
}
panel-item[action="preferences"] {
order: -1;
} |
|
@Pizzapops More settings incoming (2.5.9)
@yochaym |
|
you can target just the panel-items button by using link[href$="panel-item.css"] ~ button { }if you don't mind the ugly... panel-item { color: transparent; fill: black; } |
|
Thanks, I didn't knew the trick with the $ in href$="panel-item.css". Now things can become slightly cleaner. |
|
Thank you, Aris-t2! |
|
@bege10 I assume you speak of the UserCSSLoader in this updated version (Endor’s Github), right? @Aris-t2 Now using |
|
@Aris-t2 |
|
@Aris-t2 |
|
You are right, there is no point for this info to be there. section[section="2"] :is(h2,h3){
display: none !important;
} |
|
@Aris-t2 |
|
Please test the latest pre build. |
|
@Aris-t2 On another note, is there any way to hide the Colorways from showing under Themes? |
|
@glennpc
|
|
Thank you so much 2BeeOrNot! |
|
Looks like DEV crew is tinkering with Nightly Addons. After current update, the Extensions icon is stuck on the far right of the address bar and cannot be moved. Clicking on it produces a drop-down menu of extensions. The bottom line is a selection for Manage Extensions and will get you the "normal" manage pages. Note: When using Black7375 code, the button goes straight to old manage pages but still cannot be moved. |
|
Not sure how long this has been happening, I just noticed it in FF 108. In the Add-ons Manager, some add-ons open their Options page in the Add-ons Manager tab rather than a new tab. I have two that do that, and for those, the display is just a little messed up. For Firefox Multi-Account Container add-on, the button near the end of the page is cut off: For Keyword Search, I can scroll to see all of the options, but there is a lot of available space on the page, so I wonder why scrolling is necessary: I have the following enabled:
I'm using CSSforFx 4.2.9v3. |
|
Aris, Regards and keep up the good work, |
|
Hello, sorry for out of topic question but is it possible to go to Add-on Manager from the Extensions button in the Toolbar? Also is it possible to open the Options of an Add-on in a new tab instead of in the Add-on Manager? How? Thank you in advance. |














Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
With current CustomCSSforFx we are able to...
... use a visually clean and full sized add-ons manager again (enabled by default).
... restore add-ons version number (for enabled add-ons only).
... use buttons instead of the ugly menu popup (may cause overlapping on small screens).
... use (very) compact add-on lists.
... show buttons on hover state only.
... replace button labels with icons (affect all button within add-ons page).
... colorize button icons, if above option is active.
... hide 'report' and 'manage/expand' buttons.
... hide 'recommended' and 'allow in private window' icons
Options have to be set inside
userContent.css.All reactions