2019-05-19 17:39:30 +10:00
|
|
|
.drag-content {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: move;
|
|
|
|
user-select: none;
|
|
|
|
background-color: var(--modalfooter);
|
2020-05-15 13:47:01 +10:00
|
|
|
margin: 0.4rem;
|
|
|
|
border-radius: 0.4rem;
|
2019-05-19 17:39:30 +10:00
|
|
|
color: var(--color);
|
|
|
|
padding: 3px;
|
|
|
|
display: grid;
|
2020-05-15 13:47:01 +10:00
|
|
|
grid-template-columns: 3.3rem 1fr 4.6rem;
|
2019-05-19 17:39:30 +10:00
|
|
|
grid-template-areas: "sorticon sorttitle sorttitle" "sorticon sortacct sortaction";
|
2018-07-28 07:25:12 +10:00
|
|
|
}
|
2019-03-15 06:48:01 +11:00
|
|
|
.sorticon {
|
2019-05-19 17:39:30 +10:00
|
|
|
grid-area: sorticon;
|
2018-07-28 07:25:12 +10:00
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
.sorticon i {
|
2020-05-15 13:47:01 +10:00
|
|
|
font-size: 3.3rem;
|
2018-07-28 07:25:12 +10:00
|
|
|
}
|
2019-03-15 06:48:01 +11:00
|
|
|
.sorttitle {
|
2020-05-15 13:47:01 +10:00
|
|
|
margin-left: 0.4rem;
|
2019-05-19 17:39:30 +10:00
|
|
|
grid-area: sorttitle;
|
2019-03-15 06:48:01 +11:00
|
|
|
}
|
|
|
|
.sortacct {
|
2020-05-15 13:47:01 +10:00
|
|
|
margin-left: 0.4rem;
|
2019-05-19 17:39:30 +10:00
|
|
|
grid-area: sortacct;
|
2019-03-15 06:48:01 +11:00
|
|
|
}
|
|
|
|
.sortaction {
|
2020-05-15 13:47:01 +10:00
|
|
|
margin-left: 0.4rem;
|
2019-05-19 17:39:30 +10:00
|
|
|
grid-area: sortaction;
|
|
|
|
}
|