Greasy Fork is available in English.

IMDbetter

Minor tweaks for IMDb, like sticky navbar, dark search form, thin scrollbar, dark scrollbar for dark elements.

Fra 23.06.2020. Se den seneste versjonen.

/* ==UserStyle==
@name           IMDbetter
@name:pl        IMDbetter
@namespace      https://greasyfork.org/en/users/636724-cml99
@version        1.0.0
@description    Minor tweaks for IMDb, like sticky navbar, dark search form, thin scrollbar, dark scrollbar for dark elements.
@description:pl Drobne zmiany dla IMDb, takie jak przypięty pasek nawigacji, ciemna szukajka, wąskie i ciemne suwaki dla ciemnych elementów.
@author         CML99
@license        CC BY-NC-SA
@preprocessor   stylus
@var            checkbox cmlFixNavbar "Sticky Navigation Bar" 1
@var            checkbox cmlDarkSearch "Dark Search Form" 1
@var            checkbox cmlThinBar "Thin Scrollbar" 1
@var            checkbox cmlDarkBar "Dark Scrollbar for Dark Sections" 1
==/UserStyle== */

@-moz-document domain("imdb.com") {
/* ----------------- */
/* --- IMDbetter --- */
/* ----- CML99 ----- */
/* ----------------- */


/* --- Sticky Navigation --- */
if cmlFixNavbar { 
#imdbHeader { position: fixed !important; }
#wrapper, .ipc-page-wrapper { padding-top: 56px !important; }
} 


/* --- Dark Search Form --- */
if cmlDarkSearch { 
#nav-search-form { background-color:#333; }
#suggestion-search-button { background-color: #333; }
#suggestion-search-button:hover { background-color: #666; }
#suggestion-search-button .ipc-icon.ipc-icon--magnify { color: #ccc; }
#suggestion-search-button:hover .ipc-icon.ipc-icon--magnify { color: #f5c518; }
.search-category-selector .ipc-text-button.ipc-button--core-base.ipc-button--on-textPrimary:not(:disabled), 
.search-category-selector .ipc-outline-button.ipc-button--core-base.ipc-button--on-textPrimary:not(:disabled),
#suggestion-search { color: #ddd; caret-color: #ccc; }
}    


/* --- Thin White Scrollbar --- */
if cmlThinBar { 
* { scrollbar-width: thin; } 
:root { scrollbar-width: thin; scrollbar-color: #bbb #eee; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar:horizontal { height: 8px; }
::-webkit-scrollbar-track { background-color: #eee; }
::-webkit-scrollbar-thumb { background-color: #bbb; }
::-webkit-scrollbar-thumb:hover { background-color: #999; }
}

    
/* --- Dark Scrollbar for Dark Lists --- */
if cmlDarkBar { 
.wlb_dropdown_list { scrollbar-color: #444 #222; }
.wlb_dropdown_list::-webkit-scrollbar-track { background: #222; }
.wlb_dropdown_list::-webkit-scrollbar-thumb { background: #444; }
.wlb_dropdown_list::-webkit-scrollbar-thumb:hover { background: #555; }
.wlb_dropdown_list::-webkit-scrollbar-thumb:active { background: #666; }
}
if cmlDarkBar and cmlThinBar { 
.wlb_dropdown_list { scrollbar-width: thin; scrollbar-color: #444 #222; }
.wlb_dropdown_list::-webkit-scrollbar { width: 8px; }
.wlb_dropdown_list::-webkit-scrollbar-track { background: #222; }
.wlb_dropdown_list::-webkit-scrollbar-thumb { background: #444; }
.wlb_dropdown_list::-webkit-scrollbar-thumb:hover { background: #555; }
.wlb_dropdown_list::-webkit-scrollbar-thumb:active { background: #666; }
}

}
@-moz-document url("https://www.imdb.com/"), url("https://www.imdb.com/?ref_=nv_home") {
/* Dark Scrollbar for Home Page */
if cmlDarkBar { 
:root { scrollbar-color: #444 #222; }    
::-webkit-scrollbar-track { background: #222; }
::-webkit-scrollbar-thumb { background: #444; }
::-webkit-scrollbar-thumb:hover { background: #555; }
::-webkit-scrollbar-thumb:active { background: #666; }
}
if cmlDarkBar and cmlThinBar  { 
* { scrollbar-width: thin; } 
:root { scrollbar-width: thin; scrollbar-color: #444 #222; }   
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #222; }
::-webkit-scrollbar-thumb { background: #444; }
::-webkit-scrollbar-thumb:hover { background: #555; }
::-webkit-scrollbar-thumb:active { background: #666; }
}

}