|
|
@ -452,12 +452,12 @@ border-bottom: 1px solid rgba(128,128,128,0.5); |
|
|
|
} |
|
|
|
} |
|
|
|
.itemWrapper { |
|
|
|
.itemWrapper { |
|
|
|
display: grid; |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 56px 1fr 1fr 1fr minmax(16px,auto); |
|
|
|
grid-template-columns: minmax(56px,auto) 1fr auto minmax(16px,auto); |
|
|
|
grid-template-rows: auto 1fr auto; |
|
|
|
grid-template-rows: auto 1fr auto; |
|
|
|
grid-template-areas: |
|
|
|
grid-template-areas: |
|
|
|
"img itemname itemname itemname rarity" |
|
|
|
"img itemname itemname rarity" |
|
|
|
"img . . . ." |
|
|
|
"img . . ." |
|
|
|
"img properties properties controls controls"; |
|
|
|
"img properties controls controls"; |
|
|
|
} |
|
|
|
} |
|
|
|
.itemImgWrapper { |
|
|
|
.itemImgWrapper { |
|
|
|
grid-area: img; |
|
|
|
grid-area: img; |
|
|
@ -475,6 +475,7 @@ border-bottom: 1px solid rgba(128,128,128,0.5); |
|
|
|
grid-area: itemname; |
|
|
|
grid-area: itemname; |
|
|
|
margin: 0 10px; |
|
|
|
margin: 0 10px; |
|
|
|
padding: 2px 2px 0 2px; |
|
|
|
padding: 2px 2px 0 2px; |
|
|
|
|
|
|
|
white-space: nowrap; |
|
|
|
} |
|
|
|
} |
|
|
|
.itemRarityWrapper { |
|
|
|
.itemRarityWrapper { |
|
|
|
grid-area: rarity; |
|
|
|
grid-area: rarity; |
|
|
@ -484,14 +485,30 @@ border-bottom: 1px solid rgba(128,128,128,0.5); |
|
|
|
grid-area: properties; |
|
|
|
grid-area: properties; |
|
|
|
margin: 0 10px; |
|
|
|
margin: 0 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.itemPropertiesWrapper > span { |
|
|
|
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
|
|
} |
|
|
|
.itemControlsWrapper { |
|
|
|
.itemControlsWrapper { |
|
|
|
grid-area: controls; |
|
|
|
grid-area: controls; |
|
|
|
text-align: right; |
|
|
|
text-align: right; |
|
|
|
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.itemControlsWrapper > span:nth-child(1) { |
|
|
|
|
|
|
|
background-color: rgba(113,169,189,0.33); |
|
|
|
|
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.itemControlsWrapper > span:nth-child(2) { |
|
|
|
|
|
|
|
background-color:rgba(0,0,0,0.33); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.itemControlsWrapper > span:nth-child(3) { |
|
|
|
|
|
|
|
background-color: rgba(113,169,189,0.33); |
|
|
|
|
|
|
|
cursor: pointer; |
|
|
|
} |
|
|
|
} |
|
|
|
.itemControlsWrapper > span { |
|
|
|
.itemControlsWrapper > span { |
|
|
|
display:inline-block; |
|
|
|
display:inline-block; |
|
|
|
background-color:red; |
|
|
|
padding: 5px 10px; |
|
|
|
margin-right: 0 !important; |
|
|
|
text-align: center; |
|
|
|
|
|
|
|
margin: 0 0 0 5px; |
|
|
|
} |
|
|
|
} |
|
|
|
li.r1 { |
|
|
|
li.r1 { |
|
|
|
background-image: url("./icons/NGSUIRarity1Star.png"); |
|
|
|
background-image: url("./icons/NGSUIRarity1Star.png"); |
|
|
@ -525,7 +542,6 @@ li.r4 { |
|
|
|
.itemlist li span { |
|
|
|
.itemlist li span { |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-position: left center; |
|
|
|
background-position: left center; |
|
|
|
margin-right: 10px; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
.atk:before { |
|
|
|
.atk:before { |
|
|
|
content: url("./icons/NGSUIStatATKOutline.png"); |
|
|
|
content: url("./icons/NGSUIStatATKOutline.png"); |
|
|
|