Update index.html
Browse files- 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 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|