mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-04-08 09:36:45 +02:00
- Redesign the core UI API and tags to support Mobile devices - Add new StackMenu tag - Support touch events handling on touch devices - Redesign File and Setting to work on mobile - Improve Anouncement API - Rework on default themes
54 lines
951 B
CSS
54 lines
951 B
CSS
afx-tree-view{
|
|
overflow: auto;
|
|
display: block;
|
|
}
|
|
afx-tree-view afx-tree-view{
|
|
padding:0;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|
|
afx-tree-view ul{
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
afx-tree-view li{
|
|
list-style: none;
|
|
margin:0;
|
|
padding: 0;
|
|
min-height: 35px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
afx-tree-view li.itemname
|
|
{
|
|
padding-left: 10px;
|
|
}
|
|
afx-tree-view div{
|
|
-webkit-user-select:none;
|
|
cursor:default;
|
|
}
|
|
afx-tree-view i.icon-style {
|
|
float:left;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
afx-tree-view .afx-tree-view-folder-open:before{
|
|
content: "\f147";
|
|
font-family: "FontAwesome";
|
|
font-size: 22px;
|
|
}
|
|
afx-tree-view .afx-tree-view-folder-close:before{
|
|
content: "\f196";
|
|
font-family: "FontAwesome";
|
|
font-size: 22px;
|
|
}
|
|
afx-tree-view div{
|
|
padding-left:3px;
|
|
padding-right: 3px;
|
|
}
|
|
|
|
afx-tree-view i.icon-style {
|
|
width: 24px;
|
|
height: 24px;
|
|
} |