Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

change the background color of the tab bar in Australis?

  • 5 trả lời
  • 2 gặp vấn đề này
  • 32 lượt xem
  • Trả lời mới nhất được viết bởi user1081679

more options

how to remove this color : http://imageshack.com/a/img842/2021/oj71.png from tabs bg I'm using windows 8 theme in win 7 so i like the bg to be blue as the theme like real windows 8.

i don't know how to use CSS

another question : how to change those locked menu icon and Kasper icons on the right http://imageshack.com/a/img842/2021/oj71.png

Thanks

how to remove this color : http://imageshack.com/a/img842/2021/oj71.png from tabs bg I'm using windows 8 theme in win 7 so i like the bg to be blue as the theme like real windows 8. i don't know how to use CSS another question : how to change those locked menu icon and Kasper icons on the right http://imageshack.com/a/img842/2021/oj71.png Thanks

Giải pháp được chọn

islamfarid wrote:

i don't know how to use CSS

You can apply user styles using either the Stylish add-on (which I recommend), or the userChrome.css file.

  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#TabsToolbar:not(:-moz-lwtheme)::after {
  opacity: 0 !important;
}

tab[selected="true"] {
  color: black !important;
  text-shadow: none !important;
}

tab {
  color: white !important;
  text-shadow:0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 3px #000 !important;
}

#main-window .tabs-newtab-button,
#main-window #TabsToolbar #new-tab-button > .toolbarbutton-icon {
  list-style-image: url("chrome://browser/skin/tabbrowser/newtab-inverted.png") !important;
}

#main-window #alltabs-button[type="menu"],
#main-window .toolbarbutton-1 .dropmarker-icon {
  list-style-image: url("chrome://browser/skin/toolbarbutton-dropdown-arrow-inverted.png") !important;
}

#main-window #tabview-button {
  list-style-image: url("chrome://browser/skin/tabview/tabview-inverted.png") !important;
}

Credits: I just replaced ::before with ::after to make the style work.

I don't know how to change the position of those icons, since I don't have those add-ons. You'd have to get their id with the DOM Inspector add-on, then change their position with a user style like this (this example moves the ≡ Menu Button to the left edge of the window):


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PanelUI-button { -moz-box-ordinal-group: 0 !important; }

Đọc câu trả lời này trong ngữ cảnh 👍 3

Tất cả các câu trả lời (5)

more options

Hello,

The color of the windows you need change in the configurations of your system, the icon you can use the customize tab remove it.

Change color of the window:

more options

Thanks Diego, Changing the theme color didn't solve it this gray color stuck on the background and I'm using win 7 but with win 8 blue custom theme. I want it to be like this like real win 8 http://img.creativemark.co.uk/uploads/images/082/16082/img3File.png

Menu icon and kasper icons are locked cannot change them by Customize toolbars way.

any help?

more options

islamfarid:

As far as I know, that's a mockup used for showing the features of Firefox 29. I don't think you can actually get it that transparent. I can't do that either.

more options

Giải pháp được chọn

islamfarid wrote:

i don't know how to use CSS

You can apply user styles using either the Stylish add-on (which I recommend), or the userChrome.css file.

  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#TabsToolbar:not(:-moz-lwtheme)::after {
  opacity: 0 !important;
}

tab[selected="true"] {
  color: black !important;
  text-shadow: none !important;
}

tab {
  color: white !important;
  text-shadow:0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 3px #000 !important;
}

#main-window .tabs-newtab-button,
#main-window #TabsToolbar #new-tab-button > .toolbarbutton-icon {
  list-style-image: url("chrome://browser/skin/tabbrowser/newtab-inverted.png") !important;
}

#main-window #alltabs-button[type="menu"],
#main-window .toolbarbutton-1 .dropmarker-icon {
  list-style-image: url("chrome://browser/skin/toolbarbutton-dropdown-arrow-inverted.png") !important;
}

#main-window #tabview-button {
  list-style-image: url("chrome://browser/skin/tabview/tabview-inverted.png") !important;
}

Credits: I just replaced ::before with ::after to make the style work.

I don't know how to change the position of those icons, since I don't have those add-ons. You'd have to get their id with the DOM Inspector add-on, then change their position with a user style like this (this example moves the ≡ Menu Button to the left edge of the window):


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PanelUI-button { -moz-box-ordinal-group: 0 !important; }

more options

Gingerbread Man THANKS A LOT for your help you made my day :) best wishes for you,

Thanks all either :)