fikusta_header.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {% if fikusta_portal_url %}
  2. <header id="fikusta-global-header">
  3. <div id="fikusta-header-inner">
  4. <div id="fikusta-header-left">
  5. <a href="{{ fikusta_portal_url }}" id="fikusta-portal-link" title="Zurück zum Portal">
  6. <img src="{{ cms_brand_logo_url }}" alt="{{ fikusta_portal_title }}" id="fikusta-header-logo">
  7. <span id="fikusta-portal-title">{{ fikusta_portal_title }}</span>
  8. </a>
  9. </div>
  10. <nav id="fikusta-header-nav" aria-label="Portal-Navigation">
  11. <ul>
  12. <li><a href="{{ base_url }}/">CMS</a></li>
  13. <li><a href="{{ fikusta_portal_url }}" target="_blank" rel="noopener">{{ fikusta_portal_title }}</a></li>
  14. </ul>
  15. </nav>
  16. </div>
  17. </header>
  18. <style>
  19. #fikusta-global-header {
  20. position: sticky;
  21. top: 0;
  22. z-index: 100;
  23. background: #1e3a5f;
  24. color: #fff;
  25. box-shadow: 0 2px 6px rgba(0,0,0,.25);
  26. }
  27. #fikusta-header-inner {
  28. display: flex;
  29. align-items: center;
  30. justify-content: space-between;
  31. max-width: 100%;
  32. padding: 0 1rem;
  33. height: 3rem;
  34. }
  35. #fikusta-header-left {
  36. display: flex;
  37. align-items: center;
  38. gap: 0.5rem;
  39. min-width: 0;
  40. }
  41. #fikusta-portal-link {
  42. display: flex;
  43. align-items: center;
  44. gap: 0.5rem;
  45. color: #fff;
  46. text-decoration: none;
  47. font-weight: 600;
  48. font-size: 0.95rem;
  49. white-space: nowrap;
  50. }
  51. #fikusta-portal-link:hover {
  52. color: #93c5fd;
  53. }
  54. #fikusta-header-logo {
  55. height: 1.75rem;
  56. width: auto;
  57. object-fit: contain;
  58. }
  59. #fikusta-portal-title {
  60. font-size: 1rem;
  61. font-weight: 700;
  62. letter-spacing: 0.02em;
  63. }
  64. #fikusta-header-nav ul {
  65. list-style: none;
  66. margin: 0;
  67. padding: 0;
  68. display: flex;
  69. align-items: center;
  70. gap: 0.25rem;
  71. }
  72. #fikusta-header-nav ul li a {
  73. display: inline-block;
  74. padding: 0.3rem 0.75rem;
  75. border-radius: 0.375rem;
  76. color: #cbd5e1;
  77. text-decoration: none;
  78. font-size: 0.85rem;
  79. transition: background 0.15s, color 0.15s;
  80. }
  81. #fikusta-header-nav ul li a:hover {
  82. background: rgba(255,255,255,.12);
  83. color: #fff;
  84. }
  85. /* Sidebar top correction when header is present */
  86. @media (min-width: 768px) {
  87. #sidebar {
  88. top: 3rem !important;
  89. max-height: calc(100vh - 3rem) !important;
  90. }
  91. }
  92. </style>
  93. {% endif %}