how to change media player page

Discussion of general topics about Seamonkey
Post Reply
Justinh
Posts: 381
Joined: November 13th, 2004, 7:03 pm
Location: Alabama

how to change media player page

Post by Justinh »

I'd like to change a CSS rule on the built-in media player page. Is this possible?
morat
Posts: 6437
Joined: February 3rd, 2009, 6:29 pm

Re: how to change media player page

Post by morat »

Are you talking about the video controls?

HTML5 Video
http://www.w3schools.com/html/html5_video.asp

You would need the CSS applied as an agent sheet.

Reference
view-source:chrome://global/skin/media/videocontrols.css

Similar thread: http://forums.mozillazine.org/viewtopic ... &t=3024570
Justinh
Posts: 381
Joined: November 13th, 2004, 7:03 pm
Location: Alabama

Re: how to change media player page

Post by Justinh »

Exactly. I can't find the CSS that the sheet uses.
morat
Posts: 6437
Joined: February 3rd, 2009, 6:29 pm

Re: how to change media player page

Post by morat »

I don't know how to apply CSS as an agent sheet in SeaMonkey.

I can apply CSS as an agent sheet using an autoconfig hack in Firefox.

userChrome.js hacks
http://forums.mozillazine.org/viewtopic ... #p14854175

* <profile directory>\chrome\styles.as.css

Code: Select all

.controlBar {
  background-color: orange !important;
  color: red !important;
}
The style works for me in Firefox.

Reference
http://searchfox.org/mozilla-esr60/sear ... ntrols.css
http://searchfox.org/mozilla-esr60/sour ... ersion.txt
Justinh
Posts: 381
Joined: November 13th, 2004, 7:03 pm
Location: Alabama

Re: how to change media player page

Post by Justinh »

Thanks.
Post Reply