1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-20 16:53:44 +02:00
RPGnotes/static/scss/_loot.scss

46 lines
556 B
SCSS
Raw Normal View History

2021-10-04 22:13:24 +02:00
.collapse-cell {
padding: 0 !important;
border: none !important;
}
.cell-box {
padding: 0.5rem;
//border: solid 1px $gray-900;
}
.chev {
transition: transform .2s;
width: 13px;
height: auto;
2021-10-04 22:17:09 +02:00
fill: currentColor;
2021-10-04 22:13:24 +02:00
}
tr.collapsed .chev {
transform: rotate(90deg);
}
tr.collapse-button {
transition: all .2s;
2021-11-25 14:08:10 +01:00
cursor: pointer;
2021-10-04 22:13:24 +02:00
&:not(.collapsed) {
background: $gray-800;
color: white;
}
}
tr td:first-child {
width: 20px;
}
svg.icon {
width: 16px;
height: auto;
}
2021-10-17 18:54:30 +02:00
.item-image {
display: block;
float: right;
}