-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhui.css
More file actions
39 lines (30 loc) · 1001 Bytes
/
hui.css
File metadata and controls
39 lines (30 loc) · 1001 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
R"htuijsstr(
/************************* HUI fixes (common for all styles, everything works without them - its just ugly) *************************/
body::-webkit-scrollbar { /* hide scrollbar: webkit + chromium */
display: none;
}
body {
-ms-overflow-style: none; /* hide scrollbar: ms internet explorer*/
scrollbar-width: none; /* hide scrollbar: gecko */
}
body { /* maybe better way to get rid of the scrollbars */
position: fixed;
width: 100vw;
height: 100vh;
margin: 0;
}
:root {
touch-action: none; /* disable touch zoom/scroll (should do the job, unfortuanetly doesnt work with gtk3-webkit2 but under chromium it works fine) */
}
*:not(input) { /* get rid of the text cursor (text selection disabled in body) */
cursor: default;
}
a { /* keep cursor for links */
cursor: pointer;
}
body { /* disable text selection */
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
)htuijsstr"