Fix: User Contents - "Heads up!" aligned #689

This commit is contained in:
alstjr7375 2023-06-09 21:57:30 +09:00
parent aaf9a1779e
commit 60fcecb8b1
3 changed files with 14 additions and 0 deletions

6
css/leptonContent.css generated
View file

@ -1,5 +1,11 @@
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
/** Compatibility *************************************************************/
@-moz-document url-prefix("about:preferences") {
.content-blocking-warning.info-box-container > hbox > .content-blocking-warning-image {
margin-inline-start: -12px !important;
}
}
/** Video player **************************************************************/
/* Control Bar Size */
@supports -moz-bool-pref("userContent.player.size") {

View file

@ -0,0 +1,5 @@
@include moz-document(url-prefix "about:preferences") {
.content-blocking-warning.info-box-container > hbox > .content-blocking-warning-image {
margin-inline-start: -12px !important;
}
}

View file

@ -11,6 +11,9 @@
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
/** Compatibility *************************************************************/
@import "contents/compatibility";
/** Video player **************************************************************/
@import "contents/video_player";