Changes the top navbar position from "fixed" to "absolute", reducing the wasted screen space while reading the documentation.
PHP.net - unfix top bar by denilsonsa
Imported from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/99006.user.css
Details
Authordenilsonsa
LicensePublic Domain
Categoryphp
Created
Updated
Size537 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 PHP.net - unfix top bar
@namespace USO Archive
@author denilsonsa
@description `Changes the top navbar position from "fixed" to "absolute", reducing the wasted screen space while reading the documentation.`
@version 20140307.22.19
@license Public Domain
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("https?://(|[a-z0-9.-]+\\.)php\\.net/.*") {
/* I don't want the top bar being shown all the time. */
.navbar-fixed-top {
position: absolute;
}
}