From 8f8ed0f160df640907feb7e83069ec26c6276c14 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sat, 3 Aug 2024 10:16:48 +0300 Subject: [PATCH] iconized context menus: scale down few icons Some icons have 20px intrinsic size so we scale them down a bit --- chrome/iconized_content_context_menu.css | 4 ++++ chrome/iconized_places_context_menu.css | 1 + 2 files changed, 5 insertions(+) diff --git a/chrome/iconized_content_context_menu.css b/chrome/iconized_content_context_menu.css index 1a5753a..994fd33 100644 --- a/chrome/iconized_content_context_menu.css +++ b/chrome/iconized_content_context_menu.css @@ -93,6 +93,7 @@ See the above repository for updates as well as full license text. */ } #use-relay-mask::before{ content: url("chrome://browser/skin/preferences/relay-logo.svg"); + transform: scale(0.85); } #context-copy::before, #context-pdfjs-copy::before{ @@ -127,9 +128,11 @@ See the above repository for updates as well as full license text. */ } #context-media-mute::before{ content: url("chrome://global/skin/media/audio-muted.svg"); + transform: scale(0.85); } #context-media-unmute::before{ content: url("chrome://global/skin/media/audio.svg"); + transform: scale(0.85); } #context-media-hidecontrols::before, #context-media-showcontrols::before{ @@ -170,6 +173,7 @@ See the above repository for updates as well as full license text. */ #context-pdfjs-selectall::before, #context-pdfjs-highlight-selection::before{ content: url("chrome://global/skin/reader/character-spacing-20.svg"); + transform: scale(0.85); } #context-reveal-password::before{ -moz-context-properties: fill,stroke; diff --git a/chrome/iconized_places_context_menu.css b/chrome/iconized_places_context_menu.css index b9a79c6..e9e5468 100644 --- a/chrome/iconized_places_context_menu.css +++ b/chrome/iconized_places_context_menu.css @@ -93,4 +93,5 @@ See the above repository for updates as well as full license text. */ } #placesContext_new\:separator::before{ content: url("chrome://global/skin/reader/content-width-20.svg"); + transform: scale(0.85); } \ No newline at end of file