mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-26 23:56:32 +00:00
Fix missed references to IMFS in CSS instead of VFS
This commit is contained in:
@@ -154,15 +154,15 @@ img {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.imfs-entry {
|
.vfs-entry {
|
||||||
}
|
}
|
||||||
|
|
||||||
.imfs-entry-name {
|
.vfs-entry-name {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.imfs-entry-children .imfs-entry-name::before {
|
.vfs-entry-children .vfs-entry-name::before {
|
||||||
content: "";
|
content: "";
|
||||||
width: 0.6em;
|
width: 0.6em;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
@@ -172,11 +172,11 @@ img {
|
|||||||
left: -0.8em;
|
left: -0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.imfs-entry-note {
|
.vfs-entry-note {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.imfs-entry-children {
|
.vfs-entry-children {
|
||||||
padding-left: 0.8em;
|
padding-left: 0.8em;
|
||||||
margin-left: 0.2em;
|
margin-left: 0.2em;
|
||||||
border-left: 1px solid #999;
|
border-left: 1px solid #999;
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ impl<F: VfsFetcher> UiService<F> {
|
|||||||
let page = self.normal_page(html! {
|
let page = self.normal_page(html! {
|
||||||
<div class="button-list">
|
<div class="button-list">
|
||||||
{ Self::button("Rojo Documentation", "https://rojo.space/docs") }
|
{ Self::button("Rojo Documentation", "https://rojo.space/docs") }
|
||||||
{ Self::button("View in-memory filesystem state", "/show-vfs") }
|
{ Self::button("View virtual filesystem state", "/show-vfs") }
|
||||||
{ Self::button("View instance tree state", "/show-instances") }
|
{ Self::button("View instance tree state", "/show-instances") }
|
||||||
</div>
|
</div>
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user