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

userChrome.css: notification-animation

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

more options

Version: 66.0.4 (64-bit) fedora -1.0 (linux fedora 28) I can't get following to work: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

@-moz-document url("chrome://global/content/alerts/alert.xul") {

       #alertBox[animate] {
               animation-duration: 999s !important;
       }

}

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

  • { animation-duration: 999s !important;}

The file is correctly put under: .mozilla/firefox/0b1lldqo.default-1468459052444/chrome and named: userChrome.css

notify-send -t 440000 "hello"  : works just fine.

Thanks a lot, appreciate any help.

MR

Version: 66.0.4 (64-bit) fedora -1.0 (linux fedora 28) I can't get following to work: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @-moz-document url("chrome://global/content/alerts/alert.xul") { #alertBox[animate] { animation-duration: 999s !important; } } I also tried: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); * { animation-duration: 999s !important;} The file is correctly put under: .mozilla/firefox/0b1lldqo.default-1468459052444/chrome and named: userChrome.css notify-send -t 440000 "hello" : works just fine. Thanks a lot, appreciate any help. MR

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

more options

What do you want to achieve with this code in userChrome.css ?

Do you want the notification to stay on the window for a longer time?

more options

Yes, I want it to stay for longer, or until I click. Thanks.