This commit is contained in:
WBHarry 2025-11-25 23:16:30 +01:00
parent 4954e41b02
commit aec5c06da7
14 changed files with 156 additions and 46 deletions

View file

@ -52,6 +52,15 @@
align-items: center;
justify-content: center;
}
.effect-locked {
position: absolute;
bottom: 2px;
right: 2px;
font-size: 12px;
color: @golden;
filter: drop-shadow(0 0 3px black);
}
}
}
}

View file

@ -2,8 +2,9 @@
position: absolute;
right: 0;
width: 68px;
max-height: 300px;
max-height: 600px;
overflow: hidden;
border: 0;
.window-content {
> div {
@ -14,13 +15,20 @@
.effects-display-container {
display: flex;
flex-direction: column;
gap: 8px;
gap: 4px;
.effect-container {
cursor: pointer;
position: relative;
pointer-events: all;
border: 2px solid light-dark(@dark-blue, @golden);
img {
pointer-events: all;
.effect-locked {
position: absolute;
bottom: 4px;
right: 4px;
font-size: 24px;
color: @golden;
filter: drop-shadow(0 0 3px black);
}
}
}

View file

@ -15,5 +15,14 @@
font-style: italic;
}
}
.tooltip-footer {
display: flex;
justify-content: center;
font-size: 12px;
width: 100%;
font-style: italic;
font-weight: bold;
}
}
}