• Thanks for the plugin!

    I am working on a laptop with a comparably small screen and use the trackpad to shift the dashboard up and down. When the pointer is on the calendar, it rapidly scrolls to another time frame instead of moving the page. I would find it much easier to turn off scrolling by mouse wheel (or trackpad with two fingers) and navigate only by clicking.

    https://www.ads-software.com/plugins/editorial-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
  • +1 for disabling mouse scrolling!

    Yes, I think also the scrolling effect is not user friendly. I’m working on iMac 27″ and with small scroll down or up I’m few months earlier or later. It makes very difficult to control the calendar. Would be great to have an option, where the user can disable the scrolling feature.

    Best regards,
    Damian

    +1.
    I agree, not user friendly, makes it tricky to work on the page.

    This workaround improves the usability on my screen resolution. It simply shrinks the calendar so to have more space to scroll the page.

    /* Tinkering Editorial Calendar CSS
    https://www.ads-software.com/plugins/editorial-calendar/
    -------------------------------------------*/
    function shrink_editorial_calendar() {
       echo '<style type="text/css">
            #edcal_scrollable
                {
                    background-color: white;
                    height: 640px !important;
                    overflow-x: hidden;
                    padding-left: 6px;
                    padding-top: 4px;
                    -moz-border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -khtml-border-radius: 5px;
                    border-radius: 5px;
                    cursor: context-menu;
                }
            #cal_cont
                {
                    background-color: silver;
                    height: 710px;
                    overflow-x: hidden;
                    padding: 0px 80px;
                }
        </style>';
    }
    add_action('admin_head', 'shrink_editorial_calendar');
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Feature request: Option to disable mouse scrolling’ is closed to new replies.