feat: show/hide desktop icons option in context menu
Docker Image CI / build-and-push-image (push) Has been cancelled
Maintain Release Merge PR / update-release-pr (push) Has been cancelled
release-please / release-please (push) Has been cancelled
test / test (18.x) (push) Has been cancelled
test / test (20.x) (push) Has been cancelled
test / test (22.x) (push) Has been cancelled

* feat: hide icons/show icons feature added to the right-click/secondary click menu on the desktop

* Fix: Changes made to the hide/show desktop icons feature after receiving feedback in the first pull request

* CSS rule added to static CSS file instead of being implemented dynamically
This commit is contained in:
hisham-maarraoui
2025-03-21 13:23:17 -07:00
committed by GitHub
parent 868ef4e5a4
commit b0efff7a4f
2 changed files with 391 additions and 337 deletions
File diff suppressed because it is too large Load Diff
+5
View File
@@ -4718,4 +4718,9 @@ fieldset[name=number-code] {
}
.device-phone .window-body.item-container * {
touch-action: pan-y;
}
/* Hide desktop icons when the desktop-icons-hidden class is applied */
.desktop.item-container.desktop-icons-hidden > .item {
visibility: hidden;
}