-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
General discussions, feedback, questions belong here (v4) #109
Comments
Regarding screenshots_alternative_save_ui.css:
Therefore body > div.highlight > div.highlight-buttons:first-child > button.highlight-button-download instead of html body div.highlight div.highlight-buttons button.highlight-button-cancel + button.highlight-button-copy + button.highlight-button-download Not sure about Should I make a pull request? |
Please no pull requests. Its true I know about I prefer the "button + button + button..." code here. Makes it less likely to occur on a different page. Don't worry about the readability or complexity. The code is not written for educational purposes. In this case internal screenshot add-ons code does not work like most parts of the ui, Normally it would cover the case you mention, but devs use a reversed direction here, so -moz-margin/padding-start/end causes exactly the opposite. After testing this on a rtl locale I switched back to padding/margin-left/right. |
Removing the tooltips that appear on the back-forward buttons if you left-click more than half a second:
This is for me a very annoying behavior for which I made a request a long time ago for CTR. By the way, thanks a lot for this new project! |
@v777 Actually those popup menus (which also pop up on a right click) are the only reason I keep the Back/Forward buttons on my toolbar. Otherwise I would do away with them and just use the thumb buttons on the mouse. Yes, it’s puzzling that they pop up on a long click as if we were on a touch screen. But they enable arbitrary jumps through history, and that comes in handy e.g. in cases you need to go back two pages when the previous page is an immediate redirect. |
@yurikhan I too sometimes use this menu. It is very handy if it appears when I want. And for that, there is already the right click. In fact, the true issue is that we cannot tell Firefox: no touch screen here! Anyway, I know there are a few people who are interested by that, so I hope it will be useful, and possibly added to this wonderful project. |
I can add this to the project. |
@v777 The point is that your snippet above will hide popup menus no matter how they are invoked, right click or long click, making the functionality inaccessible. |
In my tests they only hide popups for left clicks / left long clicks, right clicks don't hide them. |
@yurikhan - Right click menu maybe no create in |
Hm, indeed, there are three separate (identical?) |
FX Screenshots have diffrent/randomly Internal UUID? @-moz-document url-prefix("moz-extension://83173b3b-33d0-4a9b-8ad5-76fe827549eb/") {
/* css */
} OK ramdomly. |
Yes its random. It contains a function for that: this.makeUuid = (function() {
// generates a v4 UUID
return function makeUuid() { // eslint-disable-line no-unused-vars
// get sixteen unsigned 8 bit random values
const randomValues = window
.crypto
.getRandomValues(new Uint8Array(36));
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(c) {
const i = Array.prototype.slice.call(arguments).slice(-2)[0]; // grab the `offset` parameter
const r = randomValues[i] % 16|0, v = c === "x" ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
};
})();
null; |
Is it possible to change the alignment of the titlebar text? (for "Tab Title In Firefox Titlebar") |
v1.7.5 offers an option for that now. |
Hello, first of all huge thank you for this project! I'm now trying to set up my old visuals on the new portable Quantum in various degrees of success. This is my FF 56.0.2 look which I'm trying to recreate (don't mind the language): This is what I have right now: I have a few issues:
My userChrome.css on Pastebin Any help is appreciated! |
Make sure you are not using the crappy, broken Firefox 58. Switch to 59: http://ftp.mozilla.org/pub/firefox/candidates/59.0-candidates/build1/
Your screenshot shows and active "custom_backforward_connected_to_location_bar.css" in userChrome.css, while your css file does not. Buttons are separated be default and you can add other buttons between them and location bar.
Try to start over with a clean profile (again) without other add-ons installed. Tabs work fine here.
I suggest to setup a new version of Portable Firefox and replace the included Firefox 58 with Firefox 59 (it will be officially out in a week anyway and has far less issues with custom css code). Extract a clean new 1.7.5 version of the project to the corresponding chrome folder and test Edit |
Thank you for the help! I updated the portable version and the tabs, icons and right-click gmail notifier were fixed right away. I had no idea FF58 was so buggy! |
Mozilla tested and left many CSS restrictions in Firefox 58 regarding userChrome.css/userContent.css. They knew about the complains, but refused to fix them. See #101 In my opinion it was a highly hypocritical move to allow own internal CSS code to do one thing, but restrict the same thing in userChrome.css/userContent.css. I had to add a few *_Fx58_fix.css options as a workaround to the package. |
It is possible, but I suggest not to do this. Tab context menu might reorder its content randomly resulting in something you never planned to get. Or it might stick with an order even after removing the code. If you still want to try, you have to add a After getting all ids, start ordering context items #id_of_first_item {
-moz-box-ordinal-group: 0 !important;
}
#id_of_second_item {
-moz-box-ordinal-group: 1 !important;
}
... To affect a #id_of_item_before_separator + menuseparator {
-moz-box-ordinal-group: # !important;
} To hide a separator use something like this: #id_of_item_before_separator + menuseparator {
display: none !important;
} |
@Aris-t2 EDIT: BTW does this help with the xbl thing on firefox being removed? https://www.jeffersonscher.com/gm/url-bar-tweaks.html Is it possible to change the star icon that appears in the location bar popup to be blue like it used to be? |
(Unfortunately not for CustomCCSforFx.) I’ve recently discovered the addon Bookmark search plus 2 (BTW: This implements a behaviour that should in my opinion be the default). After installation one can select a new group in the sidebar. Alas, this shows the default ugly, grey bookmark icons. I am now interested, how I could apply the yellow icons (from |
One off search does not work with my two lined version of autocomplete popup. Rebinding the popup with XBL broke something there, so I added CSS to hide one off search completely (I know it worked fine in previous Firefox versions). No need to reenable it. I know there are CSS tweaks to get two lined results (in fact the first versions of the project used something similar), but the popup misses a few main features (with rebinding):
Once XBL is gone, I might try the CSS only way again. Add this to your userContent.css to override the hard-coded gray icons with the ones from this project. div.bkmkitem_f img[src="/icons/folder.png"] {
-moz-padding-start: 20px !important;
background: -moz-image-rect(url("./image/folder-item.png"), 0, 32, 16, 16) center no-repeat !important;
}
div.bkmkitem_f img[src="/icons/menubkmk.png"] {
-moz-padding-start: 20px !important;
background: -moz-image-rect(url("./image/bookmarksMenu.png"), 0, 16, 16, 0) center no-repeat !important;
}
div.bkmkitem_f img[src="/icons/otherbkmk.png"] {
-moz-padding-start: 20px !important;
background: -moz-image-rect(url("./image/unsortedBookmarks.png"), 0, 16, 16, 0) center no-repeat !important;
}
div.bkmkitem_f img[src="/icons/toolbarbkmk.png"] {
-moz-padding-start: 20px !important;
background: -moz-image-rect(url("./image/bookmarksToolbar.png"), 0, 16, 16, 0) center no-repeat !important;
} |
I have a bit of an issue. When I use the tabs under the main content and tabs multiple lines v2 I am unable to see the bottom of the webpage when there is two lines. Is there any fix for that? |
@aflove65 |
Wow, thank you once again! How did you find this? Because with the browsertools I did not get it. JFYI: Bookmark search plus 2 - möglicher Ersatz für Go Parent Folder & Show Parent Folder. |
@Speravir |
OK, I found it – not that I had been able to find out it from there on my own … But for potential changes I know now where to search for. THX (again ;-) ). |
I do not know if anyone will process the js files addon convert for compatibility:
|
This addon is a good start but is not sufficient, because when the user have many tabs opened, a symbol for unread tab is not clear enough to view.
|
@happysurf |
@Aris-t2 |
How to activate |
@krystian3w Open a few different websites in tabs and hit restart button/menuitem. After restart all opened tabs, that where not yet selected, will offer pending tabs = unloaded tabs |
Works in both cases for me. |
Still impractical / unhandy. |
I really do not expect you to go through it again. It was just thought as example of things changed so code/rules do not work anymore like before. But your code is in issue #88, see p. 3 of your post on 13 Dec 2017. Edit: Works again: Great! Actually only the folder image did not work before (the rules provided by you are identical for the others like last time). This one
sounds like a Fx bug to me. Edit: I used the first version from you with the general |
Actually this addon is a direct consequence of a discussion in German Camp Firefox forum regarding the unread/notselectedsinceload issue. If you are able to read see Farbige Tab's (we overlook the wrong plural, do we?). |
If you install a suiting addon this works also for all tabs opened in background. I know 4 of these – 3 of them should be the first results here: search results for "load on select" (edit: after looking it seems only both LoadTabOnSelect variants work), and the fourth is HoldTab. (I actually only tested the last.) |
Hi @Aris-t2, Thank you for classic/css/toolbars/menubar_in_fullscreen_mode.css. It shows the menu bar via Alt key. |
[Win10][Nitely 2018-07-10] |
Maybe fix tomorrow if dev show problem. |
Sounds like a Firefox bug. Maybe the devs are already on it. |
This thread is getting way too long. Lets continue here: #133 |
Continued from #3, #41 and #88.
Instead of opening new "issues" for general talk we can use this area for discussions, feedback and questions. Open new "issues" for real bugs and problems.
Trying to make CSS code ready for Firefox Quantum (57+)?
Remove all
@namespace
references. They are the reason, if your code refuses to work.Application/hamburger button in tabs toolbar?
Look here: #46
Things this project will not target/recreate
Things not possible with CSS
The text was updated successfully, but these errors were encountered: