mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
* reposition FlyingPigs and Hydra * hide count-badge if 0 * fix sortBy hatchable (ignore already hatched pets) * always show animal name * featuredItems, use shopItem objects * fix egg / potion names in market * buyModals: check for price, mark it if not enough available / change buy-button opacity / show purchaseGems button * save itemRows open/collapsed state during session, refactor itemRows for some more performance * pin featured items * show bordered items in market buyModal * fix popover margins / paddings * position pinned items popovers to the left
89 lines
1.4 KiB
SCSS
89 lines
1.4 KiB
SCSS
// TODO move to item component?
|
|
|
|
.items > div {
|
|
display: inline-block;
|
|
margin-right: 24px;
|
|
}
|
|
|
|
.items > div:last-of-type {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.item-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.items-one-line .item-wrapper {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.item {
|
|
position: relative;
|
|
width: 94px;
|
|
height: 92px;
|
|
border-radius: 2px;
|
|
background: $white;
|
|
box-shadow: 0 2px 2px 0 rgba($black, 0.15), 0 1px 4px 0 rgba($black, 0.1);
|
|
border: 1px solid transparent;
|
|
|
|
&-empty {
|
|
background: $gray-10;
|
|
box-shadow: none;
|
|
cursor: auto;
|
|
}
|
|
|
|
&-active {
|
|
background: $purple-500;
|
|
}
|
|
|
|
&:hover {
|
|
box-shadow: 0 4px 4px 0 rgba($black, 0.16), 0 1px 8px 0 rgba($black, 0.12);
|
|
border-color: $purple-500;
|
|
}
|
|
|
|
&.highlight {
|
|
box-shadow: 0 0 8px 8px rgba($black, 0.16), 0 5px 10px 0 rgba($black, 0.12) !important;
|
|
}
|
|
|
|
&.highlight-border {
|
|
border-color: $purple-500;
|
|
}
|
|
}
|
|
|
|
.flat .item {
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
.bordered-item .item {
|
|
background: $gray-700 !important;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.drawer-content .item:hover {
|
|
border-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.item .item-content {
|
|
margin: auto;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.item-label {
|
|
display: block;
|
|
width: 94px;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
line-height: 1.33;
|
|
text-align: center;
|
|
color: $gray-400;
|
|
margin-top: 4px;
|
|
}
|