add proprietary

This commit is contained in:
Ludy87 2025-07-09 08:09:17 +02:00
parent 092a124977
commit 4407d75c5c
No known key found for this signature in database
GPG Key ID: 92696155E0220F94
7 changed files with 30 additions and 4 deletions

View File

@ -119,7 +119,9 @@
"EditorConfig.EditorConfig", // EditorConfig support for maintaining consistent coding styles "EditorConfig.EditorConfig", // EditorConfig support for maintaining consistent coding styles
"ms-azuretools.vscode-docker", // Docker extension for Visual Studio Code "ms-azuretools.vscode-docker", // Docker extension for Visual Studio Code
"charliermarsh.ruff", // Ruff extension for Ruff language support "charliermarsh.ruff", // Ruff extension for Ruff language support
"github.vscode-github-actions" // GitHub Actions extension for Visual Studio Code "github.vscode-github-actions", // GitHub Actions extension for Visual Studio Code
"stylelint.vscode-stylelint", // Stylelint extension for CSS and SCSS linting
"redhat.vscode-yaml" // YAML extension for Visual Studio Code
] ]
} }
}, },

View File

@ -116,6 +116,9 @@ labels:
- '.pre-commit-config' - '.pre-commit-config'
- '.github/workflows/pre_commit.yml' - '.github/workflows/pre_commit.yml'
- 'devGuide/.*' - 'devGuide/.*'
- '.stylelintrc.json'
- 'package.json'
- 'package-lock.json'
- label: 'Test' - label: 'Test'
files: files:

View File

@ -17,5 +17,7 @@
"GitHub.vscode-pull-request-github", // GitHub Pull Requests extension for Visual Studio Code "GitHub.vscode-pull-request-github", // GitHub Pull Requests extension for Visual Studio Code
"charliermarsh.ruff", // Ruff code formatter for Python to follow the Ruff Style Guide "charliermarsh.ruff", // Ruff code formatter for Python to follow the Ruff Style Guide
"yzhang.markdown-all-in-one", // Markdown All-in-One extension for enhanced Markdown editing "yzhang.markdown-all-in-one", // Markdown All-in-One extension for enhanced Markdown editing
"stylelint.vscode-stylelint", // Stylelint extension for CSS and SCSS linting
"redhat.vscode-yaml", // YAML extension for Visual Studio Code
] ]
} }

View File

@ -27,6 +27,9 @@
"[gradle]": { "[gradle]": {
"editor.defaultFormatter": "vscjava.vscode-gradle" "editor.defaultFormatter": "vscjava.vscode-gradle"
}, },
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"java.compile.nullAnalysis.mode": "automatic", "java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "interactive", "java.configuration.updateBuildConfiguration": "interactive",
"java.format.enabled": true, "java.format.enabled": true,
@ -119,7 +122,7 @@
"html.format.indentHandlebars": true, "html.format.indentHandlebars": true,
"html.format.preserveNewLines": true, "html.format.preserveNewLines": true,
"html.format.maxPreserveNewLines": 2, "html.format.maxPreserveNewLines": 2,
"java.project.sourcePaths": [ "stylelint.configFile": ".stylelintrc.json",
"stirling-pdf/src/main/java", "stirling-pdf/src/main/java",
"common/src/main/java", "common/src/main/java",
"proprietary/src/main/java" "proprietary/src/main/java"

View File

@ -3,7 +3,7 @@
"version": "1.0.0", "version": "1.0.0",
"description": "PDF utilities for Stirling", "description": "PDF utilities for Stirling",
"scripts": { "scripts": {
"lint:css": "stylelint \"stirling-pdf/src/main/**/*.css\" --fix" "lint:css": "stylelint \"stirling-pdf/src/main/**/*.css\" \"proprietary/src/main/resources/static/css/*.css\" --fix"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -16,23 +16,28 @@
.card-body { .card-body {
background-color: var(--md-sys-color-surface-container); background-color: var(--md-sys-color-surface-container);
} }
.stat-card { .stat-card {
text-align: center; text-align: center;
padding: 20px; padding: 20px;
} }
.stat-number { .stat-number {
font-size: 2rem; font-size: 2rem;
font-weight: bold; font-weight: bold;
} }
.stat-label { .stat-label {
font-size: 1rem; font-size: 1rem;
color: var(--md-sys-color-on-surface-variant); color: var(--md-sys-color-on-surface-variant);
} }
.chart-container { .chart-container {
position: relative; position: relative;
height: 300px; height: 300px;
width: 100%; width: 100%;
} }
.filter-card { .filter-card {
margin-bottom: 20px; margin-bottom: 20px;
padding: 15px; padding: 15px;
@ -40,6 +45,7 @@
border: 1px solid var(--md-sys-color-outline-variant); border: 1px solid var(--md-sys-color-outline-variant);
border-radius: 4px; border-radius: 4px;
} }
.loading-overlay { .loading-overlay {
position: absolute; position: absolute;
top: 0; top: 0;
@ -52,6 +58,7 @@
align-items: center; align-items: center;
z-index: 1000; z-index: 1000;
} }
.level-indicator { .level-indicator {
display: inline-block; display: inline-block;
padding: 5px 10px; padding: 5px 10px;
@ -59,18 +66,23 @@
color: white; color: white;
font-weight: bold; font-weight: bold;
} }
.level-0 { .level-0 {
background-color: var(--md-sys-color-error, #dc3545); /* Red */ background-color: var(--md-sys-color-error, #dc3545); /* Red */
} }
.level-1 { .level-1 {
background-color: var(--md-sys-color-secondary, #fd7e14); /* Orange */ background-color: var(--md-sys-color-secondary, #fd7e14); /* Orange */
} }
.level-2 { .level-2 {
background-color: var(--md-nav-section-color-other, #28a745); /* Green */ background-color: var(--md-nav-section-color-other, #28a745); /* Green */
} }
.level-3 { .level-3 {
background-color: var(--md-sys-color-tertiary, #17a2b8); /* Teal */ background-color: var(--md-sys-color-tertiary, #17a2b8); /* Teal */
} }
/* Custom data table styling */ /* Custom data table styling */
.audit-table { .audit-table {
font-size: 0.9rem; font-size: 0.9rem;
@ -89,6 +101,7 @@
.audit-table tbody tr:hover { .audit-table tbody tr:hover {
background-color: var(--md-sys-color-surface-container-high); background-color: var(--md-sys-color-surface-container-high);
} }
.audit-table th { .audit-table th {
background-color: var(--md-sys-color-surface-container-high); background-color: var(--md-sys-color-surface-container-high);
color: var(--md-sys-color-on-surface); color: var(--md-sys-color-on-surface);
@ -97,9 +110,11 @@
z-index: 10; z-index: 10;
font-weight: bold; font-weight: bold;
} }
.table-responsive { .table-responsive {
max-height: 600px; max-height: 600px;
} }
.pagination-container { .pagination-container {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -125,6 +140,7 @@
color: var(--bs-secondary); color: var(--bs-secondary);
background-color: var(--bs-light); background-color: var(--bs-light);
} }
.json-viewer { .json-viewer {
background-color: var(--md-sys-color-surface-container-low); background-color: var(--md-sys-color-surface-container-low);
color: var(--md-sys-color-on-surface); color: var(--md-sys-color-on-surface);

View File

@ -383,7 +383,7 @@
width: 100%; width: 100%;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;
border-radius: 0.5rem; border-radius: 0.5rem;
border: 1px solid border: 1px solid;
} }
.text-overflow { .text-overflow {