aboutsummaryrefslogtreecommitdiff
path: root/style.css
blob: ccef00bef7fde3eca7aef399b1a5e345dd4ec95c (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* remove resize bar while in betterlibrary */
.Root__top-container:has(.betterLibBox) .LayoutResizer__resize-bar {
    visibility: hidden;
}

/* creates the centered placeholder text on the sidebar where the library was */
.betterLibText {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* makes the text visible only when it is in the sidebar */
.main-yourLibraryX-library .betterLibText {
    display: var(--betterlib-show-placeholder-text,flex);
}

/* makes the "your library" not clickable, expands and styles the text*/
button.Button-sc-1dqy6lx-0.main-yourLibraryX-collapseButtonWrapper.main-yourLibraryX-button.NxEINIJHGytq4gF1r2N1 {
    pointer-events: none;
    font-size: x-large;
    color: white;
}

/* hides the library header when in the sidebar*/
.main-yourLibraryX-library .main-yourLibraryX-header {
    display: none;
}

/* shows the library header if the user is in a folder*/
.main-yourLibraryX-library .main-yourLibraryX-header:has(.WYU7SXdABSulyirnmIYb) {
    display: flex;
}

/* hides collapse button (library icon)*/
span.IconWrapper__Wrapper-sc-16usrgb-0.Wrapper-medium-leading {
    display: none;
}

/* hides collapse button (library icon) in folder*/
button.Button-sc-1dqy6lx-0.main-yourLibraryX-collapseButtonWrapper.main-yourLibraryX-button.NxEINIJHGytq4gF1r2N1.Button-medium-medium-buttonTertiary-iconOnly-condensed-useBrowserDefaultFocusStyle,
button.Button-sc-1dqy6lx-0.main-yourLibraryX-collapseButtonWrapper.main-yourLibraryX-button.NxEINIJHGytq4gF1r2N1.Button-medium-medium-buttonTertiary-iconOnly-condensed-isUsingKeyboard-useBrowserDefaultFocusStyle {
    display: none;
}

/* hides expand/reduce button (<- ->) and also add(+) and more(...)*/
button.Button-sc-1dqy6lx-0.main-yourLibraryX-button.main-yourLibraryX-iconOnly.NxEINIJHGytq4gF1r2N1 {
    display: none;
}

/* unhides add(+) and more(...)*/
span button.Button-sc-1dqy6lx-0.main-yourLibraryX-button.main-yourLibraryX-iconOnly.NxEINIJHGytq4gF1r2N1 {
    display: inherit;
}

/* add more top padding to the sidebar */
.main-yourLibraryX-library {
    padding-top: 5px;
}

/* fixes icons on collapsed betterlibrary */
span.Type__TypeElement-sc-goli3j-0.TypeElement-balladBold-type,
.main-yourLibraryX-navItem span.Text__TextElement-sc-if376j-0 {
    display: var(--betterlib-fix-collaped-view,inherit);
}

/* for future setting */
.main-yourLibraryX-entryPoints.main-yourLibraryX-library {
    display: var(--betterlib-hide-sidebar-library,inherit);
}