Can be used to hide the navigation bar in Unreal Engine Docs. This can free up screen real estate to read documentation, specially in portrait setups.
Unreal Engine Docs - Hide Navigation by sbl-sakib
Details
Authorsbl-sakib
LicenseNo License
Categoryhttps://docs.unrealengine.com/
Created
Updated
Size894 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Unreal Engine Docs - Hide Navbar
@version 20230505.22.29
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://docs.unrealengine.com/") {
/* ==UserStyle==
@name Unreal Engine Docs Hide Navigation
@author Sakib Saikia
@description `Hide Navigation bar for the docs.unrealengine.com`
@license NO-REDISTRIBUTION
==/UserStyle== */
#navWrapper {
visibility : hidden !important;
width:0;
}
#splitter {
visibility : hidden !important;
}
#contentContainer {
margin-left: 0 !important;
width: 100% !important;
}
}
@-moz-document url-prefix("https://docs.unrealengine.com/") {
#navWrapper {
visibility : hidden !important;
width:0;
}
#splitter {
visibility : hidden !important;
}
#contentContainer {
margin-left: 0 !important;
width: 100% !important;
}
}