mirror of
https://github.com/itflow-org/itflow
synced 2026-08-18 05:25:12 +00:00
Don't set Theme to Gray amd blue when in client section always Keep configured theme
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<!-- Main Sidebar Container -->
|
<!-- Main Sidebar Container -->
|
||||||
<aside class="main-sidebar sidebar-dark-<?php if (isset($_GET['client_id'])) { echo "gray"; } else { echo nullable_htmlentities($config_theme); } ?> d-print-none">
|
<aside class="main-sidebar sidebar-dark-<?php echo nullable_htmlentities($config_theme); ?> d-print-none">
|
||||||
|
|
||||||
<a class="brand-link pb-1 mt-1" href="/agent/clients.php">
|
<a class="brand-link pb-1 mt-1" href="/agent/clients.php">
|
||||||
<p class="h5">
|
<p class="h5">
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ header("X-Frame-Options: DENY");
|
|||||||
</head>
|
</head>
|
||||||
<body class="
|
<body class="
|
||||||
hold-transition sidebar-mini layout-fixed layout-navbar-fixed
|
hold-transition sidebar-mini layout-fixed layout-navbar-fixed
|
||||||
accent-<?php echo isset($_GET['client_id']) ? 'blue' : nullable_htmlentities($config_theme); ?>
|
accent-<?php echo nullable_htmlentities($config_theme); ?>
|
||||||
<?php if ($user_config_theme_dark) echo 'dark-mode'; ?>
|
<?php if ($user_config_theme_dark) echo 'dark-mode'; ?>
|
||||||
">
|
">
|
||||||
<div class="wrapper text-sm">
|
<div class="wrapper text-sm">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<nav class="main-header navbar navbar-expand navbar-<?php if (isset($_GET['client_id'])) { echo "gray"; } else { echo nullable_htmlentities($config_theme); } ?> navbar-dark">
|
<nav class="main-header navbar navbar-expand navbar-<?php echo nullable_htmlentities($config_theme); ?> navbar-dark">
|
||||||
|
|
||||||
<!-- Left navbar links -->
|
<!-- Left navbar links -->
|
||||||
<ul class="navbar-nav">
|
<ul class="navbar-nav">
|
||||||
|
|||||||
Reference in New Issue
Block a user