thedesk/app/css/sort.css

32 lines
557 B
CSS
Raw Normal View History

2018-02-05 01:56:31 +11:00
.drag-content{
text-overflow: ellipsis;
cursor:move;
user-select: none;
2018-07-28 07:25:12 +10:00
background-color:var(--modalfooter);
2018-02-05 01:56:31 +11:00
margin:5px;
border-radius:5px;
2018-07-28 07:25:12 +10:00
color:var(--color);
2018-02-05 01:56:31 +11:00
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 {
grid-area:sorticon;
2018-07-28 07:25:12 +10:00
}
.sorticon i{
font-size:43px;
2018-07-28 07:25:12 +10:00
}
.sorttitle {
margin-left:5px;
grid-area:sorttitle;
}
.sortacct {
margin-left:5px;
grid-area:sortacct;
}
.sortaction {
margin-left:5px;
grid-area:sortaction;
2018-02-05 01:56:31 +11:00
}