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

User Chrome hide this "browser-bottombox" in full screen.

  • 3 trả lời
  • 0 gặp vấn đề này
  • 27 lượt xem
  • Trả lời mới nhất được viết bởi marc.verbeelen

more options

Hello everybody.

I have created the following rule in user chrome:

/* Brings Back The Original Statusbar At The Bottom Of The Screen */

  1. browser-bottombox { height: 20px; border-top: solid 1px #CCC;}

I'm really happy with this, except for the fact that it is visible all the time, so also in full screen.

Q: can I put a command in front so this hides in full screen? Been looking, trying for ages now.

Many THANKS for all your help!

Hello everybody. I have created the following rule in user chrome: '''''/* Brings Back The Original Statusbar At The Bottom Of The Screen */ #browser-bottombox { height: 20px; border-top: solid 1px #CCC;}''''' I'm really happy with this, except for the fact that it is visible all the time, so also in full screen. Q: can I put a command in front so this hides in full screen? Been looking, trying for ages now. Many THANKS for all your help!

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

more options

Try this code in userChrome.css:

#main-window[inFullscreen="true"] #statuspanel-label {opacity: 0 !important;}

OK, Firefox 92 still has #browser-bottombox, so that would be this selector:

#main-window[inFullscreen="true"] #browser-bottombox {}

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

more options

Hi,

Many Thx for your answer, and so fast too :-)

Unfortunately it isn't working it's still visible in full screen mode.

This is the line I've added to my css file, exactly, did copy and paste.

  1. main-window[inFullscreen="true"] #browser-bottombox {opacity: 0 !important;}

Any other ideas? Many THANKS!

more options

Hi All,

Problem solved, I had to remove the following line from the css file. ""@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");""

Thanks!