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

Awesome Bar looks different in 16.01

  • 12 trả lời
  • 6 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi lalalei2001

more options

Since upgrading from 15.0.1 to 16.01, i noticed the Awesome Bar looks larger and some things are highlighted. This is distracting to my eyes. Is there an add-on fix or rollback option?

Since upgrading from 15.0.1 to 16.01, i noticed the Awesome Bar looks larger and some things are highlighted. This is distracting to my eyes. Is there an add-on fix or rollback option?

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

Try to add this code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder

You need to create the chrome folder (lowercase) in the profile folder with the random name (xxxxxxxx.default) and place a file userChrome.css in it.
Make sure that you select "All files" and not "Text files" when you use Notepad or another editor to create and save the file.
Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file.


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

.autocomplete-richlistitem { padding-top:2px!important; padding-bottom:2px !important; }
.autocomplete-richlistitem:not(:first-child) { border-top: 1px solid #ddd  !important; }
.autocomplete-richlistitem[selected="true"] { border-top-color:transparent !important; }

*|span.ac-emphasize-text {
 box-shadow: inset 0 0 1px 1px rgba(0,255,255,1)!important;
 background-color: rgba(0,255,255,0.2)!important;
}
Đọc câu trả lời này trong ngữ cảnh 👍 1

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

more options

It's still different in 16.02.

more options

There shouldn't be any differences between Firefox 15 and 16

Can you attach a screenshot to illustrate what you want to change?

Use a compressed image type like PNG or JPG to save the screenshot.


Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).

  • Do not click the Reset button on the Safe mode start window or otherwise make changes.
more options

I don't have Firefox 15 and can't get a screenshot because of that =\ But it appears slightly smaller than in 15, and highlights letters in the URL when i type them in, which hurts my eyes a bit.

more options

Are you referring to the auto-fill feature?

See "Prevent Firefox from automatically completing URLs":

You can set the browser.urlbar.formatting.enabled pref to false on the about:config page to disable the highlighting of the domain and see the full URL more clearly.

You can set the browser.urlbar.trimURLs pref to false on the about:config page to see the http: protocol on the location bar and in the pop-up if you hover a link.

more options

No, i mean how the Awesome Bar organized sites by the number of times I visited them.

more options

Do any of these threads help or do you still mean something else?

Được chỉnh sửa bởi cor-el vào

more options

That's it! I don't know any CCS though.

more options

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

Try to add this code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder

You need to create the chrome folder (lowercase) in the profile folder with the random name (xxxxxxxx.default) and place a file userChrome.css in it.
Make sure that you select "All files" and not "Text files" when you use Notepad or another editor to create and save the file.
Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file.


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

.autocomplete-richlistitem { padding-top:2px!important; padding-bottom:2px !important; }
.autocomplete-richlistitem:not(:first-child) { border-top: 1px solid #ddd  !important; }
.autocomplete-richlistitem[selected="true"] { border-top-color:transparent !important; }

*|span.ac-emphasize-text {
 box-shadow: inset 0 0 1px 1px rgba(0,255,255,1)!important;
 background-color: rgba(0,255,255,0.2)!important;
}
more options

Ok, let me see if that works!

more options

It worked! ^^ it highlighted some text in light blue which i didn't like but i figured out how to get rid of it =3

more options

You're welcome.

Yes, you can leave out that last bit or change it to this code if you want to disable the bold highlighting.

*|span.ac-emphasize-text {
 box-shadow: none !important;
}

Được chỉnh sửa bởi cor-el vào

more options

Is there a way to change it back to the bold highlight like in firefox 15? In 16 it's a light gray box.