f72f71fd32
* initial market - routing - store - load market data * move drawer/drawerSlider / count/star badge to components/ui * filter market categories * shopItem with gem / gold * show count of purchable items * show count of purchable itemsshow drawer with currently owned items + DrawerHeaderTabs-Component * show featured gear * show Gear - filter by class - sort by (type, price, stats) - sort market items * Component: ItemRows - shows only the max items in one row (depending on the available width) * Sell Dialog + Balance Component * generic buy-dialog / attributes grid with highlight * buyItem - hide already owned gear * filter: hide locked/pinned - lock items if not enough gold * API: Sell multiple items * show avatar in buy-equipment-dialog with changed gear * market banner * misc fixes * filter by text * pin/unpin gear store actions * Sell API: amount as query-parameter * Update user.js * fixes * fix sell api amount test * add back stroke/fill currentColor * use scss variables
80 lines
1.3 KiB
SCSS
80 lines
1.3 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;
|
|
}
|
|
}
|
|
|
|
.flat .item {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.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;
|
|
}
|