-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsidebar.css
More file actions
49 lines (39 loc) · 979 Bytes
/
Copy pathsidebar.css
File metadata and controls
49 lines (39 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* This is for changing the order or the sidebar to fit my needs. DO NOT USE */
/* Change the Maindrawer to flex so that we can order items */
.mainDrawer-scrollContainer.scrollContainer.focuscontainer-y.scrollY {
display:flex;
flex-direction: column;
}
/* Home Button at the top */
a.navMenuOption[href="#/home"] {
order: 0;
}
/* JellyfinEnhanced Section after home button */
.jellyfinEnhancedSection {
order: 1;
}
/* Custom Links after JellyfinEnhanced Section */
.customMenuOptions {
order: 2;
}
/* The Requests and Calendar Section after Custom Links */
.pluginMenuOptions {
order: 2;
}
/* Rest of the sections follow */
.libraryMenuOptions {
order: 3;
}
.adminMenuOptions {
order: 4;
}
.userMenuOptions {
order: 5;
}
/* Hide the Plugin Pages Header and Home Screen Sections Link */
.pluginMenuOptions h3.sidebarHeader {
display: none;
}
a[data-itemid="Jellyfin.Plugin.HomeScreenSections"] {
display: none !important;
}