0

Hide calendar?

Is there any way, perhaps using some CSS magic, to hide the Calendar button in the sidebar?

2replies Oldest first
  • Oldest first
  • Newest first
  • Active threads
  • Popular
    • Sean
    • Sean
    • 4 mths ago
    • Reported - view

    Hi Kent Signorini

    I was able to run this code in Trigger after open to hide the Calendar button...

    dialog("Calendar CSS Modifier", "<script>
        var styleSheet = document.styleSheets[2];
        styleSheet.insertRule('.nav-item.head.FastClickContainer_root[title=""Calendar""]{display:none}');
        var interval = setInterval(() => {
            var bt = document.querySelector('.nx-alert .nx-button-text');
            if (bt) {
                bt.click();
                clearInterval(interval);
            }
        });
    </script>", ["close"])
    Like
  • Whoo hoo! Thanks!

    Like
Like Follow
  • 4 mths agoLast active
  • 2Replies
  • 77Views
  • 2 Following