hlsv 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +44 -3
- data/README.md +36 -29
- data/lib/hlsv/analysis_registry.rb +47 -0
- data/lib/hlsv/analysis_runner.rb +193 -0
- data/lib/hlsv/config_manager.rb +125 -0
- data/lib/hlsv/html2word.rb +18 -18
- data/lib/hlsv/path_guard.rb +32 -0
- data/lib/hlsv/sdtm_validation/dataset.rb +169 -0
- data/lib/hlsv/sdtm_validation/define.rb +142 -0
- data/lib/hlsv/sdtm_validation/report.rb +357 -0
- data/lib/hlsv/sdtm_validation.rb +390 -0
- data/lib/hlsv/url_helper.rb +28 -0
- data/lib/hlsv/version.rb +1 -1
- data/lib/hlsv/web_app.rb +264 -418
- data/lib/hlsv.rb +12 -5
- data/public/css/accessibility/accessibility.css +33 -0
- data/public/css/base/layout.css +33 -0
- data/public/css/base/reset.css +23 -0
- data/public/css/base/typography.css +31 -0
- data/public/css/components/buttons.css +142 -0
- data/public/css/components/file-tree.css +107 -0
- data/public/css/components/footer.css +43 -0
- data/public/css/components/forms.css +56 -0
- data/public/css/components/header.css +52 -0
- data/public/css/components/status.css +56 -0
- data/public/css/features/csv-table.css +204 -0
- data/public/css/features/file-browser.css +208 -0
- data/public/css/responsive/responsive.css +133 -0
- data/public/css/styles.css +25 -0
- data/public/css/styles_csv.css +23 -0
- data/public/favicon.ico +0 -0
- data/public/js/analysis.js +201 -0
- data/public/js/app.js +63 -0
- data/public/js/browser.js +172 -0
- data/public/js/config.js +214 -0
- data/public/js/results.js +240 -0
- data/public/js/utils.js +57 -0
- data/views/csv_view.erb +11 -12
- data/views/index.erb +70 -19
- data/views/{report_template.erb → report.erb} +203 -188
- metadata +39 -41
- data/lib/hlsv/find_keys.rb +0 -979
- data/lib/hlsv/mon_script.rb +0 -169
- data/public/app.js +0 -569
- data/public/styles.css +0 -586
- data/public/styles_csv.css +0 -448
data/lib/hlsv.rb
CHANGED
|
@@ -40,10 +40,17 @@ end
|
|
|
40
40
|
require 'sinatra/base'
|
|
41
41
|
|
|
42
42
|
require_relative "hlsv/version"
|
|
43
|
-
require_relative "hlsv/
|
|
44
|
-
|
|
45
|
-
require_relative "hlsv/mon_script"
|
|
46
|
-
require_relative "hlsv/version"
|
|
43
|
+
require_relative "hlsv/cli"
|
|
44
|
+
|
|
47
45
|
require_relative "hlsv/web_app"
|
|
46
|
+
|
|
47
|
+
require_relative "hlsv/config_manager"
|
|
48
|
+
require_relative "hlsv/path_guard"
|
|
49
|
+
require_relative "hlsv/url_helper"
|
|
50
|
+
require_relative "hlsv/analysis_registry"
|
|
51
|
+
|
|
52
|
+
require_relative "hlsv/analysis_runner"
|
|
53
|
+
|
|
54
|
+
require_relative "hlsv/sdtm_validation"
|
|
48
55
|
require_relative "hlsv/xpt"
|
|
49
|
-
require_relative "hlsv/
|
|
56
|
+
require_relative "hlsv/html2word"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
ACCESSIBILITY
|
|
3
|
+
=========================== */
|
|
4
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5
|
+
* {
|
|
6
|
+
animation: none !important;
|
|
7
|
+
transition: none !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Focus visible for keyboard navigation */
|
|
12
|
+
button:focus-visible,
|
|
13
|
+
input:focus-visible,
|
|
14
|
+
select:focus-visible,
|
|
15
|
+
.folder-header:focus-visible,
|
|
16
|
+
.company-link:focus-visible {
|
|
17
|
+
outline: 2px solid #007bff;
|
|
18
|
+
outline-offset: 2px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* High contrast mode support */
|
|
22
|
+
@media (prefers-contrast: high) {
|
|
23
|
+
.container,
|
|
24
|
+
.app-header,
|
|
25
|
+
.app-footer,
|
|
26
|
+
.modal-box {
|
|
27
|
+
border: 2px solid #000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
button {
|
|
31
|
+
border: 2px solid #000;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
CONTAINERS
|
|
3
|
+
=========================== */
|
|
4
|
+
.container {
|
|
5
|
+
background: white;
|
|
6
|
+
padding: 30px;
|
|
7
|
+
border-radius: 8px;
|
|
8
|
+
margin-bottom: 25px;
|
|
9
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
10
|
+
transition: box-shadow 0.3s ease;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.container:hover {
|
|
14
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.info {
|
|
18
|
+
background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
|
|
19
|
+
padding: 15px;
|
|
20
|
+
border-radius: 6px;
|
|
21
|
+
margin-bottom: 20px;
|
|
22
|
+
border-left: 4px solid #17a2b8;
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.info-section {
|
|
27
|
+
background: #f8f9fa;
|
|
28
|
+
padding: 20px;
|
|
29
|
+
border-radius: 6px;
|
|
30
|
+
margin: 15px 0;
|
|
31
|
+
border-left: 4px solid #6c757d;
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2026 AdClin
|
|
3
|
+
Licensed under the GNU Affero General Public License v3.0 or later.
|
|
4
|
+
See the LICENSE file for details.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ===========================
|
|
8
|
+
RESET & BASE STYLES
|
|
9
|
+
=========================== */
|
|
10
|
+
* {
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
16
|
+
max-width: 1200px;
|
|
17
|
+
margin: 0 auto;
|
|
18
|
+
padding: 20px;
|
|
19
|
+
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
20
|
+
line-height: 1.6;
|
|
21
|
+
color: #333;
|
|
22
|
+
}
|
|
23
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
TYPOGRAPHY
|
|
3
|
+
=========================== */
|
|
4
|
+
h1 {
|
|
5
|
+
color: #1a1a1a;
|
|
6
|
+
border-bottom: 3px solid #007bff;
|
|
7
|
+
padding-bottom: 15px;
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
font-size: 2em;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
h2 {
|
|
13
|
+
color: #333;
|
|
14
|
+
margin-top: 0;
|
|
15
|
+
font-size: 1.5em;
|
|
16
|
+
border-bottom: 2px solid #e9ecef;
|
|
17
|
+
padding-bottom: 10px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h3 {
|
|
21
|
+
color: #495057;
|
|
22
|
+
margin: 20px 0 10px 0;
|
|
23
|
+
font-size: 1.2em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
h4 {
|
|
27
|
+
color: #6c757d;
|
|
28
|
+
margin: 15px 0 10px 0;
|
|
29
|
+
font-size: 1.1em;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
BUTTONS
|
|
3
|
+
=========================== */
|
|
4
|
+
button {
|
|
5
|
+
padding: 12px 24px;
|
|
6
|
+
border: none;
|
|
7
|
+
border-radius: 6px;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
font-size: 14px;
|
|
10
|
+
font-weight: 600;
|
|
11
|
+
margin-right: 10px;
|
|
12
|
+
margin-bottom: 10px;
|
|
13
|
+
transition: all 0.3s ease;
|
|
14
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
button:hover {
|
|
18
|
+
transform: translateY(-2px);
|
|
19
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
button:active {
|
|
23
|
+
transform: translateY(0);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
button:disabled {
|
|
27
|
+
background: #ccc;
|
|
28
|
+
cursor: not-allowed;
|
|
29
|
+
opacity: 0.6;
|
|
30
|
+
transform: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
button:disabled:hover {
|
|
34
|
+
transform: none;
|
|
35
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Button Variants */
|
|
39
|
+
.btn-primary,
|
|
40
|
+
button {
|
|
41
|
+
background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
|
|
42
|
+
color: white;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.btn-primary:hover,
|
|
46
|
+
button:hover:not(:disabled) {
|
|
47
|
+
background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.btn-secondary,
|
|
51
|
+
button.secondary {
|
|
52
|
+
background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
|
|
53
|
+
color: white;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.btn-secondary:hover,
|
|
57
|
+
button.secondary:hover {
|
|
58
|
+
background: linear-gradient(135deg, #545b62 0%, #3d4246 100%);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.btn-success,
|
|
62
|
+
button.success {
|
|
63
|
+
background: linear-gradient(135deg, #28a745 0%, #218838 100%);
|
|
64
|
+
color: white;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.btn-success:hover,
|
|
68
|
+
button.success:hover {
|
|
69
|
+
background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.btn-danger,
|
|
73
|
+
button.danger {
|
|
74
|
+
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
|
|
75
|
+
color: white;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.btn-danger:hover,
|
|
79
|
+
button.danger:hover {
|
|
80
|
+
background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.button-group {
|
|
84
|
+
display: flex;
|
|
85
|
+
flex-wrap: wrap;
|
|
86
|
+
gap: 10px;
|
|
87
|
+
margin: 20px 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.button-group-compact {
|
|
91
|
+
gap: 8px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.button-group-compact button {
|
|
95
|
+
padding: 8px 14px;
|
|
96
|
+
font-size: 0.85em;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.btn-quick-action {
|
|
100
|
+
background: #f8f9fa;
|
|
101
|
+
border: 1px solid #dee2e6;
|
|
102
|
+
box-shadow: none;
|
|
103
|
+
color: #495057;
|
|
104
|
+
font-size: 0.8em;
|
|
105
|
+
font-weight: 600;
|
|
106
|
+
padding: 6px 12px;
|
|
107
|
+
margin: 0;
|
|
108
|
+
border-radius: 20px;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
white-space: nowrap;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.btn-quick-action:hover {
|
|
114
|
+
background: #e9ecef;
|
|
115
|
+
border-color: #adb5bd;
|
|
116
|
+
color: #333;
|
|
117
|
+
transform: none;
|
|
118
|
+
box-shadow: none;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.btn-quick-action.btn-quick-primary {
|
|
122
|
+
background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
|
|
123
|
+
border-color: transparent;
|
|
124
|
+
color: white;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.btn-quick-action.btn-quick-primary:hover {
|
|
128
|
+
background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
|
|
129
|
+
border-color: transparent;
|
|
130
|
+
color: white;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.btn-quick-action.btn-quick-danger {
|
|
134
|
+
color: #dc3545;
|
|
135
|
+
border-color: #f1b0b7;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.btn-quick-action.btn-quick-danger:hover {
|
|
139
|
+
background: #f8d7da;
|
|
140
|
+
border-color: #dc3545;
|
|
141
|
+
color: #721c24;
|
|
142
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
FILE DISPLAY
|
|
3
|
+
=========================== */
|
|
4
|
+
.file-tree {
|
|
5
|
+
margin-top: 20px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.folder-item {
|
|
9
|
+
margin: 10px 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.folder-header {
|
|
13
|
+
padding: 12px 15px;
|
|
14
|
+
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
15
|
+
border-radius: 6px;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
transition: all 0.3s ease;
|
|
18
|
+
border-left: 3px solid #007bff;
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.folder-header:hover {
|
|
24
|
+
background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
|
|
25
|
+
transform: translateX(5px);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.folder-header:focus {
|
|
29
|
+
outline: 2px solid #007bff;
|
|
30
|
+
outline-offset: 2px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.folder-actions {
|
|
34
|
+
margin-left: auto;
|
|
35
|
+
display: flex;
|
|
36
|
+
gap: 6px;
|
|
37
|
+
flex-shrink: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.folder-icon {
|
|
41
|
+
margin-right: 10px;
|
|
42
|
+
font-size: 1.3em;
|
|
43
|
+
transition: transform 0.3s ease;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.folder-content {
|
|
47
|
+
margin-left: 20px;
|
|
48
|
+
margin-top: 10px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.file-item {
|
|
52
|
+
display: flex;
|
|
53
|
+
justify-content: space-between;
|
|
54
|
+
align-items: center;
|
|
55
|
+
padding: 12px 15px;
|
|
56
|
+
background: #f8f9fa;
|
|
57
|
+
border-radius: 6px;
|
|
58
|
+
margin: 8px 0;
|
|
59
|
+
border-left: 3px solid #6c757d;
|
|
60
|
+
transition: all 0.3s ease;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.file-item:hover {
|
|
64
|
+
background: #e9ecef;
|
|
65
|
+
transform: translateX(5px);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.file-info {
|
|
69
|
+
flex: 1;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.file-name {
|
|
73
|
+
font-weight: 600;
|
|
74
|
+
color: #333;
|
|
75
|
+
margin-bottom: 4px;
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
gap: 8px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.file-meta {
|
|
82
|
+
font-size: 12px;
|
|
83
|
+
color: #6c757d;
|
|
84
|
+
margin-top: 4px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* ===========================
|
|
88
|
+
UTILITY CLASSES
|
|
89
|
+
=========================== */
|
|
90
|
+
code {
|
|
91
|
+
background: #f8f9fa;
|
|
92
|
+
padding: 3px 8px;
|
|
93
|
+
border-radius: 4px;
|
|
94
|
+
font-family: 'Courier New', monospace;
|
|
95
|
+
color: #e83e8c;
|
|
96
|
+
font-size: 0.9em;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
pre {
|
|
100
|
+
background: #f8f9fa;
|
|
101
|
+
padding: 15px;
|
|
102
|
+
border-radius: 6px;
|
|
103
|
+
overflow-x: auto;
|
|
104
|
+
font-size: 13px;
|
|
105
|
+
border: 1px solid #dee2e6;
|
|
106
|
+
}
|
|
107
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
FOOTER WITH COPYRIGHT AND LICENSE
|
|
3
|
+
=========================== */
|
|
4
|
+
.app-footer {
|
|
5
|
+
margin-top: 40px;
|
|
6
|
+
padding: 20px;
|
|
7
|
+
background: white;
|
|
8
|
+
border-radius: 8px;
|
|
9
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
10
|
+
text-align: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.footer-content {
|
|
14
|
+
display: flex;
|
|
15
|
+
justify-content: center;
|
|
16
|
+
align-items: center;
|
|
17
|
+
flex-wrap: wrap;
|
|
18
|
+
gap: 15px;
|
|
19
|
+
color: #6c757d;
|
|
20
|
+
font-size: 0.9em;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.footer-content .separator {
|
|
24
|
+
color: #dee2e6;
|
|
25
|
+
font-weight: bold;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.footer-content a {
|
|
29
|
+
color: #007bff;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
transition: color 0.3s ease;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.footer-content a:hover {
|
|
35
|
+
color: #0056b3;
|
|
36
|
+
text-decoration: underline;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.generated-date {
|
|
40
|
+
color: #6c757d;
|
|
41
|
+
font-size: 0.85em;
|
|
42
|
+
margin: 5px 0 0 0;
|
|
43
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
FORM ELEMENTS
|
|
3
|
+
=========================== */
|
|
4
|
+
.form-group {
|
|
5
|
+
margin: 20px 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.form-group label {
|
|
9
|
+
display: block;
|
|
10
|
+
font-weight: 600;
|
|
11
|
+
margin-bottom: 8px;
|
|
12
|
+
color: #333;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.form-group label .required {
|
|
16
|
+
color: #dc3545;
|
|
17
|
+
margin-left: 4px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.form-group input[type="text"],
|
|
21
|
+
.form-group select {
|
|
22
|
+
width: 100%;
|
|
23
|
+
padding: 12px;
|
|
24
|
+
border: 2px solid #ddd;
|
|
25
|
+
border-radius: 6px;
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.form-group input[type="text"]:focus,
|
|
31
|
+
.form-group select:focus {
|
|
32
|
+
outline: none;
|
|
33
|
+
border-color: #007bff;
|
|
34
|
+
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.form-group input.error-field {
|
|
38
|
+
border-color: #dc3545;
|
|
39
|
+
background-color: #fff5f5;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.form-group small {
|
|
43
|
+
display: block;
|
|
44
|
+
margin-top: 6px;
|
|
45
|
+
color: #6c757d;
|
|
46
|
+
font-size: 13px;
|
|
47
|
+
line-height: 1.4;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.config-grid {
|
|
51
|
+
display: grid;
|
|
52
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
53
|
+
gap: 20px;
|
|
54
|
+
margin: 20px 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
HEADER WITH BRANDING
|
|
3
|
+
=========================== */
|
|
4
|
+
.app-header {
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
align-items: center;
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
padding: 20px;
|
|
10
|
+
background: white;
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.app-header h1 {
|
|
16
|
+
margin: 0;
|
|
17
|
+
padding: 0;
|
|
18
|
+
border: none;
|
|
19
|
+
color: #1a1a1a;
|
|
20
|
+
font-size: 2em;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.company-branding {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.company-link {
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
gap: 12px;
|
|
32
|
+
text-decoration: none;
|
|
33
|
+
transition: all 0.3s ease;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.company-link:hover {
|
|
37
|
+
opacity: 0.8;
|
|
38
|
+
transform: translateY(-2px);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.company-logo {
|
|
42
|
+
height: 50px;
|
|
43
|
+
width: auto;
|
|
44
|
+
object-fit: contain;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.company-name {
|
|
48
|
+
font-size: 1.2em;
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
color: #2c3e50;
|
|
51
|
+
}
|
|
52
|
+
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* ===========================
|
|
2
|
+
STATUS MESSAGES
|
|
3
|
+
=========================== */
|
|
4
|
+
.status {
|
|
5
|
+
padding: 15px 20px;
|
|
6
|
+
border-radius: 6px;
|
|
7
|
+
margin: 15px 0;
|
|
8
|
+
animation: slideIn 0.3s ease;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@keyframes slideIn {
|
|
12
|
+
from {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transform: translateY(-10px);
|
|
15
|
+
}
|
|
16
|
+
to {
|
|
17
|
+
opacity: 1;
|
|
18
|
+
transform: translateY(0);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.status.success {
|
|
23
|
+
background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
|
|
24
|
+
color: #155724;
|
|
25
|
+
border-left: 4px solid #28a745;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.status.error {
|
|
29
|
+
background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
|
|
30
|
+
color: #721c24;
|
|
31
|
+
border-left: 4px solid #dc3545;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.status.processing {
|
|
35
|
+
background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
|
|
36
|
+
color: #856404;
|
|
37
|
+
border-left: 4px solid #ffc107;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.loading {
|
|
41
|
+
display: flex;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
align-items: center;
|
|
44
|
+
padding: 40px;
|
|
45
|
+
color: #6c757d;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.loading::after {
|
|
49
|
+
content: "Loading...";
|
|
50
|
+
animation: loading 1.5s infinite;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@keyframes loading {
|
|
54
|
+
0%, 100% { opacity: 0.5; }
|
|
55
|
+
50% { opacity: 1; }
|
|
56
|
+
}
|