Skip to content

Commit

Permalink
Remove obsolete dark color options
Browse files Browse the repository at this point in the history
  • Loading branch information
joschrew committed Nov 8, 2024
1 parent 91af9a6 commit 2412579
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/components/dashview/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ export default {
switch (status) {
case "SUCCESS":
cssClass =
"bg-green-100 text-green-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded dark:bg-green-200 dark:text-green-900";
"bg-green-100 text-green-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded";
break;
case "PROCESSING":
cssClass =
"bg-yellow-100 text-yellow-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded dark:bg-yellow-200 dark:text-yellow-900";
"bg-yellow-100 text-yellow-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded";
break;
case "FAILED":
cssClass =
"bg-red-100 text-red-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded dark:bg-red-200 dark:text-red-900";
"bg-red-100 text-red-800 text-xs font-semibold mr-2 px-2.5 py-0.5 rounded";
break;
}
return cssClass;
Expand Down
6 changes: 3 additions & 3 deletions src/components/search/SearchFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="w-full relative">
<div class="ml-2 mt-2">
<label
class="mb-1 inline-block w-full font-medium rounded dark:text-sky-300"
class="mb-1 inline-block w-full font-medium rounded"
for="searchoptions">
Search Options:
</label>
Expand All @@ -24,7 +24,7 @@
/>
<label
:for="item.label"
class="w-full font-medium text-sm text-sky-900 rounded dark:text-sky-300"
class="w-full font-medium text-sm text-sky-900 rounded"
>
{{ item.label }}
</label>
Expand All @@ -33,7 +33,7 @@
<div class="m-2">
<hr class="filter-hr" />
<label
class="mt-2 mb-0.5 inline-block w-full font-medium rounded dark:text-sky-300"
class="mt-2 mb-0.5 inline-block w-full font-medium rounded"
for="textsearch">
Search in Fields:
</label>
Expand Down

0 comments on commit 2412579

Please sign in to comment.