Last active
May 22, 2023 08:36
-
-
Save annez/c9196a176fe7156bde9fb47fbd6ec448 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#visContainer { | |
left: 5px !important; | |
right: 5px !important; | |
} | |
#tooltip { | |
position: absolute; | |
width: auto; | |
height: auto; | |
padding: 5px; | |
background-color: white; | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
border-radius: 4px; | |
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); | |
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); | |
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); | |
pointer-events: none; | |
font-family: sans-serif; | |
font-size: 12px; | |
z-index: 2; | |
/* Add customization here */ | |
} | |
#tooltip.hidden { | |
display: none; | |
/* Add customization here */ | |
} | |
#tooltip p { | |
margin: 0; | |
font-family: sans-serif; | |
font-size: 12px; | |
line-height: 15px; | |
/* Add customization here */ | |
} | |
.reportTable { | |
font-family: Open Sans,Helvetica,Arial,sans-serif; | |
font-size: 12px; | |
border: 1px solid #CCCCCC; | |
border-collapse: collapse; | |
border-spacing: 3px; | |
/* Add customization here */ | |
} | |
.reportTable th { | |
color: #000000; | |
border: 1px solid #CCCCCC; | |
border-bottom: 1px solid #CCCCCC !important; | |
/* font-size: 10px; */ | |
/* height: 25px; */ | |
padding: 8px; | |
/* Add customization here */ | |
} | |
.reportTable td { | |
color: #000000; | |
vertical-align: super; | |
padding: 6px; | |
/*background: #FFFFFF;*/ | |
border-bottom: 0; | |
border-top: 0; | |
border-left: 1px solid #EEE; | |
border-right: 1px solid #EEE; | |
border-collapse: collapse; | |
/* Add customization here */ | |
} | |
.left { | |
text-align: left; | |
/* Add customization here */ | |
} | |
.right { | |
text-align: right !important; | |
/* Add customization here */ | |
} | |
.indent { | |
padding-left: 15px !important; | |
/* Add customization here */ | |
} | |
.subtotal { | |
font-weight: bold; | |
background: #D3D3D3; | |
/* Add customization here */ | |
} | |
.total { | |
border-top: 1px solid #000000 !important; | |
font-weight: bold !important; | |
background-color: #EEEEEE !important; | |
border-bottom: 2px solid #000000 !important; | |
/* Add customization here */ | |
} | |
.total.transposed { | |
border-top: 0px !important; | |
background: #D3D3D3; | |
/* Add customization here */ | |
} | |
.reportTable .variance, .reportTable .variancePercent { | |
color: #037A44 !important; | |
} | |
.reportTable .variance.negative, .reportTable .variancePercent.negative { | |
color: #E33D2D !important; | |
} | |
.hover { | |
background-color: #F1F1F1 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment