style: list and kanban view theming (#906)

* fix: sidebar workspace dropdown logo

* style: list and kanban view theming
This commit is contained in:
Aaryan Khandelwal 2023-04-20 18:13:21 +05:30 committed by GitHub
parent 170b3d6eec
commit 952d35dd79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 170 additions and 144 deletions

View file

@ -52,19 +52,19 @@ export const ViewPrioritySelect: React.FC<Props> = ({
customButton={
<button
type="button"
className={`grid h-6 w-6 place-items-center rounded ${
className={`grid h-6 w-6 place-items-center rounded border border-brand-base ${
isNotAllowed ? "cursor-not-allowed" : "cursor-pointer"
} items-center shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 ${
} items-center shadow-sm ${
issue.priority === "urgent"
? "bg-red-100 text-red-600 hover:bg-red-100"
? "text-red-600"
: issue.priority === "high"
? "bg-orange-100 text-orange-500 hover:bg-orange-100"
? "text-orange-500"
: issue.priority === "medium"
? "bg-yellow-100 text-yellow-500 hover:bg-yellow-100"
? "text-yellow-500"
: issue.priority === "low"
? "bg-green-100 text-green-500 hover:bg-green-100"
: "bg-gray-100"
} border-none`}
? "bg-green-100 text-green-500"
: ""
}`}
>
<Tooltip tooltipHeading="Priority" tooltipContent={issue.priority ?? "None"}>
<span>