thedesk/app/css/sort.css

32 lines
590 B
CSS
Raw Normal View History

2019-05-19 17:39:30 +10:00
.drag-content {
text-overflow: ellipsis;
cursor: move;
user-select: none;
background-color: var(--modalfooter);
margin: 5px;
border-radius: 5px;
color: var(--color);
padding: 3px;
display: grid;
grid-template-columns: 43px 1fr 60px;
grid-template-areas: "sorticon sorttitle sorttitle" "sorticon sortacct sortaction";
2018-07-28 07:25:12 +10: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 {
font-size: 43px;
2018-07-28 07:25:12 +10:00
}
.sorttitle {
2019-05-19 17:39:30 +10:00
margin-left: 5px;
grid-area: sorttitle;
}
.sortacct {
2019-05-19 17:39:30 +10:00
margin-left: 5px;
grid-area: sortacct;
}
.sortaction {
2019-05-19 17:39:30 +10:00
margin-left: 5px;
grid-area: sortaction;
}