This style enhances the default roll template used by Roll20. There are many similarities, notably in-line links, but this has broader applicability across games, and is simple enough to allow some customization. This style also makes the template wider without overlapping the "Speaking As" identifier, and enlarges the righthand column if nothing is in the left hand column, allowing the user to take more advantage of space when labels aren't needed.
Roll20 Default Roll Template Enhancement by keithcurtis1
Imported and mirrored from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/177732.user.css
Details
Authorkeithcurtis1
LicenseNO-REDISTRIBUTION
Categoryroll20
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Roll20 Default Roll Template Enhancement
@namespace USO Archive
@author Keith Curtis
@description `This style enhances the default roll template used by Roll20. There are many similarities, notably in-line links, but this has broader applicability across games, and is simple enough to allow some customization. This style also makes the template wider without overlapping the "Speaking As" identifier, and enlarges the righthand column if nothing is in the left hand column, allowing the user to take more advantage of space when labels aren't needed.`
@version 20191127.17.57
@license NO-REDISTRIBUTION
@preprocessor uso
==/UserStyle== */
@-moz-document domain("app.roll20.net") {
/*Re-styles buttons into text links*/
.textchatcontainer a[href^="~"] {
background-color: transparent;
padding: 0px;
color: #ce0f69;
display: inline-block;
border: none;
}
/*Enlarges Righthand Column when possible*/
.sheet-rolltemplate-default td:first-child {
font-weight: bold;
text-align: right;
min-width: 0px;
padding-right: 5px;
}
/*Recolors Header*/
.sheet-rolltemplate-default caption {
background-color: #333;
color: #eee;
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 1.1em;
padding: 1px;
font-weight: bold;
}
/*The following two blocks control size and position*/
.sheet-rolltemplate-default td {
padding: 1px;
line-height: 1.4em;
vertical-align: top;
}
.sheet-rolltemplate-default {
margin-left: -30px;
margin-right: 20px;
}
}