Replies: 173 comments 10 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 |
Beta Was this translation helpful? Give feedback.
-
Hi @Aris-t2. UPD. or maybe reduce font size for those labels... |
Beta Was this translation helpful? Give feedback.
-
@p1nkyy @Acid-Crash |
Beta Was this translation helpful? Give feedback.
-
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! |
Beta Was this translation helpful? Give feedback.
-
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... |
Beta Was this translation helpful? Give feedback.
-
@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;
}
} |
Beta Was this translation helpful? Give feedback.
-
@yochaym @Pizzapops So far the the WIP of the button icon option: |
Beta Was this translation helpful? Give feedback.
-
@Aris-t2 |
Beta Was this translation helpful? Give feedback.
-
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;
} |
Beta Was this translation helpful? Give feedback.
-
@Pizzapops More settings incoming (2.5.9)
@yochaym |
Beta Was this translation helpful? Give feedback.
-
Firefox 68. Simple appereance, center alignment and alinement for title and search! |
Beta Was this translation helpful? Give feedback.
-
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; } |
Beta Was this translation helpful? Give feedback.
-
Thanks, I didn't knew the trick with the $ in href$="panel-item.css". Now things can become slightly cleaner. |
Beta Was this translation helpful? Give feedback.
-
Thank you, Aris-t2! |
Beta Was this translation helpful? Give feedback.
-
@bege10 I assume you speak of the UserCSSLoader in this updated version (Endor’s Github), right? @Aris-t2 Now using |
Beta Was this translation helpful? Give feedback.
-
@irvinm Note: "buttons instead of menu popup" has not been fixed and there some pixel adjustments that are needed for themes. If used with a dark theme, some color changes may be necessary. Because of Mozilla's random changes (and Covid), I have not put any effort into updating. I still use Waterfox and FF_ESR and may consider working on it again when ESR uses the FF91 base. |
Beta Was this translation helpful? Give feedback.
-
Thank you @Pizzapops ... I will check it out! |
Beta Was this translation helpful? Give feedback.
-
@Aris-t2 |
Beta Was this translation helpful? Give feedback.
-
@Aris-t2 |
Beta Was this translation helpful? Give feedback.
-
You are right, there is no point for this info to be there. section[section="2"] :is(h2,h3){
display: none !important;
} |
Beta Was this translation helpful? Give feedback.
-
@Aris-t2 |
Beta Was this translation helpful? Give feedback.
-
Please test the latest pre build. |
Beta Was this translation helpful? Give feedback.
-
Buttons on right side not lining up the same way as they did using latest FF Nightly. |
Beta Was this translation helpful? Give feedback.
-
@Aris-t2 On another note, is there any way to hide the Colorways from showing under Themes? |
Beta Was this translation helpful? Give feedback.
-
@glennpc
|
Beta Was this translation helpful? Give feedback.
-
Thank you so much 2BeeOrNot! |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
On Fx 110, addonlists_show_buttons_instead_of_menu_popup.css is now overlapping with the remove button: |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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
.Beta Was this translation helpful? Give feedback.
All reactions