forked from github/plane
fix: cycle and module quick action z-index (#4293)
This commit is contained in:
parent
80461e6484
commit
f2fa6452c9
@ -235,7 +235,7 @@ export const CyclesBoardCard: FC<ICyclesBoardCard> = observer((props) => {
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
<div className="absolute right-4 bottom-3.5 z-[5] flex items-center gap-1.5">
|
||||
<div className="absolute right-4 bottom-3.5 flex items-center gap-1.5">
|
||||
{isEditingAllowed && (
|
||||
<FavoriteStar
|
||||
onClick={(e) => {
|
||||
|
@ -202,7 +202,7 @@ export const CyclesListItem: FC<TCyclesListItem> = observer((props) => {
|
||||
<span className="h-6 w-52 flex-shrink-0" />
|
||||
</div>
|
||||
</Link>
|
||||
<div className="absolute right-5 bottom-8 z-[5] flex items-center gap-1.5">
|
||||
<div className="absolute right-5 bottom-8 flex items-center gap-1.5">
|
||||
<div className="relative flex w-full flex-shrink-0 items-center justify-between gap-2.5 md:w-auto md:flex-shrink-0 md:justify-end">
|
||||
{currentCycle && (
|
||||
<div
|
||||
|
@ -227,7 +227,7 @@ export const ModuleCardItem: React.FC<Props> = observer((props) => {
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
<div className="absolute right-4 bottom-3.5 z-[5] flex items-center gap-1.5">
|
||||
<div className="absolute right-4 bottom-3.5 flex items-center gap-1.5">
|
||||
{isEditingAllowed && (
|
||||
<FavoriteStar
|
||||
onClick={(e) => {
|
||||
|
@ -175,7 +175,7 @@ export const ModuleListItem: React.FC<Props> = observer((props) => {
|
||||
<span className="h-6 w-52 flex-shrink-0" />
|
||||
</div>
|
||||
</Link>
|
||||
<div className="absolute right-5 bottom-8 z-[5] flex items-center gap-1.5">
|
||||
<div className="absolute right-5 bottom-8 flex items-center gap-1.5">
|
||||
<div className="flex flex-shrink-0 items-center justify-center">
|
||||
{moduleStatus && (
|
||||
<span
|
||||
|
Loading…
Reference in New Issue
Block a user