fdaudens commited on
Commit
ac718f1
·
verified ·
1 Parent(s): ed73e3c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +18 -13
index.html CHANGED
@@ -97,10 +97,6 @@
97
  background-color: #f59e0b;
98
  }
99
 
100
- .status-settled {
101
- background-color: #10b981;
102
- }
103
-
104
  .status-dismissed {
105
  background-color: #6b7280;
106
  }
@@ -108,6 +104,10 @@
108
  .status-active {
109
  background-color: #3b82f6;
110
  }
 
 
 
 
111
 
112
  .expandable {
113
  max-height: 0;
@@ -157,15 +157,20 @@
157
  </div>
158
  </div>
159
 
160
- <div class="flex justify-center mb-6">
161
- <div class="flex flex-wrap gap-2">
162
- <button class="filter-btn px-4 py-2 rounded-full bg-blue-100 text-blue-700 hover:bg-blue-200 transition" data-filter="all">All Cases</button>
163
- <button class="filter-btn px-4 py-2 rounded-full bg-orange-100 text-orange-700 hover:bg-orange-200 transition" data-filter="pending">Pending</button>
164
- <button class="filter-btn px-4 py-2 rounded-full bg-green-100 text-green-700 hover:bg-green-200 transition" data-filter="settled">Settled</button>
165
- <button class="filter-btn px-4 py-2 rounded-full bg-blue-100 text-blue-700 hover:bg-blue-200 transition" data-filter="active">Active</button>
166
- <button class="filter-btn px-4 py-2 rounded-full bg-gray-100 text-gray-700 hover:bg-gray-200 transition" data-filter="dismissed">Dismissed</button>
167
- </div>
168
- </div>
 
 
 
 
 
169
 
170
 
171
  <div class="timeline-container" id="timeline"></div>
 
97
  background-color: #f59e0b;
98
  }
99
 
 
 
 
 
100
  .status-dismissed {
101
  background-color: #6b7280;
102
  }
 
104
  .status-active {
105
  background-color: #3b82f6;
106
  }
107
+
108
+ .status-ruling {
109
+ background-color: #a855f7; /* purple-500 */
110
+ }
111
 
112
  .expandable {
113
  max-height: 0;
 
157
  </div>
158
  </div>
159
 
160
+ <div class="flex flex-wrap gap-2">
161
+ <button class="filter-btn px-4 py-2 rounded-full bg-yellow-100 text-yellow-700 hover:bg-yellow-200 transition" data-filter="pending">
162
+ Pending
163
+ </button>
164
+ <button class="filter-btn px-4 py-2 rounded-full bg-blue-100 text-blue-700 hover:bg-blue-200 transition" data-filter="active">
165
+ Active
166
+ </button>
167
+ <button class="filter-btn px-4 py-2 rounded-full bg-purple-100 text-purple-700 hover:bg-purple-200 transition" data-filter="ruling">
168
+ Ruling
169
+ </button>
170
+ <button class="filter-btn px-4 py-2 rounded-full bg-gray-100 text-gray-700 hover:bg-gray-200 transition" data-filter="dismissed">
171
+ Dismissed
172
+ </button>
173
+ </div>
174
 
175
 
176
  <div class="timeline-container" id="timeline"></div>