diff --git a/resources/web/homepage/css/home.css b/resources/web/homepage/css/home.css index c03c76f4e..2da4e566e 100644 --- a/resources/web/homepage/css/home.css +++ b/resources/web/homepage/css/home.css @@ -3,7 +3,6 @@ padding:0px; border: 0px; margin: 0px; - font-size: 16px; font-family: "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans; } @@ -13,6 +12,7 @@ html, body { margin: 0px; padding: 0px; line-height: 20px; + font-size: 16px; } .RedFont @@ -72,6 +72,12 @@ body cursor:pointer; } +#LoginBtn:hover +{ + font-size:17px; +} + + #NoPluginTip { position: absolute; @@ -80,7 +86,7 @@ body bottom: 0px; right: 0px; z-index: 1; - display: flex; + display: none; flex-direction: column; justify-content: flex-end; padding: 5px; diff --git a/src/slic3r/GUI/WebGuideDialog.cpp b/src/slic3r/GUI/WebGuideDialog.cpp index 1095a7b50..0f9f55a8f 100644 --- a/src/slic3r/GUI/WebGuideDialog.cpp +++ b/src/slic3r/GUI/WebGuideDialog.cpp @@ -145,10 +145,10 @@ wxString GuideFrame::SetStartPage(GuidePage startpage, bool load) else TargetUrl = from_u8((boost::filesystem::path(resources_dir()) / "web/guide/21/index.html").make_preferred().string()); } else if (startpage == BBL_FILAMENT_ONLY) { - SetTitle(_L("Filaments Selection")); + SetTitle(_L("")); TargetUrl = from_u8((boost::filesystem::path(resources_dir()) / "web/guide/23/index.html").make_preferred().string()); } else if (startpage == BBL_MODELS_ONLY) { - SetTitle(_L("Printer Selection")); + SetTitle(_L("")); TargetUrl = from_u8((boost::filesystem::path(resources_dir()) / "web/guide/24/index.html").make_preferred().string()); } else {