diff --git a/css/leptonContent.css b/css/leptonContent.css index ac3efc2a..1ef6004a 100644 --- a/css/leptonContent.css +++ b/css/leptonContent.css @@ -2222,6 +2222,13 @@ background-color: var(--in-content-box-background-odd); } } + /*= about:processes ==========================================================*/ + @-moz-document url-prefix("about:processes") { + td.type.favicon[style*='background-image: url("chrome://global/skin/icons/link.svg");'] + { + background-image: url("../icons/link.svg") !important; + } + } /*= chrome://browser/content/places/places.xhtml =============================*/ @-moz-document url("chrome://browser/content/places/places.xhtml") { @@ -5712,6 +5719,7 @@ /*= about:checkerboard =======================================================*/ /*= about:memory =============================================================*/ /*= about:preferences ========================================================*/ + /*= about:processes ==========================================================*/ /*= chrome://browser/content/places/places.xhtml =============================*/ } @media (-moz-bool-pref: "userContent.page.proton") and (-moz-bool-pref: "userContent.page.field_border") and (prefers-reduced-motion: no-preference) { @@ -5875,6 +5883,14 @@ } } } +@media (-moz-bool-pref: "userContent.page.proton") { + @-moz-document url-prefix("about:processes") { + td.type.favicon[style*='background-image: url("chrome://global/skin/icons/link.svg");'] + { + background-image: url("../icons/link.svg") !important; + } + } +} @media (-moz-bool-pref: "userContent.page.proton") { @-moz-document url("chrome://browser/content/places/places.xhtml") { diff --git a/css/leptonContentESR.css b/css/leptonContentESR.css index b36bcb12..fd6c0486 100644 --- a/css/leptonContentESR.css +++ b/css/leptonContentESR.css @@ -2225,6 +2225,13 @@ background-color: var(--in-content-box-background-odd); } } + /*= about:processes ==========================================================*/ + @-moz-document url-prefix("about:processes") { + td.type.favicon[style*='background-image: url("chrome://global/skin/icons/link.svg");'] + { + background-image: url("../icons/link.svg") !important; + } + } /*= chrome://browser/content/places/places.xhtml =============================*/ @-moz-document url("chrome://browser/content/places/places.xhtml") { diff --git a/src/contents/_proton_contents.scss b/src/contents/_proton_contents.scss index cefc4d68..2a06c7a6 100644 --- a/src/contents/_proton_contents.scss +++ b/src/contents/_proton_contents.scss @@ -29,5 +29,8 @@ /*= about:preferences ========================================================*/ @import "proton_contents/about_preferences"; +/*= about:processes ==========================================================*/ +@import "proton_contents/about_processes"; + /*= chrome://browser/content/places/places.xhtml =============================*/ @import "../library/contents"; diff --git a/src/contents/proton_contents/_about_processes.scss b/src/contents/proton_contents/_about_processes.scss new file mode 100644 index 00000000..0efd5963 --- /dev/null +++ b/src/contents/proton_contents/_about_processes.scss @@ -0,0 +1,5 @@ +@include moz-document(url-prefix "about:processes") { + td.type.favicon[style*='background-image: url("chrome://global/skin/icons/link.svg");'] { + background-image: url("../icons/link.svg") !important; + } +}