✨ Enhance Project Tracker Date Picker & Dark Mode Support
� Features Added: - Fixed date picker display issues in project tracker - Added default date range (last 7 days to today) - Implemented beautiful CSS styling for light mode - Added comprehensive dark mode support - Fixed CSS conflicts with form-control classes � UI Improvements: - Modern date picker with orange accent (#ff9f43) - Smooth hover and focus effects - Consistent 42px height for all controls - Better spacing with gap-3 between filters - Professional box shadows and border radius � Dark Mode Features: - Dark background (#1d1d42) for date picker - Gray borders (#67748E) for better contrast - White text for better readability - Dark dropdown menus and calendar - Automatic theme switching via Theme Customizer � Technical Fixes: - Removed CSS conflicts with Bootstrap - Added proper state management for date range - Used dayjs for date handling - Fixed ESLint warnings - Improved component performance
This commit is contained in:
parent
0b126aab3c
commit
a28fcc99ae
@ -6,6 +6,7 @@ import {
|
|||||||
Trash2,
|
Trash2,
|
||||||
Plus
|
Plus
|
||||||
} from 'feather-icons-react';
|
} from 'feather-icons-react';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
const { Option } = Select;
|
const { Option } = Select;
|
||||||
const { RangePicker } = DatePicker;
|
const { RangePicker } = DatePicker;
|
||||||
@ -16,6 +17,10 @@ const ProjectTracker = () => {
|
|||||||
const [filterManager, setFilterManager] = useState('All Managers');
|
const [filterManager, setFilterManager] = useState('All Managers');
|
||||||
const [filterPriority, setFilterPriority] = useState('All Priority');
|
const [filterPriority, setFilterPriority] = useState('All Priority');
|
||||||
const [sortBy, setSortBy] = useState('Last 7 Days');
|
const [sortBy, setSortBy] = useState('Last 7 Days');
|
||||||
|
const [dateRange, setDateRange] = useState([
|
||||||
|
dayjs().subtract(7, 'day'),
|
||||||
|
dayjs()
|
||||||
|
]);
|
||||||
|
|
||||||
// Sample project data
|
// Sample project data
|
||||||
const projectData = [
|
const projectData = [
|
||||||
@ -367,17 +372,25 @@ const ProjectTracker = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="search-path">
|
<div className="search-path">
|
||||||
<div className="d-flex align-items-center">
|
<div className="d-flex align-items-center gap-3">
|
||||||
<RangePicker
|
<RangePicker
|
||||||
|
value={dateRange}
|
||||||
|
onChange={setDateRange}
|
||||||
placeholder={['Start Date', 'End Date']}
|
placeholder={['Start Date', 'End Date']}
|
||||||
className="form-control"
|
className="project-date-picker"
|
||||||
|
format="DD/MM/YYYY"
|
||||||
|
allowClear={false}
|
||||||
|
style={{
|
||||||
|
height: '42px',
|
||||||
|
width: '280px'
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Select
|
<Select
|
||||||
value={filterPriority}
|
value={filterPriority}
|
||||||
onChange={setFilterPriority}
|
onChange={setFilterPriority}
|
||||||
className="form-control"
|
className="project-filter-select"
|
||||||
style={{ width: 120 }}
|
style={{ width: 120, height: 42 }}
|
||||||
>
|
>
|
||||||
<Option value="All Priority">Priority</Option>
|
<Option value="All Priority">Priority</Option>
|
||||||
<Option value="High">High</Option>
|
<Option value="High">High</Option>
|
||||||
@ -388,8 +401,8 @@ const ProjectTracker = () => {
|
|||||||
<Select
|
<Select
|
||||||
value={filterManager}
|
value={filterManager}
|
||||||
onChange={setFilterManager}
|
onChange={setFilterManager}
|
||||||
className="form-control"
|
className="project-filter-select"
|
||||||
style={{ width: 140 }}
|
style={{ width: 140, height: 42 }}
|
||||||
>
|
>
|
||||||
<Option value="All Managers">Manager</Option>
|
<Option value="All Managers">Manager</Option>
|
||||||
<Option value="John Smith">John Smith</Option>
|
<Option value="John Smith">John Smith</Option>
|
||||||
@ -400,8 +413,8 @@ const ProjectTracker = () => {
|
|||||||
<Select
|
<Select
|
||||||
value={filterStatus}
|
value={filterStatus}
|
||||||
onChange={setFilterStatus}
|
onChange={setFilterStatus}
|
||||||
className="form-control"
|
className="project-filter-select"
|
||||||
style={{ width: 140 }}
|
style={{ width: 140, height: 42 }}
|
||||||
>
|
>
|
||||||
<Option value="All Status">Select Status</Option>
|
<Option value="All Status">Select Status</Option>
|
||||||
<Option value="Planning">Planning</Option>
|
<Option value="Planning">Planning</Option>
|
||||||
@ -413,8 +426,8 @@ const ProjectTracker = () => {
|
|||||||
<Select
|
<Select
|
||||||
value={sortBy}
|
value={sortBy}
|
||||||
onChange={setSortBy}
|
onChange={setSortBy}
|
||||||
className="form-control"
|
className="project-filter-select"
|
||||||
style={{ width: 140 }}
|
style={{ width: 140, height: 42 }}
|
||||||
>
|
>
|
||||||
<Option value="Last 7 Days">Sort By: Last 7 Days</Option>
|
<Option value="Last 7 Days">Sort By: Last 7 Days</Option>
|
||||||
<Option value="Last 30 Days">Last 30 Days</Option>
|
<Option value="Last 30 Days">Last 30 Days</Option>
|
||||||
|
|||||||
@ -27,10 +27,493 @@ $__basecolor: #2c3038;
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Project Date Picker Styling - Fix display issues
|
||||||
|
.project-date-picker.ant-picker {
|
||||||
|
background: #ffffff !important;
|
||||||
|
border: 1px solid #dbe0e6 !important;
|
||||||
|
border-radius: 6px !important;
|
||||||
|
height: 42px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
font-size: 14px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 2px 6px rgba(255, 159, 67, 0.2) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus,
|
||||||
|
&.ant-picker-focused {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.2) !important;
|
||||||
|
outline: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-input {
|
||||||
|
padding: 8px 12px;
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 14px !important;
|
||||||
|
color: #333 !important;
|
||||||
|
border: none !important;
|
||||||
|
background: transparent !important;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: #999 !important;
|
||||||
|
font-size: 13px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-separator {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
font-weight: 600 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-suffix {
|
||||||
|
display: flex !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Override any conflicting form-control styles
|
||||||
|
&.form-control {
|
||||||
|
padding: 0 !important;
|
||||||
|
height: 42px !important;
|
||||||
|
border: 1px solid #dbe0e6 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Date Picker Dropdown Styling
|
||||||
|
:where(.css-dev-only-do-not-override-1ae8k9u).ant-picker-dropdown {
|
||||||
|
.ant-picker-panel-container {
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
||||||
|
border: 1px solid #e6e6e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-header {
|
||||||
|
border-bottom: 1px solid #f0f0f0;
|
||||||
|
padding: 12px;
|
||||||
|
|
||||||
|
.ant-picker-header-view {
|
||||||
|
.ant-picker-month-btn,
|
||||||
|
.ant-picker-year-btn {
|
||||||
|
color: #333;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ff9f43;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-header-super-prev-btn,
|
||||||
|
.ant-picker-header-prev-btn,
|
||||||
|
.ant-picker-header-next-btn,
|
||||||
|
.ant-picker-header-super-next-btn {
|
||||||
|
color: #666;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ff9f43;
|
||||||
|
background: rgba(255, 159, 67, 0.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-content {
|
||||||
|
.ant-picker-cell {
|
||||||
|
&:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
|
||||||
|
background: rgba(255, 159, 67, 0.1);
|
||||||
|
color: #ff9f43;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-selected .ant-picker-cell-inner,
|
||||||
|
&.ant-picker-cell-range-start .ant-picker-cell-inner,
|
||||||
|
&.ant-picker-cell-range-end .ant-picker-cell-inner {
|
||||||
|
background: #ff9f43;
|
||||||
|
color: #ffffff;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-in-range .ant-picker-cell-inner {
|
||||||
|
background: rgba(255, 159, 67, 0.2);
|
||||||
|
color: #ff9f43;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-today .ant-picker-cell-inner {
|
||||||
|
border: 1px solid #ff9f43;
|
||||||
|
color: #ff9f43;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-footer {
|
||||||
|
border-top: 1px solid #f0f0f0;
|
||||||
|
padding: 8px 12px;
|
||||||
|
|
||||||
|
.ant-picker-today-btn {
|
||||||
|
color: #ff9f43;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #e8890a;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Project Filter Select Styling - Fix display issues
|
||||||
|
.project-filter-select.ant-select {
|
||||||
|
height: 42px !important;
|
||||||
|
|
||||||
|
.ant-select-selector {
|
||||||
|
background: #ffffff !important;
|
||||||
|
border: 1px solid #dbe0e6 !important;
|
||||||
|
border-radius: 6px !important;
|
||||||
|
height: 42px !important;
|
||||||
|
padding: 8px 12px !important;
|
||||||
|
font-size: 14px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 2px 6px rgba(255, 159, 67, 0.2) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus,
|
||||||
|
&.ant-select-focused {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.2) !important;
|
||||||
|
outline: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-selection-item {
|
||||||
|
color: #333 !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
line-height: 24px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-selection-placeholder {
|
||||||
|
color: #999 !important;
|
||||||
|
font-size: 13px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-arrow {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-select-open .ant-select-selector {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.2) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Override any conflicting form-control styles
|
||||||
|
&.form-control {
|
||||||
|
padding: 0 !important;
|
||||||
|
height: 42px !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Project Filter Dropdown Styling
|
||||||
|
.ant-select-dropdown {
|
||||||
|
.ant-select-item {
|
||||||
|
padding: 8px 12px !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(255, 159, 67, 0.1) !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-select-item-option-selected {
|
||||||
|
background: #ff9f43 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
font-weight: 500 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fix any conflicts with existing ant-picker styles
|
||||||
.ant-picker-suffix {
|
.ant-picker-suffix {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project-date-picker .ant-picker-suffix {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure proper spacing for project tracker filters
|
||||||
|
.search-path .d-flex.gap-3 > * {
|
||||||
|
margin-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Override any Bootstrap form-control conflicts
|
||||||
|
.project-date-picker.form-control,
|
||||||
|
.project-filter-select.form-control {
|
||||||
|
padding: 0 !important;
|
||||||
|
border: none !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
background: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark Mode Styles for Project Tracker Date Picker and Filters
|
||||||
|
[data-layout-mode=dark_mode] {
|
||||||
|
// Project Date Picker Dark Mode
|
||||||
|
.project-date-picker.ant-picker {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
border: 1px solid #67748E !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 2px 6px rgba(255, 159, 67, 0.3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus,
|
||||||
|
&.ant-picker-focused {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-input {
|
||||||
|
input {
|
||||||
|
color: #ffffff !important;
|
||||||
|
background: transparent !important;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: #67748E !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-separator {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-suffix {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Project Filter Select Dark Mode
|
||||||
|
.project-filter-select.ant-select {
|
||||||
|
.ant-select-selector {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
border: 1px solid #67748E !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 2px 6px rgba(255, 159, 67, 0.3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus,
|
||||||
|
&.ant-select-focused {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-selection-item {
|
||||||
|
color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-selection-placeholder {
|
||||||
|
color: #67748E !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-select-arrow {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-select-open .ant-select-selector {
|
||||||
|
border-color: #ff9f43 !important;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.3) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark Mode Dropdown Styling
|
||||||
|
.ant-select-dropdown {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
border: 1px solid #67748E !important;
|
||||||
|
|
||||||
|
.ant-select-item {
|
||||||
|
color: #ffffff !important;
|
||||||
|
background: transparent !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(255, 159, 67, 0.2) !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-select-item-option-selected {
|
||||||
|
background: #ff9f43 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark Mode Date Picker Dropdown
|
||||||
|
.ant-picker-dropdown {
|
||||||
|
.ant-picker-panel-container {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
border: 1px solid #67748E !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-header {
|
||||||
|
border-bottom: 1px solid #67748E !important;
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
|
||||||
|
.ant-picker-header-view {
|
||||||
|
.ant-picker-month-btn,
|
||||||
|
.ant-picker-year-btn {
|
||||||
|
color: #ffffff !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-header-super-prev-btn,
|
||||||
|
.ant-picker-header-prev-btn,
|
||||||
|
.ant-picker-header-next-btn,
|
||||||
|
.ant-picker-header-super-next-btn {
|
||||||
|
color: #67748E !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
background: rgba(255, 159, 67, 0.2) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-content {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
|
||||||
|
.ant-picker-cell {
|
||||||
|
color: #ffffff !important;
|
||||||
|
|
||||||
|
&:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
|
||||||
|
background: rgba(255, 159, 67, 0.2) !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-selected .ant-picker-cell-inner,
|
||||||
|
&.ant-picker-cell-range-start .ant-picker-cell-inner,
|
||||||
|
&.ant-picker-cell-range-end .ant-picker-cell-inner {
|
||||||
|
background: #ff9f43 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-in-range .ant-picker-cell-inner {
|
||||||
|
background: rgba(255, 159, 67, 0.3) !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-today .ant-picker-cell-inner {
|
||||||
|
border: 1px solid #ff9f43 !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ant-picker-cell-disabled .ant-picker-cell-inner {
|
||||||
|
color: #67748E !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-picker-footer {
|
||||||
|
border-top: 1px solid #67748E !important;
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
|
||||||
|
.ant-picker-today-btn {
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #e8890a !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Additional Dark Mode Styles for Project Tracker
|
||||||
|
.card.table-list-card {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
border: 1px solid #67748E !important;
|
||||||
|
|
||||||
|
.card-body {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-top {
|
||||||
|
.search-set {
|
||||||
|
.search-input {
|
||||||
|
span {
|
||||||
|
color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge.badge-primary {
|
||||||
|
background: #ff9f43 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark mode for table content
|
||||||
|
.table-responsive {
|
||||||
|
.ant-table {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
|
||||||
|
.ant-table-thead > tr > th {
|
||||||
|
background: #141432 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
border-bottom: 1px solid #67748E !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-table-tbody > tr > td {
|
||||||
|
background: #1d1d42 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
border-bottom: 1px solid #67748E !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-table-tbody > tr:hover > td {
|
||||||
|
background: rgba(255, 159, 67, 0.1) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark mode for progress bars
|
||||||
|
.ant-progress {
|
||||||
|
.ant-progress-bg {
|
||||||
|
background: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-progress-outer {
|
||||||
|
.ant-progress-inner {
|
||||||
|
background: #67748E !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dark mode for tags
|
||||||
|
.ant-tag {
|
||||||
|
background: rgba(255, 159, 67, 0.2) !important;
|
||||||
|
border: 1px solid #ff9f43 !important;
|
||||||
|
color: #ff9f43 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.swal2-confirm {
|
.swal2-confirm {
|
||||||
background-color: #ff8d1f !important;
|
background-color: #ff8d1f !important;
|
||||||
border: 1px solid #ff8d1f !important;
|
border: 1px solid #ff8d1f !important;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user