* Fix job accessory popover, so shields and manatura can be selected again * Don't show AX skill section in weapon hovercard if no AX skill is set * Center uncap indicator under item image and fix hovercard header layout * Fix a bug that prevented all ring bonuses from displaying in hovercard * Fix transcendence_step being set to 0 when updating a character's masteries * Fix weapon modal so you can set AX skills on weapons with rupee or exp gain * Ensure job accessory and transcendence popovers open/close properly
52 lines
841 B
SCSS
52 lines
841 B
SCSS
.item {
|
|
background: none;
|
|
border-radius: $input-corner;
|
|
border: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit;
|
|
padding: $unit;
|
|
margin: 0;
|
|
width: 100%;
|
|
|
|
&[data-state='checked'] {
|
|
background: var(--selected-item-bg);
|
|
|
|
&:hover {
|
|
background: var(--selected-item-bg-hover);
|
|
}
|
|
|
|
h4 {
|
|
color: var(--button-text-hover);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
background: var(--input-bg-hover);
|
|
|
|
img {
|
|
transform: scale(1.025);
|
|
}
|
|
|
|
h4 {
|
|
color: var(--button-text-hover);
|
|
}
|
|
}
|
|
|
|
h4 {
|
|
color: var(--button-text);
|
|
font-size: $font-small;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
img {
|
|
border-radius: $item-corner;
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
transition: $duration-zoom all ease-in-out;
|
|
z-index: 2;
|
|
}
|
|
}
|