2025-09-08 08:10:30 +02:00
|
|
|
/* Topbar-Farbe erzwingen (Bulma überschreibt sonst mit weiß) */
|
|
|
|
.navbar.topbar-nav {
|
|
|
|
background-color: #d6801e !important; /* Orange wie im Screenshot */
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2025-09-07 20:52:19 +02:00
|
|
|
|
2025-09-08 08:10:30 +02:00
|
|
|
/* Textfarben in der Topbar */
|
|
|
|
.navbar.topbar-nav .navbar-item,
|
|
|
|
.navbar.topbar-nav .navbar-link {
|
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
.navbar.topbar-nav .navbar-item:hover,
|
|
|
|
.navbar.topbar-nav .navbar-link:hover {
|
|
|
|
background-color: rgba(0,0,0,.04);
|
|
|
|
color: #111;
|
|
|
|
}
|
2025-09-07 20:52:19 +02:00
|
|
|
|
2025-09-08 08:10:30 +02:00
|
|
|
/* Dropdown-Pfeil in lila */
|
|
|
|
.navbar.topbar-nav .navbar-link::after {
|
|
|
|
border-color: #6b2bbd; /* lila */
|
|
|
|
}
|
Add FontAwesome webfonts and update templates for Risiko Management
- Added FontAwesome webfont files: fa-brands-400.woff2, fa-regular-400.woff2, fa-solid-900.woff2, and fa-v4compatibility.woff2.
- Updated base.html to include FontAwesome stylesheet.
- Renamed the application title from "Risiko Management" to "ISO27001 Management".
- Enhanced navigation menu with dynamic active states for Dashboard, Statistics, Risks, Controls, and Incidents.
- Created new templates for dashboard, controls, incidents, risks, and statistics with breadcrumb navigation.
2025-09-07 23:07:56 +02:00
|
|
|
|
2025-09-08 08:10:30 +02:00
|
|
|
/* Lila Logo-Kachel links */
|
|
|
|
.logo {
|
|
|
|
background: #5a2a82 !important;
|
|
|
|
color: #fff;
|
Add FontAwesome webfonts and update templates for Risiko Management
- Added FontAwesome webfont files: fa-brands-400.woff2, fa-regular-400.woff2, fa-solid-900.woff2, and fa-v4compatibility.woff2.
- Updated base.html to include FontAwesome stylesheet.
- Renamed the application title from "Risiko Management" to "ISO27001 Management".
- Enhanced navigation menu with dynamic active states for Dashboard, Statistics, Risks, Controls, and Incidents.
- Created new templates for dashboard, controls, incidents, risks, and statistics with breadcrumb navigation.
2025-09-07 23:07:56 +02:00
|
|
|
|
|
|
|
}
|
2025-09-08 08:10:30 +02:00
|
|
|
.logo .logo-text {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 700;
|
Add FontAwesome webfonts and update templates for Risiko Management
- Added FontAwesome webfont files: fa-brands-400.woff2, fa-regular-400.woff2, fa-solid-900.woff2, and fa-v4compatibility.woff2.
- Updated base.html to include FontAwesome stylesheet.
- Renamed the application title from "Risiko Management" to "ISO27001 Management".
- Enhanced navigation menu with dynamic active states for Dashboard, Statistics, Risks, Controls, and Incidents.
- Created new templates for dashboard, controls, incidents, risks, and statistics with breadcrumb navigation.
2025-09-07 23:07:56 +02:00
|
|
|
}
|
|
|
|
|
2025-09-08 08:10:30 +02:00
|
|
|
/* Rechte Seite: Suche + Profil */
|
|
|
|
.actions { display: flex; align-items: center; gap: 10px; padding-right: 10px; }
|
|
|
|
.search { border: 1px solid #c7c7c7; border-radius: 4px; padding: 4px 8px; font-size: 14px; }
|
|
|
|
.profile { background: #3c7d74; color: #fff; width: 28px; height: 28px; border-radius: 9999px;
|
|
|
|
display: flex; align-items: center; justify-content: center; font-weight: 700; }
|
|
|
|
|
|
|
|
/* Inhalt darunter */
|
|
|
|
.content { background: #fafafa; min-height: calc(100vh - 3.25rem); }
|
|
|
|
.home-icon { font-size: 20px; display: inline-block; margin: 10px; }
|
|
|
|
|
|
|
|
/* Dropdown optisch näher am Screenshot */
|
feat: Enhance Risk Management Module
- Updated Risk model to include description, created_at, and updated_at fields.
- Modified RiskSerializer to include created_at and updated_at in serialized output.
- Improved logging in signals for Risk and Control models, including serialization of values.
- Added new template tags for CIA label mapping.
- Refactored URL patterns for better clarity and added detail views for risks, controls, and incidents.
- Implemented list and detail views for risks, controls, and incidents with filtering options.
- Enhanced CSS for better UI/UX, including breadcrumbs and table styling.
- Created new templates for displaying individual risks, controls, and incidents with detailed information.
2025-09-08 15:03:12 +02:00
|
|
|
.navbar-dropdown { border-top: none; box-shadow: 0 8px 16px rgba(0,0,0,.1); }
|
|
|
|
|
|
|
|
/* Breadcrumbs */
|
|
|
|
.top-breadcrumb { padding: 10px 0;}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
background-color: #f0ebeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content li{
|
|
|
|
margin-top: 5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content li+li {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|