Recommended Posts

Oi lads. I registered to ask if any of you maybe knew how to make the tabs (and new tab button) square? I really hate rounded things.

Also would appreciate if any of you knew how to make the menubutton square too?

Last thing, is it possible to make this not-rounded when non-maximized?:

grl8q.png

I'm so damn square, huh?

Anyway, thanks in advance!

Oi lads. I registered to ask if any of you maybe knew how to make the tabs (and new tab button) square? I really hate rounded things.

Also would appreciate if any of you knew how to make the menubutton square too?

Last thing, is it possible to make this not-rounded when non-maximized?:

I'm so damn square, huh?

Anyway, thanks in advance!

#appmenu-button,
#nav-bar {
  border-radius: 0 !important;
}

The tabs are images so you can't use CSS to do it. You need to either remake the images, or recreate them in CSS.

#appmenu-button,
#nav-bar {
  border-radius: 0 !important;
}

The tabs are images so you can't use CSS to do it. You need to either remake the images, or recreate them in CSS.

Thanks for the menubutton!

Regarding tabs.. I see.. Where would i get the default images, so i could edit them and then how would i replace the original ones, with mine?

Thanks,

Thanks for the menubutton!

Regarding tabs.. I see.. Where would i get the default images, so i could edit them and then how would i replace the original ones, with mine?

Thanks,

The image is located here: chrome://browser/skin/tabbrowser/tab.png, to use it:

.tabbrowser-tab,
.tabs-newtab-button {
  -moz-border-image: url(pathtoimage.png) 4 5 3 6 / 4px 5px 3px 6px repeat stretch !important;
  border-radius: 10px 8px 0 0 !important;
}

You will also need to tweak the border-radius values too.

I'm on the latest Minefield (Mozilla/5.0 (Windows NT 5.1; rv:2.0b13pre) Gecko/20110226 Firefox/4.0b13pre) and I have a slight problem :(

I had tweaked the close buttons on tabs, both active and inactive, using this code:

.tabbrowser-tab[selected="true"]
.tab-close-button {background: -moz-radial-gradient(white, maroon);
	-moz-border-radius-topleft: 6px !important;
	-moz-border-radius-topright: 6px !important;
	-moz-border-radius-bottomleft: 6px !important;
	-moz-border-radius-bottomright: 6px !important;
	}
.tabbrowser-tab:not([selected="true"])
.tab-close-button {background: -moz-radial-gradient(black, white);
	-moz-border-radius-topleft: 6px !important;
	-moz-border-radius-topright: 6px !important;
	-moz-border-radius-bottomleft: 6px !important;
	-moz-border-radius-bottomright: 6px !important;
	}

This had worked for several recent Minefield updates. Now, I'm seeing the close button (as I styled it) only on the active tab and nothing at all on the inactive tabs even if I hover over where the close button should be. I would very much like to have the close button visible on inactive tabs as well.

Is it possible?

Hm, guys, does your... favicon-holder-thing also looks like mine does, on the pic below (the left side)?

I was wondering if there was some way to make it like the mockup i made on the right side? or maybe it's something we just can expect Mozilla to fix soon?

Ge80H.png

I'm on the latest Minefield (Mozilla/5.0 (Windows NT 5.1; rv:2.0b13pre) Gecko/20110227 Firefox/4.0b13pre) and I have a slight problem :(

I had tweaked the close buttons on tabs, both active and inactive, using this code:

.tabbrowser-tab[selected="true"]
.tab-close-button {background: -moz-radial-gradient(white, maroon);
	-moz-border-radius-topleft: 6px !important;
	-moz-border-radius-topright: 6px !important;
	-moz-border-radius-bottomleft: 6px !important;
	-moz-border-radius-bottomright: 6px !important;
	}
.tabbrowser-tab:not([selected="true"])
.tab-close-button {background: -moz-radial-gradient(black, white);
	-moz-border-radius-topleft: 6px !important;
	-moz-border-radius-topright: 6px !important;
	-moz-border-radius-bottomleft: 6px !important;
	-moz-border-radius-bottomright: 6px !important;
	}

This had worked for several recent Minefield updates. Now, I'm seeing the close button (as I styled it) only on the active tab and nothing at all on the inactive tabs even if I hover over where the close button should be. I would very much like to have the close button visible on inactive tabs as well.

Is it possible?

I wonder if it has been removed in the latest Minefield? In browser.css, there's no mention of ":not([selected=true])" in what I think is the relevant code:

/* Tab close button */
.tab-close-button {
  -moz-appearance: none;
  -moz-image-region: rect(0, 64px, 16px, 48px);
  border: none;
  padding: 0px;
  list-style-image: url("chrome://global/skin/icons/close.png");
}

.tab-close-button:-moz-system-metric(touch-enabled) {
  -moz-transform: scale(1.2);
}

.tab-close-button:hover,
.tab-close-button:hover[selected="true"] {
  -moz-image-region: rect(0, 32px, 16px, 16px);
}

.tab-close-button:hover:active,
.tab-close-button:hover:active[selected="true"] {
  -moz-image-region: rect(0, 48px, 16px, 32px);
}

.tab-close-button[selected="true"] {
  -moz-image-region: rect(0, 16px, 16px, 0);
}

.tab-close-button:focus {
  outline: none !important;
}

I'm on the latest Minefield (Mozilla/5.0 (Windows NT 5.1; rv:2.0b13pre) Gecko/20110226 Firefox/4.0b13pre) and I have a slight problem :(

This had worked for several recent Minefield updates. Now, I'm seeing the close button (as I styled it) only on the active tab and nothing at all on the inactive tabs even if I hover over where the close button should be. I would very much like to have the close button visible on inactive tabs as well.

Is it possible?

.tabbrowser-tab:not([selected="true"]):not([pinned]) .tab-close-button {
        display: -moz-box !important;
}

I was wondering if there was some way to make it like the mockup i made on the right side?

try something like this:

#identity-box {
margin-top: -2px !important;
margin-bottom: -2px !important;
margin-left: -2px !important;
border-radius:0 !important;
}

.tabbrowser-tab:not([selected="true"]):not([pinned]) .tab-close-button {
        display: -moz-box !important;
}

try something like this:

#identity-box {
margin-top: -2px !important;
margin-bottom: -2px !important;
margin-left: -2px !important;
border-radius:0 !important;
}

Brilliant Foxxy, much better! All it needs is the border on the right side, if its possible ,that'd be really great!

Thanks.

BTW, is it possible to edit the bagground that the titlebar uses whenever aero is disabled? (basic titlebar)

Brilliant Foxxy, much better! All it needs is the border on the right side, if its possible ,that'd be really great!

BTW, is it possible to edit the bagground that the titlebar uses whenever aero is disabled? (basic titlebar)

#identity-box {
margin-top: -2px !important;
margin-bottom: -2px !important;
margin-left: -2px !important;
border-radius:0 !important;
border-right: 1px solid rgba(0, 0, 0, 0.32)!important;
}

not sure about the titlebar

can I do this with modified userchrome.css?

https://addons.mozilla.org/en-US/firefox/addon/icon-effects/

This should take care of most of them.

.tabbrowser-tab .tab-content > image,
toolbarbutton > image {
  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
}

This should take care of most of them.

.tabbrowser-tab .tab-content > image,
toolbarbutton > image {
  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
}

almost perfect

thanks!

edit:

bookmark sidebar icons and location bar icons still color

almost perfect

thanks!

edit:

bookmark sidebar icons and location bar icons still color

Can't seem to get it to just effect the treechildren icons (sidebar,library), so the whole row is greyscale.

.tabbrowser-tab .tab-content > image,
toolbarbutton > image,
#urlbar-icons > image,
#identity-box image,
treechildren {
  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
}

Ok this one may be a challenge for you all. How do I move my whole addonbar while using the Barlesque add-on to the top left hand corner of the screen right below my Navigation toolbar please? I know I could just move the icons to top to a totally new toolbar but do not want that. The bar would be to big and not work like it does in Barlesque.

Oh yeah I forgot one thing how do I add the find bar to the top right hand corner as well ? It is not part of the addon bar but I am sure everyone here knows that already. Was just making sure is all. No need to rush either I am trying some new things as we speak. Thanks again.

#identity-box {
margin-top: -2px !important;
margin-bottom: -2px !important;
margin-left: -2px !important;
border-radius:0 !important;
border-right: 1px solid rgba(0, 0, 0, 0.32)!important;
}

not sure about the titlebar

Almost there ;) but it needs radius on the left side, bottom left & top left.

Can't seem to get it to just effect the treechildren icons (sidebar,library), so the whole row is greyscale.

.tabbrowser-tab .tab-content > image,
toolbarbutton > image,
#urlbar-icons > image,
#identity-box image,
treechildren {
  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale");
}

thanks :)

I changed the background color of the app button, but I want to be purple (default) when in private mode. What do I need to change?

#main-window[sizemode="maximized"] #appmenu-button {
background: -moz-linear-gradient(top, rgba(58,127,197,1), rgba(47,119,189,1), rgba(0,58,229,1)) !important;

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • I really hope the author's health is ok. Squirreling away a official backup of this software. Looks like the internet archive already cached a copy as well - https://web.archive.org/web/20...ldbit-soft.fi/software.html
    • AMD is supported out of the box in linux because of their open source driver. Nvidia does not. All my systems are amd and all of them work nicely on linux arch without doing anything.
    • Never had a problem with TPM and started using that many years ago in Win10. Through several motherboards and OS versions, it just does what it does without complaint. My games library doesn't even know it's there. Secure boot does a lot more than support anti-cheat, as it came along long before anti-cheat software. I've used it religiously since before I started using TPM, and I always liked it for being able to nullify virus contagions that try their best to come in underneath the firmware during boot, so that the OS doesn't see them, etc. That is its purpose, imo. I'll never understand why people who elect to use another OS feel compelled to run down Windows... I guess they need to do that to feel secure about their choices? I run Windows because it supports all the software (including games) natively that I want to buy, and I've never had to run down another OS to make me feel better about it. (Although it's certainly possible to do that, of course...) Win10 is on a ventilator atm, and Win11 is very close to being free, and I finally got to stop running StartAllBack as I moved to the Experimental/Dev channel and my 26300.8553 build supports the moveable taskbar and it's running fine at the top of the screen! Finally, my last major dislike of Win11 is being rectified! So, I'm not at all surprised to see Win11's share of the Steam survey hitting 70%.
    • I can answer about the Linux bit. I only used AMD GPUs. I currently have a 9060XT (8GB) that fits my needs, I'm not a gamer, so I don't need that much GDDR. But lately, NVIDIA has grown a lot in the recent years. Oh, the horrors of NVIDIA drivers not working. But they have been getting better. I know a lot of members onm here that are running cachyOS and other distros, and are fine with a 4090/5090 variants. Really, though, I would stick with AMD variants.
    • Everything they say you can already do yourself on the registry by changing some things.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      71
    4. 4
      +Edouard
      69
    5. 5
      FloatingFatMan
      68
  • Tell a friend

    Love Neowin? Tell a friend!