-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHide clutter.css
More file actions
54 lines (43 loc) · 1.05 KB
/
Hide clutter.css
File metadata and controls
54 lines (43 loc) · 1.05 KB
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
/* Turn off all transitions */
* {
transition: none !important;
}
/* Hide maximize, minimize, and close buttons in the title bar */
.titlebar-button-container.mod-right, .workspace-tab-header-container::after {
display: none !important;
}
.is-hidden-frameless:not(.is-fullscreen) .workspace-tabs.mod-top-right-space .workspace-tab-header-container {
padding-right: calc(var(--size-4-2) + var(--frame-left-space));
}
/* Hide tab bar when stacked tab mode is enabled */
.mod-stacked .workspace-tab-header-container {
display: none !important;
}
.status-bar {
display: none;
}
/* Disable cursor blink */
.cm-cursor,
.cm-cursorLayer {
animation: none !important;
}
/* https://github.com/kepano/obsidian-hider */
/* Scrollbars only show on hover (might be tricky to find it) */
::-webkit-scrollbar {
visibility: hidden;
&:hover {
visibility: initial;
}
}
::-webkit-scrollbar-thumb {
visibility: hidden;
&:hover {
visibility: initial;
}
}
::-webkit-scrollbar-thumb:hover {
visibility: initial;
}
.markdown-embed-title {
display: none;
}