Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Floorp PWA icons #836

Merged
merged 2 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 22 additions & 10 deletions css/leptonChrome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions css/leptonChromeESR.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 13 additions & 5 deletions src/icons/fork_browsers/_floorp.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Page Action button. Not always visible
#ssbPageAction-image {
list-style-image: url("chrome://browser/skin/install-ssb.svg");
list-style-image: url("../icons/pwa-install.svg");
&[open-ssb="true"] {
// Page Action button. If page has been already installed or can be install PWA
list-style-image: url("chrome://browser/skin/install-ssb.svg");
list-style-image: url("../icons/pwa-launch.svg");
}
}

Expand All @@ -18,15 +18,15 @@

// Panel UI top button
#appMenu-ssb-button {
list-style-image: url("chrome://browser/skin/install-ssb.svg");
list-style-image: url("../icons/pwa-manage.svg");
}

// Panel UI subView button for install ssb
#appMenu-install-or-open-ssb-current-page-button {
list-style-image: url("chrome://browser/skin/install-ssb.svg");
list-style-image: url("../icons/pwa-install.svg");
&[open-ssb="true"] {
// Panel UI subView button for open ssb window
list-style-image: url("chrome://browser/skin/install-ssb.svg");
list-style-image: url("../icons/pwa-launch.svg");
}
}
}
Expand Down Expand Up @@ -85,4 +85,12 @@
#deleteWebpanelMenu {
--menuitem-image: url("chrome://global/skin/icons/delete.svg");
}

// PWA Context Menu
#run-ssb-contextmenu {
--menuitem-image: url("../icons/pwa-launch.svg");
}
#uninstall-ssb-contextmenu {
--menuitem-image: url("../icons/pwa-remove.svg");
}
}