-
Notifications
You must be signed in to change notification settings - Fork 184
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 discussion, feedback, questions belong here! (v6) #163
Comments
Not a bug, but maybe an oversight/inconsistency I though I might as well report since I noticed it. Using the latest v2.2.2, it looks like the hover effect on the New Tab's page search bar is missing... I'll just do pictures. For comparison: There kinda inverses if you know what I mean. |
When Nightly upgraded to 65.0a1 I can no longer put the tabs under the main content or below the navigation and bookmark toolbar. Is there any fix for this? |
@ImSpecial @aflove65 |
No idea on that, probably not... it's not a big deal either way, but I think what makes it more noticeable with CustomCSSforFX is that the tiny 1px grey border is being removed on hover when it dosn't with stock FF, also when the bar has the blue highlight effect it's not quite looking right either using CustomCSSforFX. |
If you are not using the old "dark appearance" for Firefox 60 on current Firefox versions, there is nothing, that can affect the about:newtab page. Location and search bar buttons/icons get altered by |
I am using "\css\aboutnewtab\dark_appearance.css" though... |
In the menu>submenu ,how can I change the color of the arrow and the shortcut? |
OK, so, I am pretty sure Im blind but since updating to 2.2.2 and going through the options I cant find where to set some of the color options. I have tried changing settings in custom_tab_color_settings.css after removing the /* in userChrome.css to enable it but they dont seem to take effect. Few things I would like to change in this screenshot: https://i.imgur.com/zKBR35y.png It would be neat if the second and more tab rows could start at the edge of the screen instead of after the app button but Im sure thats probly not possible. |
Is it still not possible to move the overflow menu button on the navigation bar? I can't for the life of me understand why they'd fix its position in that way. |
You don't need that on Firefox 61+, because default 'Dark' theme already styles newtab page automatically. @Crybal .menu-accel {
color: red !important;
} You can not change the color of the arrow. The image has to be switched. .menu-right image {
} @John0877 Space between last tab and the minimize button The background color, and gradient for all the buttons on the toolbar Is it possible to remove the line around the address bar? #urlbar {
border: 0 !important;
outline: unset !important;
box-shadow: unset !important;
} It would be neat if the second and more tab rows could start at the edge of the screen instead... @That-Random-Guy |
Yeah I suppose it does, but I like your colors better :), you use a lighter grey then default FF's dark mode, also I use your dark bookmark side menu and thus colors wont match because again you use a lighter grey, tabs and duckduckgo's dark mode also all match this way. This is what things look like with your darkmode, and without. CustomCSSforFX: FF Dark Mode: |
@Aris-t2 |
@ImSpecial @That-Random-Guy Navigation toolbar > main menu button, overflow button, downloads button: setTimeout(function(){
try{
document.getElementById("nav-bar-customization-target").insertBefore(document.getElementById("PanelUI-button"),null);
document.getElementById("nav-bar-customization-target").insertBefore(document.getElementById("nav-bar-overflow-button"),null);
document.getElementById("nav-bar-customization-target").insertBefore(document.getElementById("downloads-button"),null);
} catch(e){}
},200); |
Is that just the first few lines of the file?
|
@Aris-t2 |
The icon for the MySessions extension keeps getting reset to black on browser restart in spite of changing the color in the settings dialog. I was wondering if there'd be a way to override its color since I am assuming its not an actual icon file since there's a color picker in its settings. |
:-moz-any(statuspanel,#statuspanel) :-moz-any(#statuspanel-label,.statuspanel-label) {
-moz-appearance: none !important;
background: red !important;
color: yellow !important;
} @John0877 But the internal icon color changer works for me. I enabled/disabled the option a few times and it started to do its job. |
Thanks, but doesn't work on 64beta but this yes: /* Status panel */
@media (-moz-windows-default-theme) {
#statuspanel-label {
background-color: white !important;
color: black !important;
} Created looking chrome://browser/skin/browser.css code. :-) |
Works for me with every Firefox version I tested between 60 and 65 (ESR, release, beta, Nighty). I even added an option of this for next update. Those nodes did not change for years. What OS / theme are you testing on? |
This morning on my PC at work (Firefox 64beta +FirefoxColor theme + W10) works fine, maybe at home I have some code line that interfere. |
Hi, I must be missing something very simple. Using FF 63.0.1 (64-bit) on Fedora 28 and CustomCSSforFx v2.2.6, all I did is unpacking the release zip into profile folder (verified through about:support - Profile Directory) and uncommented line 355 @import "./css/tabs/tabs_multiple_lines_v2.css"; Nothing happens; opening new tabs still scrolls the tab list horizontally, no more rows appear. I've tried with a fresh profile with the same result. Thanks for correcting my ignorance. |
Did you ui not change at all or do only multilined tabs refuse to work? Make sure you not just unpacked the release into profile folder, but into profiles
|
@Aris-t2 Sorry, that was it 🤦♂️ However sizing the tab width does not seem to do the trick; I've overwritten |
You are using the complete package, so values have to be overridden within /config/ files: |
@Aris-t2
&
Unfortunately, neither has any effect. No change from earlier image ... EDIT: Actually, I think there is a slight change ... namely there's now 1 px spacing above the tabs, below the bookmarks. |
Once again Aris a big Thank You. That code worked exactly. I just changed the colour to black. This line visibility problem is to do with the macOS Transparency effect versus Opaque. |
Using FX65, search suggestions display like this. Using Fx 66.06b, it "sometimes" displays like this. But it also randomly looks like this, using the same profile. On another subject, I'm having trouble locating past posts. Are they deleted after some time? I asked a question about the space that was created below the tab bar after Fx 65, and how to get rid of it You made a suggestion but I'm not sure how to go about it. thanks |
It's because Github annoyingly hides comments in long threads. Do a find on this page for |
The way that email notifications are sent for "discussions" like this is a bit different. I was getting emailed full copies of every comment made (ever). I guess by their system, if you make one comment, they would email you a copy of every comment made, for yrs. I changed the preference to "Ignoring - never be notified." |
Test this code to improve bookmarks toolbar padding and height. #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar) {
padding-left: 0px !important;
padding-right: 0px !important;
}
#navigator-toolbox > #PersonalToolbar {
min-height: 30px !important;
padding-top: 2px !important;
padding-bottom: 2px !important;
} No idea why the new tab button padding does not work for you. Maybe you are overriding the code with own code? #main-window #navigator-toolbox #TabsToolbar .tabs-newtab-button,
#main-window #navigator-toolbox #TabsToolbar #new-tab-button {
margin-left: 20px !important;
margin-right: 20px !important;
} @nollinvoyd This thread became too long. Its probably time for a new one. |
Continue here: #189 |
Thanks |
Please point me in the direction of these files, etc. I tried altering the values in certain files I thought would apply, but couldn't get anything to happen. |
copy quote to #189 (v7)... |
@nollinvoyd |
After moving the search bar, this is what the toolbar looks like with all buttons correctly displayed This is how it looks when the "glitch" occurs. In this situation. There are 4 addon buttons that actually do appear (enclosed in the red box). This does not occur when glitch occurs and the search bar is on the menu bar, when no addon buttons appear. In addition, I have several addon buttons pinned to the overflow. That display remains the same regardless. |
Without searchbar the rest of navigation toolbars content uses different space calculations. |
These are the only items that seem to apply to height Altering this only affects the top tab border
Changing this has no affect that I can see
|
Can you elaborate. I don't understand. This event occurs no matter where the search bar is located. I wish I could test it in a purely clean profile, but ironically it requires addons to prompt the glitch. Is it possible that a custom button is responsible? I had then before the problem began and things were fine. |
By "complete package" I assume you mean the entire general_variables.css file? I did, and tried to change the values I mentioned previoiusly. I don't see a reference to a particular line in the post. |
By complete package I mean the full release of this projects files: https://github.com/Aris-t2/CustomCSSforFx/releases Backup your /chrome/ folder, extract all files from releases zip file into a new empty /chrome/ folder. |
I will add this as new option on next update: #navigator-toolbox #TabsToolbar .tabs-newtab-button {
-moz-box-flex: 100 !important;
max-width: 225px !important;
width: auto !important;
min-width: var(--tab-min-width) !important;
} |
Hi I've just updated to FF 68 and CTR 2.5.7. I'm using the new I want the tabs to have a highlight on top of them, like in this screenshot: http://puu.sh/DRUYD/d19e2d1112.png, what option to use? |
Change this value https://github.com/Aris-t2/CustomCSSforFx/blob/master/classic/css/locationbar/ac_popup_classic_with_two_lines_fx68.css#L70 I will tweak this a bit on next update. |
Make sure you updated to the most recent version of this projects files "before" reporting problems!
Continued from #3, #41, #88, #109 and #133.
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.
Custom JS scripts to restore more classic features
https://github.com/Aris-t2/CustomJSforFx
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: