0a691ffb4f
* extract seasonal-shop config - use summer season items (to work on) * add suggested border to shopItems * refactor getOfficialPinnedItems (now includes the seasonal gear) * refactor shops.getSeasonalShop - add featured items to result - add the set to special equipment items * feat(content): Fall 2017 seasonal gear Also adds set keys for all prior seasonal gear. * show item limited time (buyModal & shopItem) * select seasonal fall sets * WIP(seasonal-shop): placeholder Fall 2017 items * fix lint * sprites * styling + fix purchase of seasonal spells * compile sprites * fixes: check isPinned with officialItems * enable purchase of seasonal items for testing * fix shop apis * add featuredItems to market * quest shop: add featuredItems to api * tiem travelers shop: add featuredItems to api * fix gear types filter * feat(content): Fall 2017 compleat * chore(sprites): compile * show opened shop state (npc+background) * add opened seasonal npc * current seasonal users class set = purchase by gold - lock other sets of the current season * hide event badge in seasonal shop - dot only for suggested items - cursor: pointer on shopItems * refresh rewards column list (seasonal gear won't refresh it on purchase) * fix duplicate seasonal gear -> remove special items from the old reward gear (which is used to reset the pinned gears) * every current season gear is purchased by gold - prevent buyModal on locked items * use the current event date range * list seasonal sets by event date * use custom method instead of updateStore to list the pinnable gear * change daterange to 10-31 * fix start quest modal from items - disable invite quest button if a quest is already active * toggle pin in buy-dialogs * check if the item is not undefined/null - renamed the watch function
103 lines
1.7 KiB
SCSS
103 lines
1.7 KiB
SCSS
// TODO move to item component?
|
|
|
|
.items > div {
|
|
display: inline-block;
|
|
margin-right: 23px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
&.suggested {
|
|
box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12);
|
|
border: solid 1px $suggested-item-color;
|
|
}
|
|
|
|
&.suggested:hover {
|
|
border: solid 1px $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;
|
|
}
|
|
|
|
.questPopover {
|
|
width: 200px;
|
|
}
|