From 457ed05174727d1b63a0103b6b495fd661b139f8 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 18 Oct 2019 15:37:38 -0700 Subject: [PATCH] Fix missed references to IMFS in CSS instead of VFS --- assets/index.css | 10 +++++----- src/web/ui.rs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/index.css b/assets/index.css index 1eb5893f..1dc6ea39 100644 --- a/assets/index.css +++ b/assets/index.css @@ -154,15 +154,15 @@ img { display: none; } -.imfs-entry { +.vfs-entry { } -.imfs-entry-name { +.vfs-entry-name { position: relative; font-family: monospace; } -.imfs-entry-children .imfs-entry-name::before { +.vfs-entry-children .vfs-entry-name::before { content: ""; width: 0.6em; height: 1px; @@ -172,11 +172,11 @@ img { left: -0.8em; } -.imfs-entry-note { +.vfs-entry-note { font-style: italic; } -.imfs-entry-children { +.vfs-entry-children { padding-left: 0.8em; margin-left: 0.2em; border-left: 1px solid #999; diff --git a/src/web/ui.rs b/src/web/ui.rs index 7a6b0b5b..e7e69380 100644 --- a/src/web/ui.rs +++ b/src/web/ui.rs @@ -71,7 +71,7 @@ impl UiService { let page = self.normal_page(html! {
{ 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") }
});