mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-04-07 00:56:44 +02:00
104 lines
2.8 KiB
CSS
104 lines
2.8 KiB
CSS
afx-file-view afx-label.status{
|
|
background-color: var(--background-tertiary);
|
|
border-top: 1px solid var(--border-primary);
|
|
|
|
}
|
|
afx-file-view afx-list-view > div.list-container > ul li{
|
|
background-color: transparent;
|
|
}
|
|
afx-file-view afx-list-view > div.list-container > ul .afx-list-item:nth-child(even) li {
|
|
background-color: transparent;
|
|
}
|
|
afx-file-view afx-list-view i.dir:before{
|
|
content: "\f07b";
|
|
font-family: "FontAwesome";
|
|
font-size: 35px;
|
|
color: var(--icon-tertiary);
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
afx-file-view afx-list-view i{
|
|
width: 100%;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
|
|
afx-file-view afx-list-view i.file:before{
|
|
content: "\f016";
|
|
font-family: "FontAwesome";
|
|
font-size: 30px;
|
|
color: var(--text-primary);
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
afx-file-view afx-list-view > div.list-container > ul > .afx-list-item > li.selected,
|
|
afx-file-view afx-list-view > div.list-container > ul > .afx-list-item > li.selected i.dir::before
|
|
{
|
|
background-color: var(--item-bg-active);
|
|
color:var(--text-tertiary);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
afx-file-view afx-grid-view{
|
|
padding:0;
|
|
}
|
|
afx-file-view afx-grid-view i.file:before{
|
|
content: "\f016";
|
|
font-family: "FontAwesome";
|
|
color: var(--text-primary);
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
afx-file-view afx-grid-view i.dir:before{
|
|
content: "\f07b";
|
|
font-family: "FontAwesome";
|
|
color: var(--icon-tertiary);
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
afx-file-view afx-grid-view i{
|
|
margin-right: 5px;
|
|
}
|
|
afx-file-view afx-grid-view afx-grid-row.afx-grid-row-selected i:before{
|
|
color:var(--text-tertiary);
|
|
}
|
|
|
|
afx-file-view afx-tree-view .afx-tree-view-folder-close:before{
|
|
content: "\f07b";
|
|
font-family: "FontAwesome";
|
|
color:var(--icon-tertiary);
|
|
}
|
|
afx-file-view afx-tree-view .afx-tree-view-folder-open:before{
|
|
content: "\f07c";
|
|
font-family: "FontAwesome";
|
|
color:var(--icon-tertiary);
|
|
}
|
|
|
|
afx-file-view afx-tree-view .afx-tree-view-item:before{
|
|
content: "\f016";
|
|
font-family: "FontAwesome";
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
afx-file-view afx-tree-view div.afx_tree_item_selected, afx-file-view afx-tree-view div.afx_tree_item_selected:hover{
|
|
background-color: transparent;
|
|
}
|
|
|
|
afx-file-view afx-tree-view div.afx_tree_item_selected ul{
|
|
background-color: var(--item-bg-active);
|
|
color:var(--text-tertiary);
|
|
border-radius: 0;
|
|
|
|
}
|
|
afx-file-view afx-tree-view div.afx_tree_item_selected i:before,
|
|
afx-file-view afx-tree-view div.afx_tree_item_selected .afx-tree-view-folder-close:before,
|
|
afx-file-view afx-tree-view div.afx_tree_item_selected .afx-tree-view-folder-open:before
|
|
{
|
|
color:var(--text-tertiary);
|
|
}
|
|
|
|
afx-file-view afx-tree-view .afx_folder_item{
|
|
font-weight: normal;
|
|
} |