3
1

branding_styles.php 608 B

1234567891011121314
  1. <?php if (isset($branding["enabled"]) && $branding["enabled"] == 1 && !empty($branding["accent_color"])): ?>
  2. <style>
  3. .app-main .sidebar a.active, .btn-blue, .project-main .views-switcher a.active {
  4. color: <?= $branding["accent_color"] ?> !important;
  5. }
  6. .btn-blue {
  7. background-color: <?= $branding["accent_color"] ?> !important;
  8. border-color: <?= $branding["accent_color"] ?> !important;
  9. }
  10. .project-header .views-switcher a.active::after, .view-project-header .views-switcher a.active::after {
  11. background-color: <?= $branding["accent_color"] ?> !important;
  12. }
  13. </style>
  14. <?php endif ?>