-
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 discussions, feedback, questions belong here (v2 -outdated- use v3) #41
Comments
#4 - possible copy to form https://github.com/blog/2111-issue-and-pull-request-templates |
I have an issue with the separator bar for the Bookmarks menu drop-down from the classic menu bar. in FF on windows 7 they are almost invisible. Prior to 57I was able to remedy the problem using a mod to userchrome.css as follows: @namespace with the advent of 57, that solution no longer works. Can you provide an update to your Classic Theme restorer CSS for 57 that will restore the functionality (or provide feedback to me)? TIA |
Hello Aris-t2, #context_sendTabToDevice, #context_sendTabToDevice +menuseparator, to send_to_device_menuitems_hidden.css file. And a question (for anyone who may know): how can I make the new private window open with the home page (or at least a blank page) instead of the current purple abomination? Is there an about:config entry (couldn't find one)? Is it doable in userContent? |
Should we consider creating a Wiki on this project? I am not confident enough to submit changes to mainline code but I would be happy to help with creating wiki pages that document/talk about features to act as an FAQ to avoid having to skim through threads and point users to. @Aris-t2 would you accept pull requests for wiki pages? *Edit: I started with a small sample here about what I'm talking about: https://github.com/aolszowka/CustomCSSforFx/wiki/pageaction_button_in_location_bar_hidden.css it would be slightly time consuming but that's why you use volunteers. I would at least document the tweaks I use for sure. |
I'm not sure if this is what you are looking for, but try oping a "new"
tab.. look on the upper right corner and click the "gear".. you can
uncheck options until the tab is clear of the garbage.
David Denby
David Denby
…On 11/16/2017 10:11 AM, Poonkraft wrote:
Hello Aris-t2,
please consider adding this
#context_sendTabToDevice,#context_sendTabToDevice +menuseparator,
to send_to_device_menuitems_hidden.css file.
And a question (for anyone who may know): how can I make the new
private window open with the home page (or at least a blank page)
instead of the current purple abomination? Is there an about:config
entry (couldn't find one)? Is it doable in userContent?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#41 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AgKYBQ1iwuPG7pnWfACltSKDigyG92Okks5s3F7IgaJpZM4QgI9o>.
|
@DDTex I want to either set my own home page instead, or at least get a blank screen. |
Is it possible to enable the status or addon bar with css again? I'm missing the bar at the bottom of firefox, where I can put the addon icons to, also as a close of the bottom of the browser window. |
@userOperaFF @DDTex Tested this in userChrome.css on Windows and it worked fine. menuseparator {
-moz-appearance:none !important;
background: green !important;
height: 3px !important;
padding: 1px !important;
} @Poonkraft about:privatebrowsing @-moz-document url(about:privatebrowsing){
html {
visibility: hidden !important;
background: unset !important;
}
} @aolszowka @Corben78 |
Yeah, I'm aware that CSS can't create new elements. I was wondering if there still is a status/addon bar still available in Firefox, but just not visible due to default CSS. |
@aolszowka You cant do pull requests to wikis, @Aris-t2 also needs to enable wiki in settings first, but what you have done so far is for your fork only.
@Aris-t2 you need to enable wiki in settings first otherwise @aolszowka cant do anything to your project here. My question however. What I meant to ask though, is it possible to customize scrollbars? see silverwind/overlay-scrollbars#1 I was looking for this https://github.com/silverwind/overlay-scrollbars/blob/master/overlay-scrollbars.css type of customization level. |
@Corben78 @the-j0k3r About the Wiki |
Wikis are open by default when enabled, but I suppose you can easily add a snippet to home page explaining that, that users are free to add information missing.
Same as above right? -- This wiki is a community only driven resource, feel free to correct/improve existing/add new information you feel is appropriate. -- Though this is entirely up to you, its your project and its your decision if you want to open it to people to contribute, collaborate etc, or not. Re: scrollbars |
Hey! First of all, love what you guys are doing here, because I absolutely hate this flat trend. Now... I do also have a feature request, which was not part of the original addons this project is base on, still... Could we get the iconic round/curved Australis tabs back of the previous FF versions? |
Possible but not in this project. Maybe use:
|
@userOperaFF : Thanks, checked it out, I like it. It is a bit too flat for my taste, but at least I have the curves, now all I need is some time to edit the embeded svgs.. |
@the-j0k3r Ah really? I didn't realize you can't push Wiki pages; that's a huge Github limitation (and a real shame tbh). |
Hello, i'm here to ask for an help to make a simple tweak: reduce the height of the tabs on Firefox 57. I use the compact style, and up to Firefox 56 i was using this simple string: I have tryed this string: Result: tabs are tighter but they have extra space between toolbar. Someone know to tweak only the height of the tabs? I don't need nothing more. |
@JonnyThree /* Reduce space above tabs in normal window */
#main-window[sizemode="normal"] #TabsToolbar {
padding-top: 0 !important;
margin-top: 2px !important;
}
/* reduce minimum tab height */
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
min-height: 24px !important;
}
#TabsToolbar #tabbrowser-tabs[overflow="true"] .tabbrowser-tab[pinned] {
min-height: 23px !important;
max-height: 23px !important;
}
/* size of + (new tab) button */
.tabs-newtab-button .toolbarbutton-icon{
min-width: 0px !important;
min-height: 0px !important;
width: 20px !important;
height: 20px !important;
margin: 0px !important;
margin-bottom: 0px !important;
padding: 1px !important;
} To reduce tab height you have to reduce the + button too. |
@Poonkraft |
@JonnyThree @import url(./css/toolbars/tabs_toolbar_adjustments.css); (or something else) line in the userChrome.css. Edit: /* make sure toolbar buttons do not increase toolbar height */
#TabsToolbar > toolbarpaletteitem,
#TabsToolbar > toolbarbutton {
min-height: unset !important;
padding: unset !important;
margin: unset !important;
}
#TabsToolbar > toolbarpaletteitem .toolbarbutton-icon,
#TabsToolbar > toolbarbutton .toolbarbutton-icon{
min-width: unset !important;
width: 24px !important;
} |
If a wiki exists you can clone and push to it, but theres no such thing as pull requests for wikis. Edit this page however describes the problem and suggests a workaround http://www.growingwiththeweb.com/2016/07/enabling-pull-requests-on-github-wikis.html IMO you can work on your wiki and if this project decides to host a wiki you can the clone it and copy your files manually from your wiki git directories to the project wiki on your local, commit and push changes to the main wiki. With enough care and attention the limitations are few, but still flexible enough despite the caveats. |
@Poonkraft edit: ultimate fix. needs also to set the "max-heigth": edit 2: |
Just popping in to say thanks for the toolbar text mode modifications. Works superbly now. Amazingly done! :) |
@JonnyThree |
@the-j0k3r @aolszowka @Lun0s #urlbar,
.searchbar-textbox {
margin: 1px !important;
min-height: 0px !important;
height: 24px !important;
}
#nav-bar .toolbarbutton-1 {
padding-top: 1px !important;
padding-bottom: 1px !important;
min-height: 0px !important;
height: 24px !important;
} @Random-github-name |
First of all, thanks for this project. I tried to look for the answer above, so my apologies if this has already been answered. |
Thank you so much @Aris-t2, this worked perfectly. I just changed both heights to 22 pixels and removed the padding on top of the navigation bar. Everything seems to be working correctly 👍 The only thing left would be resizing the Firefox button and that's it. Is that possible? |
@Aris-t2 - thank you for answering my silly question (and apologies for asking)! Somehow I managed to miss that in three passes skimming the README... |
Adding this to @MarkRH @radiotech1 |
Works fine now, also together with the background style. So I can delete my own hacked code. And, oh, something other was apparently wrong with the newtab button, not what I suggested. It's OK like it is now. I think I will use the other image for an addon, though. |
#3 (comment) - gray / silver for input find (
Always blue because not added other variation to project. |
Some more ideas:
#urlbar-container #pageActionButton {
height: 16px !important;
width: 22px !important;
padding: 0 4px !important;
margin: 0 -8px !important;
overflow: hidden !important;
transform: rotate(90deg);
} I also wanted it to move to second last position (another option?), i.e. after the star button, but before chronic dropmarker. I have both *) There are at least three of them. I use Reload button in Location bar simply because I thought I could use the coloured icons inside (that’s not true, there is no option, so I changed them by CSS).
|
#urlbar-container #pageActionButton {
-moz-box-ordinal-group: 101 !important;
-moz-padding-start: 2px !important;
-moz-padding-end: 2px !important;
-moz-margin-start: -6px !important;
-moz-margin-end: -8px !important;
transform: rotate(90deg);
}
|
I have uploaded userChrome.js tweaks to modify Scrollbars in Firefox 57+: https://github.com/Aris-t2/Scrollbars |
I recommend to use this project file package from release area. You can enable/disable settings inside userChrome.css including bookmarks_toolbar_multiple_lines.css. |
How do I edit the bookmarks_toolbar_multiple_lines.css to allow 3 rows of bookmarks? |
@Aris-t2 Regarding to updating to your latest releases, do I paste the latest version (i.e. all the files) in to my current chrome folder? While maintaining the my current setup? |
I started with rotation and then tested out how to get an icon taking less space around it. I actually didn’t think of/didn’t know these
Thank you, awesome.
And I am glad, that my ideas may be useful for other people, as well. |
I seriously suggest a diff program, see my answer in issue #64. I compare the existing installation with the update (zip files can be compared without unpacking). I copy updated and new files inside of the diff. I update |
@radiotech1 @kanade96 @Speravir #item:-moz-locale-dir(ltr) {margin-left: 10px} would need a counterpart #item:-moz-locale-dir(rtl) {margin-right: 10px} to affect the same padding. Both are still needed for some items especially, if you have to use right or left rules, but for margins and padding they introduced this:
There are even more rules like these, but I think you get the idea. |
Yes, and it’s obviously useful for published styles like here. But to another suggestion: In camp-firefox.de this was linked: Hide tab bar on firefox 57 when there is only one tab (from Benoit Averty). It could be added as another style, a link to Benoit’s gist as source attribution shouldn’t be that difficult in that style. ;-) Hmm, is this a tab or a toolbar style … When someone asks: The toolbar itself cannot be hidden without Javascript after hiding the single tab. |
There is no way to create a proper CSS script for that feature. I tried for years in CTR, but ended up with a very complex JavaScript to take care of all possible cases (Firefox/OS titlebar, menubar on/off, tabs on top on/off etc.). Sure, the code sort of works, if there is no "new tab" tab on tabs toolbar, but that is a deal breaker from my point of view. |
Maybe add import [GD], [F], [Q] |
OK, it was just a suggestion. For the recently created “menu right of app button“ there’s a small glitch: Apparently the menu bar has to be set to same height as the titlebar; now the whole window content – all bars and tab content – jump slightly upwards if the menubar is activated. Frankly I was for years a happy user of “Hide Caption Titlebar Plus” (or, I still am when using Fx 56) with (in most cases) full title in titlebar right of app button and flying in menu. In fact, I miss the full title at least as long the menu is hidden. (I know the config setting |
@userOperaFF
I think the hint in
|
Use e-mail to reply or show edditions other reply? |
@userOperaFF "[GD], [F], [Q] v3 create?" Is this supposed to mean something? I don't get it. @Speravir If its about that file, try replace its code with this (I will add these changes on next update): #main-window[tabsintitlebar][sizemode="normal"] #TabsToolbar,
#main-window[uidensity=compact][tabsintitlebar][sizemode="normal"] #TabsToolbar{
-moz-padding-start: 2px !important;
margin-top: 3px !important;
}
#main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="false"] ~ #TabsToolbar,
#main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="false"] ~ #TabsToolbar,
#main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar:not([inactive="true"]) ~ #TabsToolbar,
#main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #toolbar-menubar:not([inactive="true"]) ~ #TabsToolbar{
margin-top: 3px !important;
}
#main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
#main-window[uidensity=compact][tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar{
-moz-padding-start: 2px !important;
margin-top: 19px !important;
}
#main-window[tabsintitlebar][sizemode="normal"] #TabsToolbar .titlebar-placeholder[type="caption-buttons"]{
display: none !important;
} |
@KimmoK00 Then add this code to your userChrome.css or to your "my_userChrome.css" and import it inside main userChrome.css. #tabbrowser-tabs > .tabbrowser-arrowscrollbox,
.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
min-height: 21px !important;
}
#TabsToolbar #tabbrowser-tabs[overflow="true"] .tabbrowser-tab[pinned] {
min-height: 20px !important;
max-height: 2px !important;
}
#main-window[sizemode="normal"] #TabsToolbar {
margin-top: -8px !important;
}
#main-window[sizemode="maximized"] #TabsToolbar {
margin-top: -1px !important;
} Caution: this code will most likely break a few things and is therefore not compatible to some of this projects settings. |
This topic have same quantity reply as v1 - 😉
@Speravir qouted my first reply without edition - why (I can not find history changes (+ see diffs) reply without notifications via mail)? |
Continue here: #88 |
Continued from here #3
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 makes CSS code Firefox 57+ ready?
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: