mirror of https://github.com/itflow-org/itflow
Simplified themimg, Added Hyperlink colors to the theme as well
This commit is contained in:
parent
196806e449
commit
7d29b551e7
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Main Sidebar Container -->
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme_side_nav_accent_color; ?> d-print-none">
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme; ?> d-print-none">
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="sidebar">
|
||||
|
|
|
|||
|
|
@ -84,9 +84,6 @@ $config_currency_format = "US_en";
|
|||
// Theme
|
||||
$config_theme = $row['config_theme'];
|
||||
$config_enable_dark_mode = "dark_mode";
|
||||
$config_theme_navbar_color = $config_theme;
|
||||
$config_theme_side_nav_accent_color = $config_theme;
|
||||
$config_theme_hyperlink_accent = "";
|
||||
|
||||
$colors_array = array(
|
||||
'green',
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ header("X-Frame-Options: DENY");
|
|||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<title><?php echo $config_app_name; ?></title>
|
||||
<title><?php echo "$session_company_name | $config_app_name"; ?></title>
|
||||
|
||||
<!-- Font Awesome Icons -->
|
||||
<link rel="stylesheet" href="plugins/fontawesome-free/css/all.min.css">
|
||||
|
|
@ -38,5 +38,5 @@ header("X-Frame-Options: DENY");
|
|||
<script src="plugins/toastr/toastr.min.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="hold-transition sidebar-mini accent-<?php echo $config_theme_hyperlink_accent; ?>">
|
||||
<body class="hold-transition sidebar-mini accent-<?php echo $config_theme; ?>">
|
||||
<div class="wrapper text-sm">
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Main Sidebar Container -->
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme_side_nav_accent_color; ?> d-print-none">
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme; ?> d-print-none">
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="sidebar">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Main Sidebar Container -->
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme_side_nav_accent_color; ?> elevation-3 d-print-none">
|
||||
<aside class="main-sidebar sidebar-dark-<?php echo $config_theme; ?> elevation-3 d-print-none">
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="sidebar">
|
||||
|
|
|
|||
|
|
@ -156,8 +156,8 @@ $user_active_assigned_tickets = $row['total_tickets_assigned'];
|
|||
<div class="card-header py-2">
|
||||
<h3 class="card-title mt-2"><i class="fa fa-fw fa-life-ring"></i> Tickets
|
||||
<small class="ml-3">
|
||||
<a href="?status=Open"><strong><?php echo $total_tickets_open; ?></strong> Open</a> |
|
||||
<a href="?status=Closed"><strong><?php echo $total_tickets_closed; ?></strong> Closed</a>
|
||||
<a href="?status=Open" class="text-white"><strong><?php echo $total_tickets_open; ?></strong> Open</a> |
|
||||
<a href="?status=Closed" class="text-white"><strong><?php echo $total_tickets_closed; ?></strong> Closed</a>
|
||||
</small>
|
||||
</h3>
|
||||
<button type="button" class="btn btn-dark dropdown-toggle ml-1" data-toggle="dropdown"></button>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Navbar -->
|
||||
<nav class="main-header navbar navbar-expand navbar-<?php echo $config_theme_navbar_color; ?> navbar-dark">
|
||||
<nav class="main-header navbar navbar-expand navbar-<?php echo $config_theme; ?> navbar-dark">
|
||||
|
||||
<!-- Left navbar links -->
|
||||
<ul class="navbar-nav">
|
||||
|
|
|
|||
Loading…
Reference in New Issue