Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Global Disable Token Action Macros

Score + 2
June 27 (4 weeks ago)

DM here - I have a lot of Macros set up for Token Action. I also have regularly used ones in the Macro toolbar. This clutters the screen and leads to inadvertent clicking of Macros depending on where the token is on the screen. It would be nice to have a way to disable or hide the Token Action Macros when I'm prepping.

Alternatively, could the Macro toolbar tile the Macros like the Token Action does rather than a scroll bar that's tough to pick up and slide?

June 27 (4 weeks ago)

My macro bar is also quite crowded and I too have problems scrolling it up and down. I've use the Stylus browser add-on with the following script to reduce the size of the buttons so they all fit on my screen without scrolling:



/*macro quickbar */
#macrobar {
  height: 4.0em !important;
  width: 92% !important;
  background-color: rgba(0, 0, 0, 0.44) !important;
  text-align: left !important;
  margin-left: 0px !important;
}
div.macrobox button.btn {
    padding: 0 4px 0 4px;
    font-size: 0.8rem;
    line-height: 1.0rem;
    margin: 0px 0 2px 0;
}
#macrobar_macros {
  white-space: normal !important;
  margin-left: 1% !important;
  margin-right: 1% !important;
  padding-bottom: 0px !important;
}
#macrobar .macrobox {
    margin: 1px 5px 1px 5px ;
}
#macrobar div.macrobox:hover, #macrobar div.macrobox.ui-sortable-helper {
    padding-right: 12px;
    margin-right: -7px;
    border-radius: 3px;
    background-color: #999;
    cursor: move;
}
/* ==UserStyle==
@name           app.roll20.net/editor/ - Mar 2024
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    A new userstyle
@author         Me
==/UserStyle== */
@-moz-document url-prefix("https://app.roll20.net/editor/") {
    /* Insert code here... */
}
June 27 (4 weeks ago)

Thanks Rick! I'll check it out