Files
opensourcepos/public/css/reports.css
BudsieBuds e83c23cf0c Improve code style and PSR-12 compliance (#4204)
* Improve code style and PSR-12 compliance
- refactored code formatting to adhere to PSR-12 guidelines
- standardized coding conventions across the codebase
- added missing framework files and reverted markup changes
- reformatted arrays for enhanced readability
- updated language files for consistent styling and clarity
- minor miscellaneous improvements
2025-05-02 19:37:06 +02:00

49 lines
933 B
CSS

.report {
font-size: .85em;
}
#report_summary {
margin: 2em 0 auto;
text-align: center;
}
#report_summary .summary_row {}
#chart_report_summary {
text-align: center;
margin-top: -100px;
}
#chart_report_summary .summary_row {}
.ct-chart {}
/* Style chart X axis labels to be rotated of 60 degrees */
.ct-label.ct-horizontal {
-webkit-transform: rotate(-60deg);
-moz-transform: rotate(-60deg);
-ms-transform: rotate(-60deg);
-o-transform: rotate(-60deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
/* Set all labels to be black with font size 1.2rem */
.ct-label {
fill: rgba(0, 0, 0, 1);
color: rgba(0, 0, 0, 1);
font-size: 1.2rem;
}
.ct-tooltip-point {
fill-opacity: 1 !important;
stroke-width: 0px;
stroke: red;
transition: all 0.2s linear;
}
.ct-tooltip-point:hover {
r: 7;
stroke-opacity: 0.2;
stroke-width: 20px;
}